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;fp=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Ftransaction_list%2FTransactionListViewModel.java;h=0000000000000000000000000000000000000000;hp=f994ec7a03097475b643ebf78fa846b87d10bc26;hb=5bba2c06a81c87327fdcf3f2a85c3206d932c2f9;hpb=d080698efeba76aab6ef6b5b9d182990749509a7 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 deleted file mode 100644 index f994ec7a..00000000 --- a/app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListViewModel.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * 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. - * - * 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 MoLe. If not, see . - */ - -package net.ktnx.mobileledger.ui.transaction_list; - -import android.os.AsyncTask; - -import androidx.lifecycle.ViewModel; - -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; - -public class TransactionListViewModel extends ViewModel { - public static ObservableValue updating = new ObservableValue<>(); - public static ObservableValue updateError = new ObservableValue<>(); - - public static void scheduleTransactionListReload() { - String filter = Data.accountFilter.getValue(); - AsyncTask task = new UTT(); - task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, filter); - } - public static TransactionListItem getTransactionListItem(int position) { - try(LockHolder lh = Data.transactions.lockForReading()) { - if (position >= Data.transactions.size()) return null; - return Data.transactions.get(position); - } - } - private static class UTT extends UpdateTransactionsTask { - @Override - protected void onPostExecute(String error) { - super.onPostExecute(error); - if (error != null) updateError.set(error); - } - } -}