X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Ftransaction_list%2FTransactionListViewModel.java;h=9e7f77c537b8c1e50fea52a3c9467c33160aa22a;hp=f2377c958022ed653a3158330877f5f197bb7d9a;hb=8fd287a2b36f1d28ee1c1ca67687abaab4e95f2f;hpb=7c2782d1ba2a27c6d9d2ee5e48ab723e63c27d12 diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java index f2377c95..9e7f77c5 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java @@ -1,58 +1,56 @@ /* - * Copyright © 2018 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * Copyright © 2019 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 * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe 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 terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.transaction_list; -import android.arch.lifecycle.ViewModel; -import android.content.Context; -import android.database.Cursor; -import android.database.sqlite.SQLiteDatabase; +import android.os.AsyncTask; -import net.ktnx.mobileledger.model.LedgerTransaction; -import net.ktnx.mobileledger.utils.MLDB; +import net.ktnx.mobileledger.async.UpdateTransactionsTask; +import net.ktnx.mobileledger.model.Data; +import net.ktnx.mobileledger.model.TransactionListItem; +import net.ktnx.mobileledger.utils.LockHolder; +import net.ktnx.mobileledger.utils.ObservableValue; -import java.util.ArrayList; -import java.util.List; +import androidx.lifecycle.ViewModel; public class TransactionListViewModel extends ViewModel { + public static ObservableValue updating = new ObservableValue<>(); + public static ObservableValue updateError = new ObservableValue<>(); - private List transactions; + public static void scheduleTransactionListReload() { + if (Data.profile.get() == null) return; - public List getTransactions(Context context) { - if (transactions == null) { - transactions = new ArrayList<>(); - reloadTransactions(context); + String filter = TransactionListFragment.accountFilter.get(); + AsyncTask task = new UTT(); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, filter); + } + public static TransactionListItem getTransactionListItem(int position) { + try(LockHolder lh = Data.transactions.lockForReading()) { + if (Data.transactions == null) return null; + if (position >= Data.transactions.size() + 1) return null; + if (position == Data.transactions.size()) return new TransactionListItem(); + return Data.transactions.get(position); } - - return transactions; } - public void reloadTransactions(Context context) { - ArrayList newList = new ArrayList<>(); - - String sql = "SELECT id FROM transactions ORDER BY date desc, id desc"; - - try (SQLiteDatabase db = MLDB.getReadableDatabase(context)) { - try (Cursor cursor = db.rawQuery(sql, null)) { - while (cursor.moveToNext()) { - newList.add(new LedgerTransaction(cursor.getInt(0))); - } - transactions = newList; - } + private static class UTT extends UpdateTransactionsTask { + @Override + protected void onPostExecute(String error) { + super.onPostExecute(error); + if (error != null) updateError.set(error); } - } }