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

271 lines
9.4 KiB
Java
Raw Normal View History

2018-08-13 06:59:05 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-13 06:59:05 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-13 06:59:05 +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-13 06:59:05 +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-13 06:59:05 +00:00
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import android.content.Context;
2018-12-01 13:09:27 +00:00
import android.content.Intent;
2018-08-21 16:29:23 +00:00
import android.os.Bundle;
2018-08-13 06:59:05 +00:00
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import androidx.annotation.NonNull;
2018-08-21 16:29:23 +00:00
import androidx.lifecycle.LifecycleOwner;
2018-12-01 13:09:27 +00:00
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
2018-08-13 06:59:05 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.ViewHolder> {
private Context context;
2018-08-21 16:29:23 +00:00
private LifecycleOwner owner;
2018-08-13 06:59:05 +00:00
private List<EntityOperation> all = new ArrayList<>();
private List<EntityOperation> filtered = new ArrayList<>();
private DateFormat df = SimpleDateFormat.getDateTimeInstance(SimpleDateFormat.SHORT, SimpleDateFormat.LONG);
2018-12-01 13:09:27 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
2018-12-01 14:13:57 +00:00
private View itemView;
private TextView tvMessage;
private TextView tvName;
private TextView tvArgs;
private TextView tvTime;
private TextView tvError;
2018-08-13 06:59:05 +00:00
ViewHolder(View itemView) {
super(itemView);
this.itemView = itemView;
tvMessage = itemView.findViewById(R.id.tvMessage);
tvName = itemView.findViewById(R.id.tvName);
2018-12-01 13:02:27 +00:00
tvArgs = itemView.findViewById(R.id.tvArgs);
2018-08-13 06:59:05 +00:00
tvTime = itemView.findViewById(R.id.tvTime);
2018-12-01 14:13:57 +00:00
tvError = itemView.findViewById(R.id.tvError);
2018-08-13 06:59:05 +00:00
}
private void wire() {
2018-12-01 13:09:27 +00:00
itemView.setOnClickListener(this);
2018-08-21 16:29:23 +00:00
itemView.setOnLongClickListener(this);
2018-08-13 06:59:05 +00:00
}
private void unwire() {
2018-12-01 13:09:27 +00:00
itemView.setOnClickListener(null);
2018-08-21 16:29:23 +00:00
itemView.setOnLongClickListener(null);
2018-08-13 06:59:05 +00:00
}
private void bindTo(EntityOperation operation) {
2018-12-02 13:19:54 +00:00
tvMessage.setText(operation.message == null ? null : Long.toString(operation.message));
2018-08-13 06:59:05 +00:00
tvName.setText(operation.name);
2018-12-01 13:02:27 +00:00
tvArgs.setText(operation.args);
2018-08-13 06:59:05 +00:00
tvTime.setText(df.format(new Date(operation.created)));
2018-12-01 14:13:57 +00:00
tvError.setText(operation.error);
tvError.setVisibility(operation.error == null ? View.GONE : View.VISIBLE);
2018-08-13 06:59:05 +00:00
}
2018-12-01 13:09:27 +00:00
@Override
public void onClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return;
EntityOperation operation = filtered.get(pos);
if (operation.message == null) {
Bundle args = new Bundle();
args.putLong("id", operation.folder);
new SimpleTask<EntityFolder>() {
@Override
protected EntityFolder onLoad(Context context, Bundle args) {
long id = args.getLong("id");
return DB.getInstance(context).folder().getFolder(id);
}
@Override
protected void onLoaded(Bundle args, EntityFolder folder) {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_VIEW_MESSAGES)
.putExtra("account", folder.account)
.putExtra("folder", folder.id)
.putExtra("outgoing", folder.isOutgoing()));
}
}.load(context, owner, args);
} else {
Bundle args = new Bundle();
args.putLong("id", operation.message);
new SimpleTask<EntityMessage>() {
@Override
protected EntityMessage onLoad(Context context, Bundle args) {
long id = args.getLong("id");
return DB.getInstance(context).message().getMessage(id);
}
@Override
protected void onLoaded(Bundle args, EntityMessage message) {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_VIEW_THREAD)
.putExtra("account", message.account)
.putExtra("thread", message.thread)
2018-12-06 10:59:57 +00:00
.putExtra("id", message.id));
}
}.load(context, owner, args);
}
2018-12-01 13:09:27 +00:00
}
2018-08-21 16:29:23 +00:00
@Override
public boolean onLongClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return false;
EntityOperation operation = filtered.get(pos);
Bundle args = new Bundle();
args.putLong("id", operation.id);
new SimpleTask<Void>() {
@Override
2018-12-09 14:49:43 +00:00
protected Void onLoad(Context context, Bundle args) {
2018-08-21 16:29:23 +00:00
DB.getInstance(context).operation().deleteOperation(args.getLong("id"));
return null;
}
2018-12-01 09:47:08 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
2018-12-01 09:47:08 +00:00
}
2018-08-21 16:29:23 +00:00
}.load(context, owner, args);
return true;
}
2018-08-13 06:59:05 +00:00
}
2018-08-21 16:29:23 +00:00
AdapterOperation(Context context, LifecycleOwner owner) {
2018-08-13 06:59:05 +00:00
this.context = context;
2018-08-21 16:29:23 +00:00
this.owner = owner;
2018-08-13 06:59:05 +00:00
setHasStableIds(true);
}
public void set(@NonNull List<EntityOperation> operations) {
Log.i(Helper.TAG, "Set operations=" + operations.size());
2018-09-21 15:36:24 +00:00
all = operations;
2018-08-13 06:59:05 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new MessageDiffCallback(filtered, all));
filtered.clear();
filtered.addAll(all);
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
Log.i(Helper.TAG, "Inserted @" + position + " #" + count);
}
@Override
public void onRemoved(int position, int count) {
Log.i(Helper.TAG, "Removed @" + position + " #" + count);
}
@Override
public void onMoved(int fromPosition, int toPosition) {
Log.i(Helper.TAG, "Moved " + fromPosition + ">" + toPosition);
}
@Override
public void onChanged(int position, int count, Object payload) {
Log.i(Helper.TAG, "Changed @" + position + " #" + count);
}
});
diff.dispatchUpdatesTo(this);
2018-08-13 06:59:05 +00:00
}
private class MessageDiffCallback extends DiffUtil.Callback {
private List<EntityOperation> prev;
private List<EntityOperation> next;
MessageDiffCallback(List<EntityOperation> prev, List<EntityOperation> next) {
this.prev = prev;
this.next = next;
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
EntityOperation a1 = prev.get(oldItemPosition);
EntityOperation a2 = next.get(newItemPosition);
return a1.id.equals(a2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
EntityOperation a1 = prev.get(oldItemPosition);
EntityOperation a2 = next.get(newItemPosition);
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
return filtered.get(position).id;
}
@Override
public int getItemCount() {
return filtered.size();
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new ViewHolder(LayoutInflater.from(context).inflate(R.layout.item_operation, parent, false));
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
EntityOperation operation = filtered.get(position);
holder.bindTo(operation);
holder.wire();
}
}