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
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
import androidx.annotation.NonNull;
|
2019-03-16 14:38:29 +01:00
|
|
|
import androidx.annotation.Nullable;
|
2018-12-17 15:25:35 +01:00
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
2017-01-03 00:30:27 +01:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
2019-03-16 14:38:29 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2017-05-05 00:55:34 +02:00
|
|
|
import com.keylesspalace.tusky.R;
|
|
|
|
import com.keylesspalace.tusky.interfaces.StatusActionListener;
|
2017-07-12 21:54:52 +02:00
|
|
|
import com.keylesspalace.tusky.viewdata.StatusViewData;
|
2017-03-09 00:27:37 +01:00
|
|
|
|
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;
|
|
|
|
private final StatusActionListener statusListener;
|
2017-06-26 11:15:47 +02:00
|
|
|
private boolean mediaPreviewEnabled;
|
2018-08-17 04:53:38 +02:00
|
|
|
private boolean useAbsoluteTime;
|
2019-05-26 08:46:08 +02:00
|
|
|
private boolean showBotOverlay;
|
|
|
|
private boolean animateAvatar;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2018-05-27 10:22:12 +02:00
|
|
|
public TimelineAdapter(AdapterDataSource<StatusViewData> dataSource,
|
|
|
|
StatusActionListener statusListener) {
|
|
|
|
this.dataSource = dataSource;
|
2017-01-18 19:35:07 +01:00
|
|
|
this.statusListener = statusListener;
|
2017-06-26 11:15:47 +02:00
|
|
|
mediaPreviewEnabled = true;
|
2018-08-17 04:53:38 +02:00
|
|
|
useAbsoluteTime = false;
|
2019-05-26 08:46:08 +02:00
|
|
|
showBotOverlay = true;
|
|
|
|
animateAvatar = false;
|
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);
|
2018-08-17 04:53:38 +02:00
|
|
|
return new StatusViewHolder(view, useAbsoluteTime);
|
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-03-16 14:38:29 +01:00
|
|
|
bindViewHolder(viewHolder,position,null);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position, @NonNull List payloads) {
|
|
|
|
bindViewHolder(viewHolder,position,payloads);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
mediaPreviewEnabled,
|
|
|
|
showBotOverlay,
|
|
|
|
animateAvatar,
|
|
|
|
payloads != null && !payloads.isEmpty() ? payloads.get(0) : null);
|
2017-01-07 23:24:02 +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
|
|
|
}
|
|
|
|
|
|
|
|
public void setMediaPreviewEnabled(boolean enabled) {
|
|
|
|
mediaPreviewEnabled = enabled;
|
|
|
|
}
|
2018-05-27 10:22:12 +02:00
|
|
|
|
2018-08-17 04:53:38 +02:00
|
|
|
public void setUseAbsoluteTime(boolean useAbsoluteTime){
|
2019-05-26 08:46:08 +02:00
|
|
|
this.useAbsoluteTime = useAbsoluteTime;
|
2018-08-17 04:53:38 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 17:20:41 +02:00
|
|
|
public boolean getMediaPreviewEnabled() {
|
|
|
|
return mediaPreviewEnabled;
|
|
|
|
}
|
|
|
|
|
2019-05-26 08:46:08 +02:00
|
|
|
public void setShowBotOverlay(boolean showBotOverlay) {
|
|
|
|
this.showBotOverlay = showBotOverlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAnimateAvatar(boolean animateAvatar) {
|
|
|
|
this.animateAvatar = animateAvatar;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|