2017-01-20 09:09:10 +01:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is part of Tusky.
|
|
|
|
*
|
|
|
|
* Tusky 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.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* 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-03 00:30:27 +01:00
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
2017-01-04 01:23:57 +01:00
|
|
|
import android.support.annotation.Nullable;
|
2017-01-03 00:30:27 +01:00
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
class TimelineAdapter extends RecyclerView.Adapter implements AdapterItemRemover {
|
2017-01-18 19:35:07 +01:00
|
|
|
private static final int VIEW_TYPE_STATUS = 0;
|
|
|
|
private static final int VIEW_TYPE_FOOTER = 1;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-01-18 19:35:07 +01:00
|
|
|
private List<Status> statuses;
|
|
|
|
private StatusActionListener statusListener;
|
|
|
|
private FooterActionListener footerListener;
|
2017-02-21 23:55:37 +01:00
|
|
|
private FooterViewHolder.State footerState;
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
TimelineAdapter(StatusActionListener statusListener,
|
2017-01-18 19:35:07 +01:00
|
|
|
FooterActionListener footerListener) {
|
2017-01-03 00:30:27 +01:00
|
|
|
super();
|
2017-01-18 19:35:07 +01:00
|
|
|
statuses = new ArrayList<>();
|
|
|
|
this.statusListener = statusListener;
|
|
|
|
this.footerListener = footerListener;
|
2017-02-21 23:55:37 +01:00
|
|
|
footerState = FooterViewHolder.State.LOADING;
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(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);
|
|
|
|
return new StatusViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOOTER: {
|
|
|
|
View view = LayoutInflater.from(viewGroup.getContext())
|
|
|
|
.inflate(R.layout.item_footer, viewGroup, false);
|
|
|
|
return new FooterViewHolder(view);
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(RecyclerView.ViewHolder viewHolder, int position) {
|
2017-01-18 19:35:07 +01:00
|
|
|
if (position < statuses.size()) {
|
|
|
|
StatusViewHolder holder = (StatusViewHolder) viewHolder;
|
|
|
|
Status status = statuses.get(position);
|
2017-01-23 06:19:30 +01:00
|
|
|
holder.setupWithStatus(status, statusListener, position);
|
2017-01-03 00:30:27 +01:00
|
|
|
} else {
|
2017-01-18 19:35:07 +01:00
|
|
|
FooterViewHolder holder = (FooterViewHolder) viewHolder;
|
2017-02-21 23:55:37 +01:00
|
|
|
holder.setState(footerState);
|
2017-01-07 23:24:02 +01:00
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemCount() {
|
2017-01-18 19:35:07 +01:00
|
|
|
return statuses.size() + 1;
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 19:35:07 +01:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
if (position == statuses.size()) {
|
|
|
|
return VIEW_TYPE_FOOTER;
|
|
|
|
} else {
|
|
|
|
return VIEW_TYPE_STATUS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
int update(List<Status> newStatuses) {
|
2017-01-03 00:30:27 +01:00
|
|
|
int scrollToPosition;
|
|
|
|
if (statuses == null || statuses.isEmpty()) {
|
2017-01-18 19:35:07 +01:00
|
|
|
statuses = newStatuses;
|
2017-01-03 00:30:27 +01:00
|
|
|
scrollToPosition = 0;
|
|
|
|
} else {
|
2017-01-18 19:35:07 +01:00
|
|
|
int index = newStatuses.indexOf(statuses.get(0));
|
2017-01-03 00:30:27 +01:00
|
|
|
if (index == -1) {
|
2017-01-18 19:35:07 +01:00
|
|
|
statuses.addAll(0, newStatuses);
|
2017-01-03 00:30:27 +01:00
|
|
|
scrollToPosition = 0;
|
|
|
|
} else {
|
2017-01-18 19:35:07 +01:00
|
|
|
statuses.addAll(0, newStatuses.subList(0, index));
|
2017-01-03 00:30:27 +01:00
|
|
|
scrollToPosition = index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
notifyDataSetChanged();
|
|
|
|
return scrollToPosition;
|
|
|
|
}
|
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
void addItems(List<Status> newStatuses) {
|
2017-01-03 00:30:27 +01:00
|
|
|
int end = statuses.size();
|
2017-01-18 19:35:07 +01:00
|
|
|
statuses.addAll(newStatuses);
|
|
|
|
notifyItemRangeInserted(end, newStatuses.size());
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-07 23:24:02 +01:00
|
|
|
public void removeItem(int position) {
|
|
|
|
statuses.remove(position);
|
|
|
|
notifyItemRemoved(position);
|
|
|
|
}
|
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
@Nullable Status getItem(int position) {
|
2017-01-18 19:35:07 +01:00
|
|
|
if (position >= 0 && position < statuses.size()) {
|
|
|
|
return statuses.get(position);
|
|
|
|
}
|
|
|
|
return null;
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2017-02-21 23:55:37 +01:00
|
|
|
|
2017-02-22 20:13:51 +01:00
|
|
|
void setFooterState(FooterViewHolder.State state) {
|
2017-02-21 23:55:37 +01:00
|
|
|
footerState = state;
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|