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

312 lines
11 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
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-13 06:59:05 +00:00
*/
import android.content.Context;
2018-12-01 13:09:27 +00:00
import android.content.Intent;
import android.content.SharedPreferences;
2018-08-21 16:29:23 +00:00
import android.os.Bundle;
2018-08-13 06:59:05 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
2019-05-11 19:04:27 +00:00
import android.widget.ImageView;
2018-08-13 06:59:05 +00:00
import android.widget.TextView;
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;
2019-03-15 13:54:25 +00:00
import androidx.preference.PreferenceManager;
2018-08-13 06:59:05 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
import org.json.JSONArray;
import org.json.JSONException;
import java.util.ArrayList;
import java.util.List;
2018-08-13 06:59:05 +00:00
public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.ViewHolder> {
private Context context;
2018-12-24 13:41:49 +00:00
private LayoutInflater inflater;
2018-08-21 16:29:23 +00:00
private LifecycleOwner owner;
2018-08-13 06:59:05 +00:00
private boolean debug;
2019-03-15 11:53:22 +00:00
private List<TupleOperationEx> items = new ArrayList<>();
2018-08-13 06:59:05 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
2019-03-15 11:53:22 +00:00
private View view;
2019-05-11 19:04:27 +00:00
private ImageView ivState;
private TextView tvFolder;
private TextView tvOperation;
2018-12-01 14:13:57 +00:00
private TextView tvTime;
private TextView tvError;
2018-08-13 06:59:05 +00:00
ViewHolder(View itemView) {
super(itemView);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2019-05-11 19:04:27 +00:00
ivState = itemView.findViewById(R.id.ivState);
tvFolder = itemView.findViewById(R.id.tvFolder);
tvOperation = itemView.findViewById(R.id.tvOperation);
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() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(this);
if (BuildConfig.DEBUG || debug)
2019-03-15 11:53:22 +00:00
view.setOnLongClickListener(this);
2018-08-13 06:59:05 +00:00
}
private void unwire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(null);
if (BuildConfig.DEBUG || debug)
2019-03-15 11:53:22 +00:00
view.setOnLongClickListener(null);
2018-08-13 06:59:05 +00:00
}
private void bindTo(TupleOperationEx operation) {
2019-03-15 11:53:22 +00:00
view.setAlpha(operation.synchronize ? 1.0f : Helper.LOW_LIGHT);
2019-01-29 11:06:53 +00:00
StringBuilder sb = new StringBuilder();
sb.append(operation.name);
try {
JSONArray jarray = new JSONArray(operation.args);
if (jarray.length() > 0)
sb.append(' ').append(operation.args);
} catch (JSONException ex) {
sb.append(' ').append(ex.toString());
}
2019-02-11 14:59:41 +00:00
String folderName =
(operation.accountName == null ? "" : operation.accountName + "/") + operation.folderName;
2019-05-11 19:04:27 +00:00
ivState.setVisibility(operation.state == null ? View.INVISIBLE : View.VISIBLE);
2019-02-11 14:59:41 +00:00
tvFolder.setText(folderName);
tvOperation.setText(sb.toString());
tvTime.setText(Helper.getRelativeTimeSpanString(context, 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;
2019-03-15 11:53:22 +00:00
TupleOperationEx operation = items.get(pos);
2019-06-27 07:20:29 +00:00
if (operation == null || !operation.synchronize)
return;
if (operation.message == null) {
Bundle args = new Bundle();
args.putLong("id", operation.folder);
new SimpleTask<EntityFolder>() {
@Override
2018-12-31 07:03:48 +00:00
protected EntityFolder onExecute(Context context, Bundle args) {
long id = args.getLong("id");
return DB.getInstance(context).folder().getFolder(id);
}
@Override
2018-12-31 07:03:48 +00:00
protected void onExecuted(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));
}
2018-12-11 10:31:31 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
2019-01-12 11:48:00 +00:00
}.execute(context, owner, args, "operation:open:folder");
} else {
Bundle args = new Bundle();
args.putLong("id", operation.message);
new SimpleTask<EntityMessage>() {
@Override
2018-12-31 07:03:48 +00:00
protected EntityMessage onExecute(Context context, Bundle args) {
long id = args.getLong("id");
return DB.getInstance(context).message().getMessage(id);
}
@Override
2018-12-31 07:03:48 +00:00
protected void onExecuted(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)
2019-02-05 08:15:05 +00:00
.putExtra("id", message.id)
.putExtra("found", false));
}
2018-12-11 10:31:31 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
2019-01-12 11:48:00 +00:00
}.execute(context, owner, args, "operation:open:message");
}
2018-12-01 13:09:27 +00:00
}
@Override
public boolean onLongClick(View v) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return false;
2019-03-15 11:53:22 +00:00
TupleOperationEx operation = items.get(pos);
if (operation == null)
return false;
Bundle args = new Bundle();
args.putLong("id", operation.id);
args.putLong("folder", operation.folder);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
long folder = args.getLong("folder");
DB db = DB.getInstance(context);
db.operation().deleteOperation(id);
db.folder().setFolderError(folder, null);
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
}.execute(context, owner, args, "operation:delete");
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-12-24 13:41:49 +00:00
this.inflater = LayoutInflater.from(context);
2018-08-21 16:29:23 +00:00
this.owner = owner;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
this.debug = prefs.getBoolean("debug", false);
2018-08-13 06:59:05 +00:00
setHasStableIds(true);
}
public void set(@NonNull List<TupleOperationEx> operations) {
2018-12-24 12:27:45 +00:00
Log.i("Set operations=" + operations.size());
2018-08-13 06:59:05 +00:00
2019-03-15 11:53:22 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, operations), false);
2018-08-13 06:59:05 +00:00
2019-03-15 11:53:22 +00:00
items = operations;
2018-08-13 06:59:05 +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-13 06:59:05 +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-13 06:59:05 +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-13 06:59:05 +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-13 06:59:05 +00:00
}
});
diff.dispatchUpdatesTo(this);
2018-08-13 06:59:05 +00:00
}
2019-02-10 18:02:55 +00:00
private class DiffCallback extends DiffUtil.Callback {
2019-03-15 11:53:22 +00:00
private List<TupleOperationEx> prev = new ArrayList<>();
private List<TupleOperationEx> next = new ArrayList<>();
2018-08-13 06:59:05 +00:00
2019-02-10 18:02:55 +00:00
DiffCallback(List<TupleOperationEx> prev, List<TupleOperationEx> next) {
2019-03-15 11:53:22 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
2018-08-13 06:59:05 +00:00
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
TupleOperationEx a1 = prev.get(oldItemPosition);
TupleOperationEx a2 = next.get(newItemPosition);
2018-08-13 06:59:05 +00:00
return a1.id.equals(a2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
TupleOperationEx a1 = prev.get(oldItemPosition);
TupleOperationEx a2 = next.get(newItemPosition);
2018-08-13 06:59:05 +00:00
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
2019-03-15 11:53:22 +00:00
return items.get(position).id;
2018-08-13 06:59:05 +00:00
}
@Override
public int getItemCount() {
2019-03-15 11:53:22 +00:00
return items.size();
2018-08-13 06:59:05 +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_operation, parent, false));
2018-08-13 06:59:05 +00:00
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
2019-03-15 11:53:22 +00:00
TupleOperationEx operation = items.get(position);
2018-08-13 06:59:05 +00:00
holder.bindTo(operation);
holder.wire();
}
}