X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Ftransaction_list%2FTransactionListAdapter.java;h=67a4922b175be66ffac07f41fd0e8b81dfd651a2;hb=5df10dc0b58df4d4be4e9ab34f1e0f477ca46766;hp=6961f97781e3cc2b23be53a39948e5439cd311cb;hpb=18bc95ab692b0073bd1f2766850e8fc0841b8a9d;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java index 6961f977..67a4922b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Damyan Ivanov. + * Copyright © 2021 Damyan Ivanov. * This file is part of MoLe. * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by @@ -17,6 +17,7 @@ package net.ktnx.mobileledger.ui.transaction_list; +import android.app.Activity; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.graphics.Typeface; @@ -24,15 +25,16 @@ import android.os.AsyncTask; import android.text.Spannable; import android.text.SpannableString; import android.text.style.StyleSpan; -import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; +import androidx.annotation.ColorInt; import androidx.annotation.NonNull; -import androidx.appcompat.widget.AppCompatTextView; +import androidx.recyclerview.widget.AsyncListDiffer; +import androidx.recyclerview.widget.DiffUtil; import androidx.recyclerview.widget.RecyclerView; import net.ktnx.mobileledger.App; @@ -41,19 +43,74 @@ import net.ktnx.mobileledger.model.Data; import net.ktnx.mobileledger.model.LedgerTransaction; import net.ktnx.mobileledger.model.LedgerTransactionAccount; import net.ktnx.mobileledger.model.TransactionListItem; +import net.ktnx.mobileledger.ui.MainModel; import net.ktnx.mobileledger.utils.Colors; import net.ktnx.mobileledger.utils.Globals; +import net.ktnx.mobileledger.utils.Logger; +import net.ktnx.mobileledger.utils.Misc; +import net.ktnx.mobileledger.utils.SimpleDate; import java.text.DateFormat; -import java.util.Date; import java.util.GregorianCalendar; +import java.util.List; +import java.util.Locale; import java.util.TimeZone; -import static net.ktnx.mobileledger.utils.DimensionUtils.dp2px; - public class TransactionListAdapter extends RecyclerView.Adapter { + private final MainModel model; + private final AsyncListDiffer listDiffer; + public TransactionListAdapter(MainModel model) { + super(); + this.model = model; + + listDiffer = new AsyncListDiffer<>(this, new DiffUtil.ItemCallback() { + @Override + public boolean areItemsTheSame(@NonNull TransactionListItem oldItem, + @NonNull TransactionListItem newItem) { + if (oldItem.getType() != newItem.getType()) + return false; + switch (oldItem.getType()) { + case DELIMITER: + return (oldItem.getDate() + .equals(newItem.getDate())); + case TRANSACTION: + return oldItem.getTransaction() + .getLedgerId() == newItem.getTransaction() + .getLedgerId(); + case HEADER: + return true; // there can be only one header + default: + throw new IllegalStateException( + String.format(Locale.US, "Unexpected transaction item type %s", + oldItem.getType())); + } + } + @Override + public boolean areContentsTheSame(@NonNull TransactionListItem oldItem, + @NonNull TransactionListItem newItem) { + switch (oldItem.getType()) { + case DELIMITER: + // Delimiters items are "same" for same dates and the contents are the date + return true; + case TRANSACTION: + return oldItem.getTransaction() + .equals(newItem.getTransaction()); + case HEADER: + // headers don't differ in their contents. they observe the last update + // date and react to its changes + return true; + default: + throw new IllegalStateException( + String.format(Locale.US, "Unexpected transaction item type %s", + oldItem.getType())); + + } + } + }); + } public void onBindViewHolder(@NonNull TransactionRowHolder holder, int position) { - TransactionListItem item = TransactionListViewModel.getTransactionListItem(position); + TransactionListItem item = listDiffer.getCurrentList() + .get(position); // in a race when transaction value is reduced, but the model hasn't been notified yet // the view will disappear when the notifications reaches the model, so by simply omitting @@ -62,10 +119,11 @@ public class TransactionListAdapter extends RecyclerView.Adapter newList) { + Logger.debug("transactions", + String.format(Locale.US, "Got new transaction list (%d items)", newList.size())); + listDiffer.submitList(newList); } enum LoaderStep {HEAD, ACCOUNTS, DONE} @@ -133,12 +199,11 @@ public class TransactionListAdapter extends RecyclerView.Adapter