2017-01-20 09:09:10 +01:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* This file is a part of Tusky.
|
2017-01-20 09:09:10 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-01-20 09:09:10 +01:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 02:12:31 +02:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-01-20 09:09:10 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
2017-01-20 09:09:10 +01:00
|
|
|
|
2017-05-05 00:55:34 +02:00
|
|
|
package com.keylesspalace.tusky.adapter;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
2019-12-30 21:37:20 +01:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
2019-03-16 14:38:29 +01:00
|
|
|
|
2017-05-05 00:55:34 +02:00
|
|
|
import com.keylesspalace.tusky.R;
|
|
|
|
import com.keylesspalace.tusky.interfaces.StatusActionListener;
|
2019-12-30 21:37:20 +01:00
|
|
|
import com.keylesspalace.tusky.util.StatusDisplayOptions;
|
2017-07-12 21:54:52 +02:00
|
|
|
import com.keylesspalace.tusky.viewdata.StatusViewData;
|
2017-03-09 00:27:37 +01:00
|
|
|
|
2019-12-30 21:37:20 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
public final class TimelineAdapter extends RecyclerView.Adapter {
|
|
|
|
|
|
|
|
public interface AdapterDataSource<T> {
|
|
|
|
int getItemCount();
|
|
|
|
|
|
|
|
T getItemAt(int pos);
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-01-18 19:35:07 +01:00
|
|
|
private static final int VIEW_TYPE_STATUS = 0;
|
2017-11-03 22:17:31 +01:00
|
|
|
private static final int VIEW_TYPE_PLACEHOLDER = 2;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
private final AdapterDataSource<StatusViewData> dataSource;
|
2019-12-30 21:37:20 +01:00
|
|
|
private StatusDisplayOptions statusDisplayOptions;
|
2018-05-27 10:22:12 +02:00
|
|
|
private final StatusActionListener statusListener;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
public TimelineAdapter(AdapterDataSource<StatusViewData> dataSource,
|
2019-12-30 21:37:20 +01:00
|
|
|
StatusDisplayOptions statusDisplayOptions,
|
2018-05-27 10:22:12 +02:00
|
|
|
StatusActionListener statusListener) {
|
|
|
|
this.dataSource = dataSource;
|
2019-12-30 21:37:20 +01:00
|
|
|
this.statusDisplayOptions = statusDisplayOptions;
|
2017-01-18 19:35:07 +01:00
|
|
|
this.statusListener = statusListener;
|
2019-12-30 21:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean getMediaPreviewEnabled() {
|
|
|
|
return statusDisplayOptions.mediaPreviewEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMediaPreviewEnabled(boolean mediaPreviewEnabled) {
|
|
|
|
this.statusDisplayOptions = statusDisplayOptions.copy(
|
|
|
|
statusDisplayOptions.animateAvatars(),
|
|
|
|
mediaPreviewEnabled,
|
|
|
|
statusDisplayOptions.useAbsoluteTime(),
|
|
|
|
statusDisplayOptions.showBotOverlay(),
|
2020-03-02 19:34:31 +01:00
|
|
|
statusDisplayOptions.useBlurhash(),
|
2020-03-03 21:27:26 +01:00
|
|
|
statusDisplayOptions.cardViewMode(),
|
2020-05-16 10:47:53 +02:00
|
|
|
statusDisplayOptions.confirmReblogs(),
|
|
|
|
statusDisplayOptions.quoteEnabled()
|
2019-12-30 21:37:20 +01:00
|
|
|
);
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
@NonNull
|
2017-01-03 00:30:27 +01:00
|
|
|
@Override
|
2018-05-27 10:22:12 +02:00
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) {
|
2017-01-18 19:35:07 +01:00
|
|
|
switch (viewType) {
|
|
|
|
default:
|
|
|
|
case VIEW_TYPE_STATUS: {
|
|
|
|
View view = LayoutInflater.from(viewGroup.getContext())
|
|
|
|
.inflate(R.layout.item_status, viewGroup, false);
|
2019-12-30 21:37:20 +01:00
|
|
|
return new StatusViewHolder(view);
|
2017-01-18 19:35:07 +01:00
|
|
|
}
|
2017-11-03 22:17:31 +01:00
|
|
|
case VIEW_TYPE_PLACEHOLDER: {
|
|
|
|
View view = LayoutInflater.from(viewGroup.getContext())
|
|
|
|
.inflate(R.layout.item_status_placeholder, viewGroup, false);
|
|
|
|
return new PlaceholderViewHolder(view);
|
|
|
|
}
|
2017-01-18 19:35:07 +01:00
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-05-27 10:22:12 +02:00
|
|
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
|
2019-12-30 21:37:20 +01:00
|
|
|
bindViewHolder(viewHolder, position, null);
|
2019-03-16 14:38:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position, @NonNull List payloads) {
|
2019-12-30 21:37:20 +01:00
|
|
|
bindViewHolder(viewHolder, position, payloads);
|
2019-03-16 14:38:29 +01:00
|
|
|
}
|
|
|
|
|
2019-12-30 21:37:20 +01:00
|
|
|
private void bindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position, @Nullable List payloads) {
|
2018-05-27 10:22:12 +02:00
|
|
|
StatusViewData status = dataSource.getItemAt(position);
|
|
|
|
if (status instanceof StatusViewData.Placeholder) {
|
|
|
|
PlaceholderViewHolder holder = (PlaceholderViewHolder) viewHolder;
|
2018-08-22 21:18:56 +02:00
|
|
|
holder.setup(statusListener, ((StatusViewData.Placeholder) status).isLoading());
|
2019-03-16 14:38:29 +01:00
|
|
|
} else if (status instanceof StatusViewData.Concrete) {
|
2018-05-27 10:22:12 +02:00
|
|
|
StatusViewHolder holder = (StatusViewHolder) viewHolder;
|
2019-05-26 08:46:08 +02:00
|
|
|
holder.setupWithStatus((StatusViewData.Concrete) status,
|
|
|
|
statusListener,
|
2019-12-30 21:37:20 +01:00
|
|
|
statusDisplayOptions,
|
2019-05-26 08:46:08 +02:00
|
|
|
payloads != null && !payloads.isEmpty() ? payloads.get(0) : null);
|
2017-01-07 23:24:02 +01:00
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2019-12-30 21:37:20 +01:00
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
@Override
|
|
|
|
public int getItemCount() {
|
2018-05-27 10:22:12 +02:00
|
|
|
return dataSource.getItemCount();
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 19:35:07 +01:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
2018-05-27 10:22:12 +02:00
|
|
|
if (dataSource.getItemAt(position) instanceof StatusViewData.Placeholder) {
|
|
|
|
return VIEW_TYPE_PLACEHOLDER;
|
2017-01-18 19:35:07 +01:00
|
|
|
} else {
|
2018-05-27 10:22:12 +02:00
|
|
|
return VIEW_TYPE_STATUS;
|
2017-07-02 05:23:42 +02:00
|
|
|
}
|
2017-06-26 11:15:47 +02:00
|
|
|
}
|
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
@Override
|
|
|
|
public long getItemId(int position) {
|
|
|
|
return dataSource.getItemAt(position).getViewDataId();
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|