2017-02-22 13:12:49 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This file is a part of Tusky.
|
2017-02-22 13:12:49 +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-02-22 13:12:49 +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-02-22 13:12:49 +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-02-22 13:12:49 +11:00
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2017-03-13 00:01:50 +11:00
|
|
|
import android.widget.ImageButton;
|
2017-02-22 13:12:49 +11:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2017-03-09 09:19:03 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Account;
|
2017-03-13 00:01:50 +11:00
|
|
|
import com.pkmmte.view.CircularImageView;
|
2017-03-08 13:38:20 +11:00
|
|
|
import com.squareup.picasso.Picasso;
|
2017-02-22 13:12:49 +11:00
|
|
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Set;
|
|
|
|
|
2017-03-13 00:01:50 +11:00
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
|
2017-02-22 13:12:49 +11:00
|
|
|
class BlocksAdapter extends AccountAdapter {
|
|
|
|
private static final int VIEW_TYPE_BLOCKED_USER = 0;
|
|
|
|
private static final int VIEW_TYPE_FOOTER = 1;
|
|
|
|
|
|
|
|
private Set<Integer> unblockedAccountPositions;
|
|
|
|
|
2017-03-11 07:12:40 +11:00
|
|
|
BlocksAdapter(AccountActionListener accountActionListener) {
|
|
|
|
super(accountActionListener);
|
2017-02-22 13:12:49 +11:00
|
|
|
unblockedAccountPositions = new HashSet<>();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
|
|
|
switch (viewType) {
|
|
|
|
default:
|
|
|
|
case VIEW_TYPE_BLOCKED_USER: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_blocked_user, parent, false);
|
|
|
|
return new BlockedUserViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOOTER: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_footer, parent, false);
|
|
|
|
return new FooterViewHolder(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(RecyclerView.ViewHolder viewHolder, int position) {
|
|
|
|
if (position < accountList.size()) {
|
|
|
|
BlockedUserViewHolder holder = (BlockedUserViewHolder) viewHolder;
|
|
|
|
holder.setupWithAccount(accountList.get(position));
|
|
|
|
boolean blocked = !unblockedAccountPositions.contains(position);
|
|
|
|
holder.setupActionListener(accountActionListener, blocked, position);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
if (position == accountList.size()) {
|
|
|
|
return VIEW_TYPE_FOOTER;
|
|
|
|
} else {
|
|
|
|
return VIEW_TYPE_BLOCKED_USER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
void setBlocked(boolean blocked, int position) {
|
2017-02-22 13:12:49 +11:00
|
|
|
if (blocked) {
|
|
|
|
unblockedAccountPositions.remove(position);
|
|
|
|
} else {
|
|
|
|
unblockedAccountPositions.add(position);
|
|
|
|
}
|
|
|
|
notifyItemChanged(position);
|
|
|
|
}
|
|
|
|
|
2017-03-13 00:01:50 +11:00
|
|
|
static class BlockedUserViewHolder extends RecyclerView.ViewHolder {
|
|
|
|
@BindView(R.id.blocked_user_avatar) CircularImageView avatar;
|
|
|
|
@BindView(R.id.blocked_user_username) TextView username;
|
|
|
|
@BindView(R.id.blocked_user_display_name) TextView displayName;
|
|
|
|
@BindView(R.id.blocked_user_unblock) ImageButton unblock;
|
|
|
|
|
2017-02-22 13:12:49 +11:00
|
|
|
private String id;
|
|
|
|
|
|
|
|
BlockedUserViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
2017-03-13 00:01:50 +11:00
|
|
|
ButterKnife.bind(this, itemView);
|
2017-02-22 13:12:49 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
void setupWithAccount(Account account) {
|
|
|
|
id = account.id;
|
2017-03-11 09:31:08 +11:00
|
|
|
displayName.setText(account.getDisplayName());
|
2017-02-22 13:12:49 +11:00
|
|
|
String format = username.getContext().getString(R.string.status_username_format);
|
|
|
|
String formattedUsername = String.format(format, account.username);
|
|
|
|
username.setText(formattedUsername);
|
2017-03-08 13:38:20 +11:00
|
|
|
Picasso.with(avatar.getContext())
|
|
|
|
.load(account.avatar)
|
|
|
|
.error(R.drawable.avatar_error)
|
|
|
|
.placeholder(R.drawable.avatar_default)
|
|
|
|
.into(avatar);
|
2017-02-22 13:12:49 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
void setupActionListener(final AccountActionListener listener, final boolean blocked,
|
|
|
|
final int position) {
|
|
|
|
unblock.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onBlock(!blocked, id, position);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
avatar.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onViewAccount(id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|