You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.7 KiB
105 lines
3.7 KiB
8 years ago
|
package com.keylesspalace.tusky.adapter;
|
||
8 years ago
|
|
||
|
import android.support.v7.widget.RecyclerView;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.View;
|
||
|
import android.view.ViewGroup;
|
||
|
import android.widget.ImageButton;
|
||
|
import android.widget.TextView;
|
||
|
|
||
8 years ago
|
import com.keylesspalace.tusky.R;
|
||
8 years ago
|
import com.keylesspalace.tusky.entity.Account;
|
||
8 years ago
|
import com.keylesspalace.tusky.interfaces.AccountActionListener;
|
||
8 years ago
|
import com.pkmmte.view.CircularImageView;
|
||
|
import com.squareup.picasso.Picasso;
|
||
|
|
||
|
import butterknife.BindView;
|
||
|
import butterknife.ButterKnife;
|
||
|
|
||
8 years ago
|
public class MutesAdapter extends AccountAdapter {
|
||
8 years ago
|
private static final int VIEW_TYPE_MUTED_USER = 0;
|
||
|
private static final int VIEW_TYPE_FOOTER = 1;
|
||
|
|
||
8 years ago
|
public MutesAdapter(AccountActionListener accountActionListener) {
|
||
8 years ago
|
super(accountActionListener);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
||
|
switch (viewType) {
|
||
|
default:
|
||
|
case VIEW_TYPE_MUTED_USER: {
|
||
|
View view = LayoutInflater.from(parent.getContext())
|
||
|
.inflate(R.layout.item_muted_user, parent, false);
|
||
|
return new MutesAdapter.MutedUserViewHolder(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()) {
|
||
|
MutedUserViewHolder holder = (MutedUserViewHolder) viewHolder;
|
||
|
holder.setupWithAccount(accountList.get(position));
|
||
8 years ago
|
holder.setupActionListener(accountActionListener, true, position);
|
||
8 years ago
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getItemViewType(int position) {
|
||
|
if (position == accountList.size()) {
|
||
|
return VIEW_TYPE_FOOTER;
|
||
|
} else {
|
||
|
return VIEW_TYPE_MUTED_USER;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static class MutedUserViewHolder extends RecyclerView.ViewHolder {
|
||
|
@BindView(R.id.muted_user_avatar) CircularImageView avatar;
|
||
|
@BindView(R.id.muted_user_username) TextView username;
|
||
|
@BindView(R.id.muted_user_display_name) TextView displayName;
|
||
|
@BindView(R.id.muted_user_unmute) ImageButton unmute;
|
||
|
|
||
|
private String id;
|
||
|
|
||
|
MutedUserViewHolder(View itemView) {
|
||
|
super(itemView);
|
||
|
ButterKnife.bind(this, itemView);
|
||
|
}
|
||
|
|
||
|
void setupWithAccount(Account account) {
|
||
|
id = account.id;
|
||
|
displayName.setText(account.getDisplayName());
|
||
|
String format = username.getContext().getString(R.string.status_username_format);
|
||
|
String formattedUsername = String.format(format, account.username);
|
||
|
username.setText(formattedUsername);
|
||
|
Picasso.with(avatar.getContext())
|
||
|
.load(account.avatar)
|
||
|
.error(R.drawable.avatar_error)
|
||
|
.placeholder(R.drawable.avatar_default)
|
||
|
.into(avatar);
|
||
|
}
|
||
|
|
||
|
void setupActionListener(final AccountActionListener listener, final boolean muted,
|
||
|
final int position) {
|
||
|
unmute.setOnClickListener(new View.OnClickListener() {
|
||
|
@Override
|
||
|
public void onClick(View v) {
|
||
|
listener.onMute(!muted, id, position);
|
||
|
}
|
||
|
});
|
||
|
avatar.setOnClickListener(new View.OnClickListener() {
|
||
|
@Override
|
||
|
public void onClick(View v) {
|
||
|
listener.onViewAccount(id);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|