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

237 lines
8.3 KiB
Java
Raw Normal View History

2019-07-19 06:27:44 +00:00
package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail 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.
FairEmail 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 FairEmail. If not, see <http://www.gnu.org/licenses/>.
2021-01-01 07:56:36 +00:00
Copyright 2018-2021 by Marcel Bokhorst (M66B)
2019-07-19 06:27:44 +00:00
*/
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
2019-08-16 14:24:03 +00:00
import android.graphics.Typeface;
2019-07-19 06:27:44 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.lifecycle.LifecycleOwner;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import androidx.preference.PreferenceManager;
2019-07-19 06:27:44 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
import java.text.NumberFormat;
2019-07-19 06:27:44 +00:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class AdapterNavUnified extends RecyclerView.Adapter<AdapterNavUnified.ViewHolder> {
private Context context;
private LifecycleOwner owner;
private LayoutInflater inflater;
private boolean nav_count;
private int colorUnread;
private int textColorSecondary;
private List<TupleFolderUnified> items = new ArrayList<>();
private NumberFormat NF = NumberFormat.getNumberInstance();
2019-07-19 06:27:44 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
private View view;
private ImageView ivItem;
private TextView tvItem;
private TextView tvItemExtra;
2021-07-28 11:52:20 +00:00
private ImageView ivExtra;
2019-07-19 06:27:44 +00:00
private ImageView ivWarning;
ViewHolder(View itemView) {
super(itemView);
view = itemView.findViewById(R.id.clItem);
ivItem = itemView.findViewById(R.id.ivItem);
tvItem = itemView.findViewById(R.id.tvItem);
tvItemExtra = itemView.findViewById(R.id.tvItemExtra);
2021-07-28 11:52:20 +00:00
ivExtra = itemView.findViewById(R.id.ivExtra);
2019-07-19 06:27:44 +00:00
ivWarning = itemView.findViewById(R.id.ivWarning);
}
private void wire() {
view.setOnClickListener(this);
}
private void unwire() {
view.setOnClickListener(null);
}
private void bindTo(TupleFolderUnified folder) {
2020-01-26 18:43:08 +00:00
if (EntityFolder.INBOX.equals(folder.type))
2020-09-28 07:18:56 +00:00
ivItem.setImageResource(R.drawable.twotone_all_inbox_24);
2020-01-26 18:43:08 +00:00
else
ivItem.setImageResource(EntityFolder.getIcon(folder.type));
long count;
if (EntityFolder.DRAFTS.equals(folder.type))
count = folder.messages;
else
count = folder.unseen;
if (count == 0)
2020-06-06 08:02:11 +00:00
tvItem.setText(EntityFolder.localizeType(context, folder.type));
else
tvItem.setText(context.getString(R.string.title_name_count,
2020-06-06 08:02:11 +00:00
EntityFolder.localizeType(context, folder.type), NF.format(count)));
tvItem.setTextColor(count == 0 ? textColorSecondary : colorUnread);
tvItem.setTypeface(count == 0 ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
tvItemExtra.setText(NF.format(folder.messages));
tvItemExtra.setVisibility(nav_count ? View.VISIBLE : View.GONE);
2021-07-28 11:52:20 +00:00
ivExtra.setVisibility(View.GONE);
2019-07-19 06:27:44 +00:00
ivWarning.setVisibility(View.GONE);
}
@Override
public void onClick(View v) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return;
TupleFolderUnified folder = items.get(pos);
if (folder == null || folder.type == null)
2019-07-19 06:27:44 +00:00
return;
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_VIEW_MESSAGES)
.putExtra("type", folder.type));
2019-07-19 06:27:44 +00:00
}
}
AdapterNavUnified(Context context, LifecycleOwner owner) {
2019-07-19 06:27:44 +00:00
this.context = context;
this.owner = owner;
this.inflater = LayoutInflater.from(context);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
this.nav_count = prefs.getBoolean("nav_count", false);
boolean highlight_unread = prefs.getBoolean("highlight_unread", true);
2020-10-07 06:23:51 +00:00
int colorHighlight = prefs.getInt("highlight_color", Helper.resolveColor(context, R.attr.colorUnreadHighlight));
this.colorUnread = (highlight_unread ? colorHighlight : Helper.resolveColor(context, R.attr.colorUnread));
this.textColorSecondary = Helper.resolveColor(context, android.R.attr.textColorSecondary);
2019-07-19 06:27:44 +00:00
}
public void set(@NonNull List<TupleFolderUnified> types) {
2019-07-19 06:27:44 +00:00
Log.i("Set nav unified=" + types.size());
Collections.sort(types, new Comparator<TupleFolderUnified>() {
2019-07-19 06:27:44 +00:00
@Override
public int compare(TupleFolderUnified f1, TupleFolderUnified f2) {
int i1 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f1.type);
int i2 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f2.type);
2019-07-19 06:27:44 +00:00
return Integer.compare(i1, i2);
}
});
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, types), false);
items = types;
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Inserted @" + position + " #" + count);
2019-07-19 06:27:44 +00:00
}
@Override
public void onRemoved(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Removed @" + position + " #" + count);
2019-07-19 06:27:44 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2019-12-07 16:02:42 +00:00
Log.d("Moved " + fromPosition + ">" + toPosition);
2019-07-19 06:27:44 +00:00
}
@Override
public void onChanged(int position, int count, Object payload) {
2019-12-07 16:02:42 +00:00
Log.d("Changed @" + position + " #" + count);
2019-07-19 06:27:44 +00:00
}
});
diff.dispatchUpdatesTo(this);
}
2020-12-30 18:29:20 +00:00
private static class DiffCallback extends DiffUtil.Callback {
private List<TupleFolderUnified> prev = new ArrayList<>();
private List<TupleFolderUnified> next = new ArrayList<>();
2019-07-19 06:27:44 +00:00
DiffCallback(List<TupleFolderUnified> prev, List<TupleFolderUnified> next) {
2019-07-19 06:27:44 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
TupleFolderUnified f1 = prev.get(oldItemPosition);
TupleFolderUnified f2 = next.get(newItemPosition);
return f1.type.equals(f2.type);
2019-07-19 06:27:44 +00:00
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
TupleFolderUnified f1 = prev.get(oldItemPosition);
TupleFolderUnified f2 = next.get(newItemPosition);
return (f1.messages == f2.messages && f1.unseen == f2.unseen);
2019-07-19 06:27:44 +00:00
}
}
@Override
public int getItemCount() {
return items.size();
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new ViewHolder(inflater.inflate(R.layout.item_nav, parent, false));
2019-07-19 06:27:44 +00:00
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
TupleFolderUnified folder = items.get(position);
holder.bindTo(folder);
2019-07-19 06:27:44 +00:00
holder.wire();
}
}