2017-04-29 13:52:14 +10:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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-05-05 08:55:34 +10:00
|
|
|
package com.keylesspalace.tusky.adapter;
|
2017-04-29 13:52:14 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
2019-05-26 16:46:08 +10:00
|
|
|
|
|
|
|
import android.preference.PreferenceManager;
|
2017-04-29 13:52:14 +10:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.ImageButton;
|
2018-07-30 23:36:22 +10:00
|
|
|
import android.widget.ImageView;
|
2017-04-29 13:52:14 +10:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.R;
|
2017-04-29 13:52:14 +10:00
|
|
|
import com.keylesspalace.tusky.entity.Account;
|
2018-07-30 23:36:22 +10:00
|
|
|
import com.keylesspalace.tusky.interfaces.AccountActionListener;
|
2018-06-24 17:53:23 +10:00
|
|
|
import com.keylesspalace.tusky.util.CustomEmojiHelper;
|
2019-05-26 16:46:08 +10:00
|
|
|
import com.keylesspalace.tusky.util.ImageLoadingHelper;
|
2017-04-29 13:52:14 +10:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public class FollowRequestsAdapter extends AccountAdapter {
|
2017-04-29 13:52:14 +10:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public FollowRequestsAdapter(AccountActionListener accountActionListener) {
|
2017-04-29 13:52:14 +10:00
|
|
|
super(accountActionListener);
|
|
|
|
}
|
|
|
|
|
2018-06-24 17:53:23 +10:00
|
|
|
@NonNull
|
2017-04-29 13:52:14 +10:00
|
|
|
@Override
|
2018-06-24 17:53:23 +10:00
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
2017-04-29 13:52:14 +10:00
|
|
|
switch (viewType) {
|
|
|
|
default:
|
2018-09-01 05:52:09 +10:00
|
|
|
case VIEW_TYPE_ACCOUNT: {
|
2017-04-29 13:52:14 +10:00
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_follow_request, parent, false);
|
|
|
|
return new FollowRequestViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOOTER: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_footer, parent, false);
|
2018-09-01 05:52:09 +10:00
|
|
|
return new LoadingFooterViewHolder(view);
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-06-24 17:53:23 +10:00
|
|
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
|
2018-09-01 05:52:09 +10:00
|
|
|
if (getItemViewType(position) == VIEW_TYPE_ACCOUNT) {
|
2017-04-29 13:52:14 +10:00
|
|
|
FollowRequestViewHolder holder = (FollowRequestViewHolder) viewHolder;
|
|
|
|
holder.setupWithAccount(accountList.get(position));
|
|
|
|
holder.setupActionListener(accountActionListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static class FollowRequestViewHolder extends RecyclerView.ViewHolder {
|
2018-07-30 23:36:22 +10:00
|
|
|
private ImageView avatar;
|
2017-06-23 04:59:12 +10:00
|
|
|
private TextView username;
|
|
|
|
private TextView displayName;
|
|
|
|
private ImageButton accept;
|
|
|
|
private ImageButton reject;
|
2017-04-29 13:52:14 +10:00
|
|
|
private String id;
|
2019-05-26 16:46:08 +10:00
|
|
|
private boolean animateAvatar;
|
2017-04-29 13:52:14 +10:00
|
|
|
|
|
|
|
FollowRequestViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
2019-03-16 23:36:16 +11:00
|
|
|
avatar = itemView.findViewById(R.id.avatar);
|
|
|
|
username = itemView.findViewById(R.id.usernameTextView);
|
|
|
|
displayName = itemView.findViewById(R.id.displayNameTextView);
|
|
|
|
accept = itemView.findViewById(R.id.acceptButton);
|
|
|
|
reject = itemView.findViewById(R.id.rejectButton);
|
2019-05-26 16:46:08 +10:00
|
|
|
animateAvatar = PreferenceManager.getDefaultSharedPreferences(itemView.getContext())
|
|
|
|
.getBoolean("animateGifAvatars", false);
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void setupWithAccount(Account account) {
|
2018-03-03 23:24:03 +11:00
|
|
|
id = account.getId();
|
2018-06-24 17:53:23 +10:00
|
|
|
CharSequence emojifiedName = CustomEmojiHelper.emojifyString(account.getName(), account.getEmojis(), displayName);
|
|
|
|
displayName.setText(emojifiedName);
|
2017-04-29 13:52:14 +10:00
|
|
|
String format = username.getContext().getString(R.string.status_username_format);
|
2018-03-03 23:24:03 +11:00
|
|
|
String formattedUsername = String.format(format, account.getUsername());
|
2017-04-29 13:52:14 +10:00
|
|
|
username.setText(formattedUsername);
|
2019-05-26 16:46:08 +10:00
|
|
|
int avatarRadius = avatar.getContext().getResources()
|
|
|
|
.getDimensionPixelSize(R.dimen.avatar_radius_48dp);
|
|
|
|
ImageLoadingHelper.loadAvatar(account.getAvatar(), avatar, avatarRadius, animateAvatar);
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void setupActionListener(final AccountActionListener listener) {
|
2018-06-24 17:53:23 +10:00
|
|
|
accept.setOnClickListener(v -> {
|
|
|
|
int position = getAdapterPosition();
|
|
|
|
if (position != RecyclerView.NO_POSITION) {
|
|
|
|
listener.onRespondToFollowRequest(true, id, position);
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
});
|
2018-06-24 17:53:23 +10:00
|
|
|
reject.setOnClickListener(v -> {
|
|
|
|
int position = getAdapterPosition();
|
|
|
|
if (position != RecyclerView.NO_POSITION) {
|
|
|
|
listener.onRespondToFollowRequest(false, id, position);
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
});
|
2018-06-24 17:53:23 +10:00
|
|
|
avatar.setOnClickListener(v -> listener.onViewAccount(id));
|
2017-04-29 13:52:14 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|