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
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
import android.support.annotation.NonNull;
|
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.StatusActionListener;
|
2017-07-13 05:54:52 +10:00
|
|
|
import com.keylesspalace.tusky.viewdata.StatusViewData;
|
2017-03-09 10:27:37 +11:00
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
public final class TimelineAdapter extends RecyclerView.Adapter {
|
|
|
|
|
|
|
|
public interface AdapterDataSource<T> {
|
|
|
|
int getItemCount();
|
|
|
|
|
|
|
|
T getItemAt(int pos);
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2017-01-19 05:35:07 +11:00
|
|
|
private static final int VIEW_TYPE_STATUS = 0;
|
2017-11-04 08:17:31 +11:00
|
|
|
private static final int VIEW_TYPE_PLACEHOLDER = 2;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
private final AdapterDataSource<StatusViewData> dataSource;
|
|
|
|
private final StatusActionListener statusListener;
|
2017-06-26 19:15:47 +10:00
|
|
|
private boolean mediaPreviewEnabled;
|
2017-01-03 10:30:27 +11:00
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
public TimelineAdapter(AdapterDataSource<StatusViewData> dataSource,
|
|
|
|
StatusActionListener statusListener) {
|
2017-01-03 10:30:27 +11:00
|
|
|
super();
|
2018-05-27 18:22:12 +10:00
|
|
|
this.dataSource = dataSource;
|
2017-01-19 05:35:07 +11:00
|
|
|
this.statusListener = statusListener;
|
2017-06-26 19:15:47 +10:00
|
|
|
mediaPreviewEnabled = true;
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
@NonNull
|
2017-01-03 10:30:27 +11:00
|
|
|
@Override
|
2018-05-27 18:22:12 +10:00
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull 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);
|
|
|
|
}
|
2017-11-04 08:17:31 +11: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-19 05:35:07 +11:00
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-05-27 18:22:12 +10:00
|
|
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
|
|
|
|
StatusViewData status = dataSource.getItemAt(position);
|
|
|
|
if (status instanceof StatusViewData.Placeholder) {
|
|
|
|
PlaceholderViewHolder holder = (PlaceholderViewHolder) viewHolder;
|
|
|
|
holder.setup(!((StatusViewData.Placeholder) status).isLoading(),
|
|
|
|
statusListener, ((StatusViewData.Placeholder) status).isLoading());
|
2017-07-01 08:30:25 +10:00
|
|
|
} else {
|
2018-05-27 18:22:12 +10:00
|
|
|
StatusViewHolder holder = (StatusViewHolder) viewHolder;
|
|
|
|
holder.setupWithStatus((StatusViewData.Concrete) status,
|
|
|
|
statusListener, mediaPreviewEnabled);
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemCount() {
|
2018-05-27 18:22:12 +10:00
|
|
|
return dataSource.getItemCount();
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-01-19 05:35:07 +11:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
2018-05-27 18:22:12 +10:00
|
|
|
if (dataSource.getItemAt(position) instanceof StatusViewData.Placeholder) {
|
|
|
|
return VIEW_TYPE_PLACEHOLDER;
|
2017-01-19 05:35:07 +11:00
|
|
|
} else {
|
2018-05-27 18:22:12 +10:00
|
|
|
return VIEW_TYPE_STATUS;
|
2017-07-02 13:23:42 +10:00
|
|
|
}
|
2017-06-26 19:15:47 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setMediaPreviewEnabled(boolean enabled) {
|
|
|
|
mediaPreviewEnabled = enabled;
|
|
|
|
}
|
2018-05-27 18:22:12 +10:00
|
|
|
|
2018-06-26 01:20:41 +10:00
|
|
|
public boolean getMediaPreviewEnabled() {
|
|
|
|
return mediaPreviewEnabled;
|
|
|
|
}
|
|
|
|
|
2018-05-27 18:22:12 +10:00
|
|
|
@Override
|
|
|
|
public long getItemId(int position) {
|
|
|
|
return dataSource.getItemAt(position).getViewDataId();
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|