X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Faccount_summary%2FAccountSummaryViewModel.java;h=92b6b8d7ad97abc3feab9cb91b92571e797d68ce;hp=1afced05433820f0e565cabad3677ee522b97980;hb=83cac114e375728080194fb09758b49c50a8119b;hpb=ffbfe16379b73aaf0bc68b4251c2acb930a19d26 diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java index 1afced05..92b6b8d7 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java @@ -1,39 +1,26 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * 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.account_summary; -import android.arch.lifecycle.ViewModel; import android.content.Context; -import android.content.res.Resources; -import android.graphics.Typeface; -import android.os.Build; -import android.preference.PreferenceManager; -import android.support.annotation.NonNull; -import android.support.v7.widget.RecyclerView; +import android.os.AsyncTask; import android.util.Log; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.CheckBox; -import android.widget.LinearLayout; -import android.widget.TextView; -import net.ktnx.mobileledger.R; import net.ktnx.mobileledger.async.CommitAccountsTask; import net.ktnx.mobileledger.async.CommitAccountsTaskParams; import net.ktnx.mobileledger.async.UpdateAccountsTask; @@ -42,140 +29,42 @@ import net.ktnx.mobileledger.model.LedgerAccount; import java.util.ArrayList; -import static net.ktnx.mobileledger.ui.activity.SettingsActivity.PREF_KEY_SHOW_ONLY_STARRED_ACCOUNTS; +import androidx.lifecycle.ViewModel; -class AccountSummaryViewModel extends ViewModel { - void scheduleAccountListReload(Context context) { - boolean showingOnlyStarred = PreferenceManager.getDefaultSharedPreferences(context) - .getBoolean(PREF_KEY_SHOW_ONLY_STARRED_ACCOUNTS, false); +public class AccountSummaryViewModel extends ViewModel { + static void commitSelections(Context context) { + CAT task = new CAT(); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, + new CommitAccountsTaskParams(Data.accounts, Data.optShowOnlyStarred.get())); + } + static public void scheduleAccountListReload() { + if (Data.profile.get() == null) return; UAT task = new UAT(); - task.execute(showingOnlyStarred); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); } - static void commitSelections(Context context) { - boolean showingOnlyStarred = PreferenceManager.getDefaultSharedPreferences(context) - .getBoolean(PREF_KEY_SHOW_ONLY_STARRED_ACCOUNTS, false); - CAT task = new CAT(); - //noinspection unchecked - task.execute(new CommitAccountsTaskParams(Data.accounts.get(), showingOnlyStarred)); - } + private static class UAT extends UpdateAccountsTask { @Override protected void onPostExecute(ArrayList list) { super.onPostExecute(list); - if (list != null) Data.accounts.set(list); + if (list != null) { + Log.d("acc", "setting updated account list"); + Data.accounts.setList(list); + } } } + private static class CAT extends CommitAccountsTask { @Override protected void onPostExecute(ArrayList list) { super.onPostExecute(list); if (list != null) { Log.d("acc", "setting new account list"); - Data.accounts.set(list); + Data.accounts.setList(list); } } } } -class AccountSummaryAdapter extends RecyclerView.Adapter { - private boolean selectionActive; - - AccountSummaryAdapter() { - this.selectionActive = false; - } - - public void onBindViewHolder(@NonNull LedgerRowHolder holder, int position) { - LedgerAccount acc = Data.accounts.get().get(position); - Context ctx = holder.row.getContext(); - Resources rm = ctx.getResources(); - - holder.tvAccountName.setText(acc.getShortName()); - holder.tvAccountName.setPadding( - acc.getLevel() * rm.getDimensionPixelSize(R.dimen.activity_horizontal_margin) / 2, - 0, 0, 0); - holder.tvAccountAmounts.setText(acc.getAmountsString()); - - if (acc.isHidden()) { - holder.tvAccountName.setTypeface(null, Typeface.ITALIC); - holder.tvAccountAmounts.setTypeface(null, Typeface.ITALIC); - } - else { - holder.tvAccountName.setTypeface(null, Typeface.NORMAL); - holder.tvAccountAmounts.setTypeface(null, Typeface.NORMAL); - } - - if (position % 2 == 0) { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) holder.row - .setBackgroundColor(rm.getColor(R.color.table_row_even_bg, ctx.getTheme())); - else holder.row.setBackgroundColor(rm.getColor(R.color.table_row_even_bg)); - } - else { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) holder.row - .setBackgroundColor(rm.getColor(R.color.drawer_background, ctx.getTheme())); - else holder.row.setBackgroundColor(rm.getColor(R.color.drawer_background)); - } - - holder.selectionCb.setVisibility(selectionActive ? View.VISIBLE : View.GONE); - holder.selectionCb.setChecked(!acc.isHiddenToBe()); - - holder.row.setTag(R.id.POS, position); - } - - @NonNull - @Override - public LedgerRowHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { - View row = LayoutInflater.from(parent.getContext()) - .inflate(R.layout.account_summary_row, parent, false); - return new LedgerRowHolder(row); - } - - @Override - public int getItemCount() { - return Data.accounts.get().size(); - } - public void startSelection() { - for (LedgerAccount acc : Data.accounts.get()) acc.setHiddenToBe(acc.isHidden()); - this.selectionActive = true; - notifyDataSetChanged(); - } - - public void stopSelection() { - this.selectionActive = false; - notifyDataSetChanged(); - } - - public boolean isSelectionActive() { - return selectionActive; - } - - public void selectItem(int position) { - LedgerAccount acc = Data.accounts.get().get(position); - acc.toggleHiddenToBe(); - toggleChildrenOf(acc, acc.isHiddenToBe()); - notifyDataSetChanged(); - } - void toggleChildrenOf(LedgerAccount parent, boolean hiddenToBe) { - for (LedgerAccount acc : Data.accounts.get()) { - String acc_parent = acc.getParentName(); - if ((acc_parent != null) && acc.getParentName().equals(parent.getName())) { - acc.setHiddenToBe(hiddenToBe); - toggleChildrenOf(acc, hiddenToBe); - } - } - } - - class LedgerRowHolder extends RecyclerView.ViewHolder { - CheckBox selectionCb; - TextView tvAccountName, tvAccountAmounts; - LinearLayout row; - public LedgerRowHolder(@NonNull View itemView) { - super(itemView); - this.row = (LinearLayout) itemView; - this.tvAccountName = itemView.findViewById(R.id.account_row_acc_name); - this.tvAccountAmounts = itemView.findViewById(R.id.account_row_acc_amounts); - this.selectionCb = itemView.findViewById(R.id.account_row_check); - } - } -} \ No newline at end of file