FairEmail/app/src/main/java/eu/faircode/email/AdapterAccount.java

284 lines
10 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
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.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
import android.content.Context;
import android.content.Intent;
2018-09-12 16:54:48 +00:00
import android.graphics.Color;
import android.graphics.Typeface;
2018-08-02 13:33:06 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import java.text.Collator;
2019-01-23 09:16:33 +00:00
import java.text.DateFormat;
import java.text.NumberFormat;
2019-01-23 09:16:33 +00:00
import java.text.SimpleDateFormat;
2018-08-02 13:33:06 +00:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Locale;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
2019-03-19 10:55:16 +00:00
import androidx.constraintlayout.widget.Group;
2018-08-08 06:55:47 +00:00
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
2018-08-02 13:33:06 +00:00
public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHolder> {
private Context context;
private boolean settings;
2018-12-24 13:41:49 +00:00
private LayoutInflater inflater;
2018-08-02 13:33:06 +00:00
private int colorUnread;
private int textColorSecondary;
2018-08-02 13:33:06 +00:00
private List<TupleAccountEx> items = new ArrayList<>();
private NumberFormat nf = NumberFormat.getNumberInstance();
private DateFormat df = SimpleDateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
2019-01-23 09:16:33 +00:00
2018-08-02 13:33:06 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
2019-03-19 10:55:16 +00:00
private View view;
private View vwColor;
private ImageView ivPrimary;
2019-03-19 17:55:54 +00:00
private ImageView ivNotify;
2019-03-19 10:55:16 +00:00
private TextView tvName;
private ImageView ivSync;
private TextView tvUser;
private ImageView ivState;
private TextView tvHost;
private TextView tvLast;
2019-03-27 08:19:11 +00:00
private TextView tvWarning;
2019-03-19 10:55:16 +00:00
private TextView tvError;
private Group grpSettings;
2018-08-02 13:33:06 +00:00
ViewHolder(View itemView) {
super(itemView);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2018-09-12 16:54:48 +00:00
vwColor = itemView.findViewById(R.id.vwColor);
2019-03-19 10:55:16 +00:00
ivSync = itemView.findViewById(R.id.ivSync);
2018-08-02 13:33:06 +00:00
ivPrimary = itemView.findViewById(R.id.ivPrimary);
2019-03-19 17:55:54 +00:00
ivNotify = itemView.findViewById(R.id.ivNotify);
2018-08-02 13:33:06 +00:00
tvName = itemView.findViewById(R.id.tvName);
tvUser = itemView.findViewById(R.id.tvUser);
2018-08-13 14:44:47 +00:00
ivState = itemView.findViewById(R.id.ivState);
2019-01-25 18:12:44 +00:00
tvHost = itemView.findViewById(R.id.tvHost);
tvLast = itemView.findViewById(R.id.tvLast);
2019-03-27 08:19:11 +00:00
tvWarning = itemView.findViewById(R.id.tvWarning);
tvError = itemView.findViewById(R.id.tvError);
2019-03-19 10:55:16 +00:00
grpSettings = itemView.findViewById(R.id.grpSettings);
2018-08-02 13:33:06 +00:00
}
private void wire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(this);
2018-08-02 13:33:06 +00:00
}
private void unwire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(null);
2018-08-02 13:33:06 +00:00
}
private void bindTo(TupleAccountEx account) {
2019-03-15 11:53:22 +00:00
view.setActivated(account.tbd != null);
2018-09-12 16:54:48 +00:00
vwColor.setBackgroundColor(account.color == null ? Color.TRANSPARENT : account.color);
2019-03-19 10:55:16 +00:00
ivSync.setImageResource(account.synchronize ? R.drawable.baseline_sync_24 : R.drawable.baseline_sync_disabled_24);
ivPrimary.setVisibility(account.primary ? View.VISIBLE : View.GONE);
2019-03-19 17:55:54 +00:00
ivNotify.setVisibility(account.notify ? View.VISIBLE : View.GONE);
if (settings)
tvName.setText(account.name);
else {
if (account.unseen > 0)
tvName.setText(context.getString(R.string.title_name_count, account.name, nf.format(account.unseen)));
else
tvName.setText(account.name);
tvName.setTypeface(null, account.unseen > 0 ? Typeface.BOLD : Typeface.NORMAL);
tvName.setTextColor(account.unseen > 0 ? colorUnread : textColorSecondary);
}
tvUser.setText(account.user);
2018-08-15 10:32:51 +00:00
2018-08-13 14:44:47 +00:00
if ("connected".equals(account.state))
ivState.setImageResource(R.drawable.baseline_cloud_24);
else if ("connecting".equals(account.state))
ivState.setImageResource(R.drawable.baseline_cloud_queue_24);
2018-08-15 19:34:22 +00:00
else if ("closing".equals(account.state))
ivState.setImageResource(R.drawable.baseline_close_24);
2018-08-13 14:44:47 +00:00
else
ivState.setImageResource(R.drawable.baseline_cloud_off_24);
ivState.setVisibility(account.synchronize ? View.VISIBLE : View.INVISIBLE);
2019-01-25 18:12:44 +00:00
tvHost.setText(String.format("%s:%d", account.host, account.port));
2019-01-23 09:16:33 +00:00
tvLast.setText(context.getString(R.string.title_last_connected,
2019-01-25 06:57:26 +00:00
account.last_connected == null ? "-" : df.format(account.last_connected)));
2019-03-27 08:19:11 +00:00
tvWarning.setText(account.warning);
tvWarning.setVisibility(account.warning == null || !settings ? View.GONE : View.VISIBLE);
tvError.setText(account.error);
tvError.setVisibility(account.error == null ? View.GONE : View.VISIBLE);
2019-03-19 10:55:16 +00:00
grpSettings.setVisibility(settings ? View.VISIBLE : View.GONE);
}
2018-08-02 13:33:06 +00:00
@Override
public void onClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return;
TupleAccountEx account = items.get(pos);
if (account.tbd != null)
return;
2018-08-02 13:33:06 +00:00
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(settings ? ActivitySetup.ACTION_EDIT_ACCOUNT : ActivityView.ACTION_VIEW_FOLDERS)
2018-08-08 06:55:47 +00:00
.putExtra("id", account.id));
2018-08-02 13:33:06 +00:00
}
}
AdapterAccount(Context context, boolean settings) {
2018-08-02 13:33:06 +00:00
this.context = context;
this.settings = settings;
2018-12-24 13:41:49 +00:00
this.inflater = LayoutInflater.from(context);
this.colorUnread = Helper.resolveColor(context, R.attr.colorUnread);
this.textColorSecondary = Helper.resolveColor(context, android.R.attr.textColorSecondary);
2018-08-02 13:33:06 +00:00
setHasStableIds(true);
}
public void set(@NonNull List<TupleAccountEx> accounts) {
2018-12-24 12:27:45 +00:00
Log.i("Set accounts=" + accounts.size());
2018-08-02 13:33:06 +00:00
final Collator collator = Collator.getInstance(Locale.getDefault());
collator.setStrength(Collator.SECONDARY); // Case insensitive, process accents etc
Collections.sort(accounts, new Comparator<TupleAccountEx>() {
2018-08-02 13:33:06 +00:00
@Override
public int compare(TupleAccountEx a1, TupleAccountEx a2) {
2019-03-15 11:53:22 +00:00
int n = collator.compare(a1.name, a2.name);
if (n != 0)
return n;
int e = collator.compare(a1.user, a2.user);
if (e != 0)
return e;
return a1.id.compareTo(a2.id);
2018-08-02 13:33:06 +00:00
}
});
2019-03-15 11:53:22 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, accounts), false);
2018-08-02 13:33:06 +00:00
2019-03-15 11:53:22 +00:00
items = accounts;
2018-08-02 13:33:06 +00:00
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
2018-12-24 12:27:45 +00:00
Log.i("Inserted @" + position + " #" + count);
2018-08-02 13:33:06 +00:00
}
@Override
public void onRemoved(int position, int count) {
2018-12-24 12:27:45 +00:00
Log.i("Removed @" + position + " #" + count);
2018-08-02 13:33:06 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2018-12-24 12:27:45 +00:00
Log.i("Moved " + fromPosition + ">" + toPosition);
2018-08-02 13:33:06 +00:00
}
@Override
public void onChanged(int position, int count, Object payload) {
2018-12-24 12:27:45 +00:00
Log.i("Changed @" + position + " #" + count);
2018-08-02 13:33:06 +00:00
}
});
diff.dispatchUpdatesTo(this);
2018-08-02 13:33:06 +00:00
}
2019-02-10 18:02:55 +00:00
private class DiffCallback extends DiffUtil.Callback {
private List<TupleAccountEx> prev = new ArrayList<>();
private List<TupleAccountEx> next = new ArrayList<>();
2018-08-02 13:33:06 +00:00
DiffCallback(List<TupleAccountEx> prev, List<TupleAccountEx> next) {
2019-03-15 11:53:22 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
2018-08-02 13:33:06 +00:00
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
TupleAccountEx f1 = prev.get(oldItemPosition);
TupleAccountEx f2 = next.get(newItemPosition);
2018-08-02 13:33:06 +00:00
return f1.id.equals(f2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
TupleAccountEx f1 = prev.get(oldItemPosition);
TupleAccountEx f2 = next.get(newItemPosition);
2019-03-19 17:50:48 +00:00
return f1.uiEquals(f2);
2018-08-02 13:33:06 +00:00
}
}
@Override
public long getItemId(int position) {
2019-03-15 11:53:22 +00:00
return items.get(position).id;
2018-08-02 13:33:06 +00:00
}
@Override
public int getItemCount() {
2019-03-15 11:53:22 +00:00
return items.size();
2018-08-02 13:33:06 +00:00
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
2018-12-24 13:41:49 +00:00
return new ViewHolder(inflater.inflate(R.layout.item_account, parent, false));
2018-08-02 13:33:06 +00:00
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
TupleAccountEx account = items.get(position);
holder.bindTo(account);
2018-08-02 13:33:06 +00:00
holder.wire();
}
}