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

286 lines
9.9 KiB
Java
Raw Normal View History

2019-01-06 09:23:57 +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/>.
2020-01-05 17:32:53 +00:00
Copyright 2018-2020 by Marcel Bokhorst (M66B)
2019-01-06 09:23:57 +00:00
*/
import android.content.Context;
2020-01-10 18:51:07 +00:00
import android.content.Intent;
import android.graphics.Bitmap;
2019-01-06 11:13:35 +00:00
import android.os.Bundle;
import android.text.TextUtils;
2019-01-06 09:23:57 +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.fragment.app.Fragment;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleObserver;
2019-01-06 09:23:57 +00:00
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.OnLifecycleEvent;
2020-01-10 18:51:07 +00:00
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
2019-01-06 09:23:57 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2019-01-06 09:23:57 +00:00
public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder> {
private Fragment parentFragment;
2019-01-06 09:23:57 +00:00
private Context context;
private LayoutInflater inflater;
private LifecycleOwner owner;
2019-03-15 11:53:22 +00:00
private List<EntityAttachment> items = new ArrayList<>();
2019-01-06 09:23:57 +00:00
2020-01-10 18:51:07 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
2019-03-19 10:57:34 +00:00
private View view;
2019-05-13 18:54:02 +00:00
private ImageView ivImage;
private TextView tvCaption;
2019-01-06 09:23:57 +00:00
ViewHolder(View itemView) {
super(itemView);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2019-05-13 18:54:02 +00:00
ivImage = itemView.findViewById(R.id.ivImage);
tvCaption = itemView.findViewById(R.id.tvCaption);
2019-01-06 09:23:57 +00:00
}
2019-01-06 11:13:35 +00:00
private void wire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(this);
2020-01-10 18:51:07 +00:00
view.setOnLongClickListener(this);
2019-01-06 11:13:35 +00:00
}
private void unwire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(null);
2020-01-10 18:51:07 +00:00
view.setOnLongClickListener(null);
2019-01-06 11:13:35 +00:00
}
2019-01-06 09:23:57 +00:00
private void bindTo(EntityAttachment attachment) {
if (attachment.available) {
2019-10-23 16:26:23 +00:00
Bitmap bm = ImageHelper.decodeImage(attachment.getFile(context),
2019-05-03 15:39:32 +00:00
context.getResources().getDisplayMetrics().widthPixels);
2019-03-25 18:02:24 +00:00
if (bm == null)
2020-09-28 07:18:56 +00:00
ivImage.setImageResource(R.drawable.twotone_broken_image_24);
2019-03-25 18:47:28 +00:00
else
2019-05-13 18:54:02 +00:00
ivImage.setImageBitmap(bm);
2019-03-25 18:02:24 +00:00
} else
2019-05-13 18:54:02 +00:00
ivImage.setImageResource(attachment.progress == null
2020-09-28 07:18:56 +00:00
? R.drawable.twotone_image_24 : R.drawable.twotone_hourglass_empty_24);
2019-01-06 09:23:57 +00:00
2019-05-13 18:54:02 +00:00
tvCaption.setVisibility(TextUtils.isEmpty(attachment.name) ? View.GONE : View.VISIBLE);
tvCaption.setText(attachment.name);
2019-01-06 09:23:57 +00:00
}
2019-01-06 11:13:35 +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
EntityAttachment attachment = items.get(pos);
2020-01-08 08:06:30 +00:00
if (attachment.available)
2020-03-15 06:45:03 +00:00
Helper.share(context, attachment.getFile(context), attachment.getMimeType(), attachment.name);
2020-01-08 08:06:30 +00:00
else {
2019-01-06 11:13:35 +00:00
if (attachment.progress == null) {
Bundle args = new Bundle();
args.putLong("id", attachment.id);
args.putLong("message", attachment.message);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
2019-10-05 10:42:04 +00:00
long mid = args.getLong("message");
2019-01-06 11:13:35 +00:00
DB db = DB.getInstance(context);
try {
db.beginTransaction();
2019-10-05 10:42:04 +00:00
EntityMessage message = db.message().getMessage(mid);
if (message == null || message.uid == null)
return null;
2019-01-06 11:13:35 +00:00
2019-10-05 10:42:04 +00:00
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null || attachment.progress != null || attachment.available)
return null;
EntityOperation.queue(context, message, EntityOperation.ATTACHMENT, id);
2019-01-06 11:13:35 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2019-12-09 18:44:27 +00:00
ServiceSynchronize.eval(context, "attachment");
2019-12-07 19:32:58 +00:00
2019-01-06 11:13:35 +00:00
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
2019-12-06 07:50:46 +00:00
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
2019-01-06 11:13:35 +00:00
}
2019-01-12 13:15:15 +00:00
}.execute(context, owner, args, "image:fetch");
2019-01-06 11:13:35 +00:00
}
}
}
2020-01-10 18:51:07 +00:00
@Override
public boolean onLongClick(View v) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return false;
EntityAttachment attachment = items.get(pos);
if (!attachment.available)
return false;
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(FragmentMessages.ACTION_STORE_ATTACHMENT)
.putExtra("id", attachment.id)
.putExtra("name", Helper.sanitizeFilename(attachment.name))
.putExtra("type", attachment.getMimeType()));
return true;
}
2019-01-06 09:23:57 +00:00
}
AdapterImage(Fragment parentFragment) {
this.parentFragment = parentFragment;
this.context = parentFragment.getContext();
this.owner = parentFragment.getViewLifecycleOwner();
2019-01-06 09:23:57 +00:00
this.inflater = LayoutInflater.from(context);
2019-01-06 09:23:57 +00:00
setHasStableIds(true);
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
2019-12-07 16:02:42 +00:00
Log.d(AdapterImage.this + " parent destroyed");
AdapterImage.this.parentFragment = null;
}
});
2019-01-06 09:23:57 +00:00
}
public void set(@NonNull List<EntityAttachment> attachments) {
Log.i("Set images=" + attachments.size());
Collections.sort(attachments, new Comparator<EntityAttachment>() {
@Override
public int compare(EntityAttachment a1, EntityAttachment a2) {
return a1.sequence.compareTo(a2.sequence);
}
});
2019-03-15 11:53:22 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, attachments), false);
2019-01-06 09:23:57 +00:00
2019-03-15 11:53:22 +00:00
items = attachments;
2019-01-06 09:23:57 +00:00
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-01-06 09:23:57 +00:00
}
@Override
public void onRemoved(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Removed @" + position + " #" + count);
2019-01-06 09:23:57 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2019-12-07 16:02:42 +00:00
Log.d("Moved " + fromPosition + ">" + toPosition);
2019-01-06 09:23:57 +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-01-06 09:23:57 +00:00
}
});
diff.dispatchUpdatesTo(this);
}
2019-02-10 18:02:55 +00:00
private class DiffCallback extends DiffUtil.Callback {
2019-03-15 11:53:22 +00:00
private List<EntityAttachment> prev = new ArrayList<>();
private List<EntityAttachment> next = new ArrayList<>();
2019-01-06 09:23:57 +00:00
2019-02-10 18:02:55 +00:00
DiffCallback(List<EntityAttachment> prev, List<EntityAttachment> next) {
2019-03-15 11:53:22 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
2019-01-06 09:23:57 +00:00
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
return a1.id.equals(a2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
2019-03-15 11:53:22 +00:00
return items.get(position).id;
2019-01-06 09:23:57 +00:00
}
@Override
public int getItemCount() {
2019-03-15 11:53:22 +00:00
return items.size();
2019-01-06 09:23:57 +00:00
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new ViewHolder(inflater.inflate(R.layout.item_image, parent, false));
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
2019-01-06 11:13:35 +00:00
holder.unwire();
2019-03-15 11:53:22 +00:00
EntityAttachment attachment = items.get(position);
2019-01-06 09:23:57 +00:00
holder.bindTo(attachment);
2019-01-06 11:13:35 +00:00
holder.wire();
2019-01-06 09:23:57 +00:00
}
}