2017-01-20 19:09:10 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This file is a part of Tusky.
|
2017-01-20 19:09:10 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10: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 19:09:10 +11:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 10:12:31 +10:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-01-20 19:09:10 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10: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 19:09:10 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
package com.keylesspalace.tusky.adapter;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-04 11:23:57 +11:00
|
|
|
import android.support.annotation.Nullable;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.R;
|
|
|
|
import com.keylesspalace.tusky.interfaces.AdapterItemRemover;
|
|
|
|
import com.keylesspalace.tusky.interfaces.StatusActionListener;
|
2017-03-09 10:27:37 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Status;
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
import java.util.ArrayList;
|
2017-06-30 16:31:58 +10:00
|
|
|
import java.util.HashSet;
|
2017-01-03 10:30:27 +11:00
|
|
|
import java.util.List;
|
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public class TimelineAdapter extends RecyclerView.Adapter implements AdapterItemRemover {
|
2017-01-19 05:35:07 +11:00
|
|
|
private static final int VIEW_TYPE_STATUS = 0;
|
|
|
|
private static final int VIEW_TYPE_FOOTER = 1;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-19 05:35:07 +11:00
|
|
|
private List<Status> statuses;
|
|
|
|
private StatusActionListener statusListener;
|
2017-07-01 08:30:25 +10:00
|
|
|
private FooterViewHolder.State footerState;
|
2017-06-26 19:15:47 +10:00
|
|
|
private boolean mediaPreviewEnabled;
|
2017-06-30 16:31:58 +10:00
|
|
|
private String topId;
|
|
|
|
private String bottomId;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public TimelineAdapter(StatusActionListener statusListener) {
|
2017-01-03 10:30:27 +11:00
|
|
|
super();
|
2017-01-19 05:35:07 +11:00
|
|
|
statuses = new ArrayList<>();
|
|
|
|
this.statusListener = statusListener;
|
2017-07-01 08:30:25 +10:00
|
|
|
footerState = FooterViewHolder.State.END;
|
2017-06-26 19:15:47 +10:00
|
|
|
mediaPreviewEnabled = true;
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup viewGroup, int viewType) {
|
2017-01-19 05:35:07 +11:00
|
|
|
switch (viewType) {
|
|
|
|
default:
|
|
|
|
case VIEW_TYPE_STATUS: {
|
|
|
|
View view = LayoutInflater.from(viewGroup.getContext())
|
|
|
|
.inflate(R.layout.item_status, viewGroup, false);
|
|
|
|
return new StatusViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOOTER: {
|
2017-07-01 08:30:25 +10:00
|
|
|
View view = LayoutInflater.from(viewGroup.getContext())
|
|
|
|
.inflate(R.layout.item_footer, viewGroup, false);
|
2017-01-19 05:35:07 +11:00
|
|
|
return new FooterViewHolder(view);
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(RecyclerView.ViewHolder viewHolder, int position) {
|
2017-01-19 05:35:07 +11:00
|
|
|
if (position < statuses.size()) {
|
|
|
|
StatusViewHolder holder = (StatusViewHolder) viewHolder;
|
|
|
|
Status status = statuses.get(position);
|
2017-06-26 19:15:47 +10:00
|
|
|
holder.setupWithStatus(status, statusListener, mediaPreviewEnabled);
|
2017-07-01 08:30:25 +10:00
|
|
|
} else {
|
|
|
|
FooterViewHolder holder = (FooterViewHolder) viewHolder;
|
|
|
|
holder.setState(footerState);
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemCount() {
|
2017-01-19 05:35:07 +11:00
|
|
|
return statuses.size() + 1;
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-01-19 05:35:07 +11:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
if (position == statuses.size()) {
|
|
|
|
return VIEW_TYPE_FOOTER;
|
|
|
|
} else {
|
|
|
|
return VIEW_TYPE_STATUS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 19:15:47 +10:00
|
|
|
@Override
|
|
|
|
public void removeItem(int position) {
|
|
|
|
statuses.remove(position);
|
|
|
|
notifyItemRemoved(position);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void removeAllByAccountId(String accountId) {
|
|
|
|
for (int i = 0; i < statuses.size();) {
|
|
|
|
Status status = statuses.get(i);
|
|
|
|
if (accountId.equals(status.account.id)) {
|
|
|
|
statuses.remove(i);
|
|
|
|
notifyItemRemoved(i);
|
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-30 16:31:58 +10:00
|
|
|
public void update(@Nullable List<Status> newStatuses, @Nullable String fromId,
|
|
|
|
@Nullable String uptoId) {
|
2017-03-20 18:03:03 +11:00
|
|
|
if (newStatuses == null || newStatuses.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-30 16:31:58 +10:00
|
|
|
if (fromId != null) {
|
|
|
|
bottomId = fromId;
|
|
|
|
}
|
|
|
|
if (uptoId != null) {
|
|
|
|
topId = uptoId;
|
|
|
|
}
|
2017-03-14 11:49:12 +11:00
|
|
|
if (statuses.isEmpty()) {
|
2017-06-30 16:31:58 +10:00
|
|
|
// This construction removes duplicates.
|
|
|
|
statuses = new ArrayList<>(new HashSet<>(newStatuses));
|
2017-01-03 10:30:27 +11:00
|
|
|
} else {
|
2017-03-20 18:03:03 +11:00
|
|
|
int index = statuses.indexOf(newStatuses.get(newStatuses.size() - 1));
|
|
|
|
for (int i = 0; i < index; i++) {
|
|
|
|
statuses.remove(0);
|
|
|
|
}
|
|
|
|
int newIndex = newStatuses.indexOf(statuses.get(0));
|
|
|
|
if (newIndex == -1) {
|
2017-01-19 05:35:07 +11:00
|
|
|
statuses.addAll(0, newStatuses);
|
2017-01-03 10:30:27 +11:00
|
|
|
} else {
|
2017-03-20 18:03:03 +11:00
|
|
|
statuses.addAll(0, newStatuses.subList(0, newIndex));
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
|
2017-06-30 16:31:58 +10:00
|
|
|
public void addItems(List<Status> newStatuses, @Nullable String fromId) {
|
|
|
|
if (fromId != null) {
|
|
|
|
bottomId = fromId;
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
int end = statuses.size();
|
2017-06-30 16:31:58 +10:00
|
|
|
Status last = statuses.get(end - 1);
|
2017-07-01 09:49:10 +10:00
|
|
|
if (last != null && !findStatus(newStatuses, last.id)) {
|
2017-06-30 16:31:58 +10:00
|
|
|
statuses.addAll(newStatuses);
|
|
|
|
notifyItemRangeInserted(end, newStatuses.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean findStatus(List<Status> statuses, String id) {
|
|
|
|
for (Status status : statuses) {
|
|
|
|
if (status.id.equals(id)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-06-07 07:15:29 +10:00
|
|
|
public void clear() {
|
|
|
|
statuses.clear();
|
|
|
|
notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
|
2017-03-20 13:38:39 +11:00
|
|
|
@Nullable
|
2017-05-05 08:55:34 +10:00
|
|
|
public Status getItem(int position) {
|
2017-01-19 05:35:07 +11:00
|
|
|
if (position >= 0 && position < statuses.size()) {
|
|
|
|
return statuses.get(position);
|
|
|
|
}
|
|
|
|
return null;
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
2017-06-26 19:15:47 +10:00
|
|
|
|
2017-07-01 08:30:25 +10:00
|
|
|
public void setFooterState(FooterViewHolder.State newFooterState) {
|
2017-07-02 13:23:42 +10:00
|
|
|
FooterViewHolder.State oldValue = footerState;
|
2017-06-26 19:15:47 +10:00
|
|
|
footerState = newFooterState;
|
2017-07-02 13:23:42 +10:00
|
|
|
if (footerState != oldValue) {
|
|
|
|
notifyItemChanged(statuses.size());
|
|
|
|
}
|
2017-06-26 19:15:47 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setMediaPreviewEnabled(boolean enabled) {
|
|
|
|
mediaPreviewEnabled = enabled;
|
|
|
|
}
|
2017-06-30 16:31:58 +10:00
|
|
|
|
|
|
|
@Nullable
|
|
|
|
public String getBottomId() {
|
|
|
|
return bottomId;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
public String getTopId() {
|
|
|
|
return topId;
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|