2019-05-22 07:01:25 +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/>.
|
|
|
|
|
|
|
|
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
|
|
|
*/
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import androidx.annotation.NonNull;
|
2019-07-01 07:30:07 +00:00
|
|
|
import androidx.lifecycle.Lifecycle;
|
|
|
|
import androidx.lifecycle.LifecycleObserver;
|
2019-05-22 07:01:25 +00:00
|
|
|
import androidx.lifecycle.LifecycleOwner;
|
2019-07-01 07:30:07 +00:00
|
|
|
import androidx.lifecycle.OnLifecycleEvent;
|
2019-05-22 07:01:25 +00:00
|
|
|
import androidx.recyclerview.widget.DiffUtil;
|
|
|
|
import androidx.recyclerview.widget.ListUpdateCallback;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
|
|
|
|
import java.text.DateFormat;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class AdapterRuleMatch extends RecyclerView.Adapter<AdapterRuleMatch.ViewHolder> {
|
|
|
|
private Context context;
|
|
|
|
private LifecycleOwner owner;
|
|
|
|
private LayoutInflater inflater;
|
|
|
|
|
|
|
|
private List<EntityMessage> items = new ArrayList<>();
|
|
|
|
|
2019-07-15 19:28:25 +00:00
|
|
|
private DateFormat DTF;
|
2019-05-22 07:01:25 +00:00
|
|
|
|
2019-05-22 12:46:20 +00:00
|
|
|
public class ViewHolder extends RecyclerView.ViewHolder {
|
2019-05-22 07:01:25 +00:00
|
|
|
private View view;
|
|
|
|
private TextView tvTime;
|
|
|
|
private TextView tvSubject;
|
|
|
|
|
|
|
|
ViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
|
|
|
|
|
|
|
view = itemView.findViewById(R.id.clItem);
|
|
|
|
tvTime = itemView.findViewById(R.id.tvTime);
|
|
|
|
tvSubject = itemView.findViewById(R.id.tvSubject);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void wire() {
|
|
|
|
}
|
|
|
|
|
|
|
|
private void unwire() {
|
|
|
|
}
|
|
|
|
|
|
|
|
private void bindTo(EntityMessage message) {
|
2019-07-15 19:28:25 +00:00
|
|
|
tvTime.setText(DTF.format(message.received));
|
2019-05-22 07:01:25 +00:00
|
|
|
tvSubject.setText(message.subject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-01 13:25:31 +00:00
|
|
|
AdapterRuleMatch(Context context, LifecycleOwner owner) {
|
|
|
|
this.context = context;
|
|
|
|
this.owner = owner;
|
2019-05-22 07:01:25 +00:00
|
|
|
this.inflater = LayoutInflater.from(context);
|
2019-07-01 07:30:07 +00:00
|
|
|
|
2019-07-15 19:28:25 +00:00
|
|
|
this.DTF = Helper.getDateTimeInstance(context, SimpleDateFormat.SHORT, SimpleDateFormat.SHORT);
|
|
|
|
|
2019-05-22 07:01:25 +00:00
|
|
|
setHasStableIds(true);
|
2019-07-01 07:30:07 +00:00
|
|
|
|
|
|
|
owner.getLifecycle().addObserver(new LifecycleObserver() {
|
|
|
|
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
|
|
|
|
public void onDestroyed() {
|
|
|
|
Log.i(AdapterRuleMatch.this + " parent destroyed");
|
|
|
|
}
|
|
|
|
});
|
2019-05-22 07:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void set(@NonNull List<EntityMessage> messages) {
|
|
|
|
Log.i("Set matched messages=" + messages.size());
|
|
|
|
|
|
|
|
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, messages), false);
|
|
|
|
|
|
|
|
items = messages;
|
|
|
|
|
|
|
|
diff.dispatchUpdatesTo(new ListUpdateCallback() {
|
|
|
|
@Override
|
|
|
|
public void onInserted(int position, int count) {
|
|
|
|
Log.i("Inserted @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRemoved(int position, int count) {
|
|
|
|
Log.i("Removed @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onMoved(int fromPosition, int toPosition) {
|
|
|
|
Log.i("Moved " + fromPosition + ">" + toPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onChanged(int position, int count, Object payload) {
|
|
|
|
Log.i("Changed @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
diff.dispatchUpdatesTo(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class DiffCallback extends DiffUtil.Callback {
|
|
|
|
private List<EntityMessage> prev = new ArrayList<>();
|
|
|
|
private List<EntityMessage> next = new ArrayList<>();
|
|
|
|
|
|
|
|
DiffCallback(List<EntityMessage> prev, List<EntityMessage> next) {
|
|
|
|
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) {
|
|
|
|
EntityMessage m1 = prev.get(oldItemPosition);
|
|
|
|
EntityMessage m2 = next.get(newItemPosition);
|
|
|
|
return m1.id.equals(m2.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
|
|
|
|
EntityMessage m1 = prev.get(oldItemPosition);
|
|
|
|
EntityMessage m2 = next.get(newItemPosition);
|
|
|
|
return m1.id.equals(m2.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int position) {
|
|
|
|
return items.get(position).id;
|
|
|
|
}
|
|
|
|
|
|
|
|
@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_rule_match, parent, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
|
|
|
|
holder.unwire();
|
|
|
|
EntityMessage message = items.get(position);
|
|
|
|
holder.bindTo(message);
|
|
|
|
holder.wire();
|
|
|
|
}
|
|
|
|
}
|