]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryAdapter.java
migrate to AndroidX
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / account_summary / AccountSummaryAdapter.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.account_summary;
19
20 import android.content.Context;
21 import android.content.res.Resources;
22 import android.graphics.Typeface;
23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.widget.CheckBox;
27 import android.widget.LinearLayout;
28 import android.widget.TextView;
29
30 import net.ktnx.mobileledger.R;
31 import net.ktnx.mobileledger.model.Data;
32 import net.ktnx.mobileledger.model.LedgerAccount;
33 import net.ktnx.mobileledger.utils.Colors;
34
35 import java.util.List;
36
37 import androidx.annotation.NonNull;
38 import androidx.recyclerview.widget.RecyclerView;
39
40 class AccountSummaryAdapter extends RecyclerView.Adapter<AccountSummaryAdapter.LedgerRowHolder> {
41     private boolean selectionActive;
42
43     AccountSummaryAdapter() {
44         this.selectionActive = false;
45     }
46
47     public void onBindViewHolder(@NonNull LedgerRowHolder holder, int position) {
48         List<LedgerAccount> accounts = Data.accounts.get();
49         if (position < accounts.size()) {
50             LedgerAccount acc = accounts.get(position);
51             Context ctx = holder.row.getContext();
52             Resources rm = ctx.getResources();
53
54             holder.row.setVisibility(View.VISIBLE);
55             holder.vTrailer.setVisibility(View.GONE);
56             holder.tvAccountName.setText(acc.getShortName());
57             holder.tvAccountName.setPadding(
58                     acc.getLevel() * rm.getDimensionPixelSize(R.dimen.activity_horizontal_margin) /
59                     2, 0, 0, 0);
60             holder.tvAccountAmounts.setText(acc.getAmountsString());
61
62             if (acc.isHidden()) {
63                 holder.tvAccountName.setTypeface(null, Typeface.ITALIC);
64                 holder.tvAccountAmounts.setTypeface(null, Typeface.ITALIC);
65             }
66             else {
67                 holder.tvAccountName.setTypeface(null, Typeface.NORMAL);
68                 holder.tvAccountAmounts.setTypeface(null, Typeface.NORMAL);
69             }
70
71             if (position % 2 == 0) {
72                 holder.row.setBackgroundColor(Colors.tableRowDarkBG);
73             }
74             else {
75                 holder.row.setBackgroundColor(Colors.tableRowLightBG);
76             }
77
78             holder.selectionCb.setVisibility(selectionActive ? View.VISIBLE : View.GONE);
79             holder.selectionCb.setChecked(!acc.isHiddenToBe());
80
81             holder.row.setTag(R.id.POS, position);
82         }
83         else {
84             holder.vTrailer.setVisibility(View.VISIBLE);
85             holder.row.setVisibility(View.GONE);
86         }
87     }
88
89     @NonNull
90     @Override
91     public LedgerRowHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
92         View row = LayoutInflater.from(parent.getContext())
93                 .inflate(R.layout.account_summary_row, parent, false);
94         return new LedgerRowHolder(row);
95     }
96
97     @Override
98     public int getItemCount() {
99         return Data.accounts.get().size() + 1;
100     }
101     public void startSelection() {
102         for (LedgerAccount acc : Data.accounts.get()) acc.setHiddenToBe(acc.isHidden());
103         this.selectionActive = true;
104         notifyDataSetChanged();
105     }
106
107     public void stopSelection() {
108         this.selectionActive = false;
109         notifyDataSetChanged();
110     }
111
112     public boolean isSelectionActive() {
113         return selectionActive;
114     }
115
116     public void selectItem(int position) {
117         LedgerAccount acc = Data.accounts.get().get(position);
118         acc.toggleHiddenToBe();
119         toggleChildrenOf(acc, acc.isHiddenToBe(), position);
120         notifyItemChanged(position);
121     }
122     void toggleChildrenOf(LedgerAccount parent, boolean hiddenToBe, int parentPosition) {
123         int i = parentPosition + 1;
124         for (LedgerAccount acc : Data.accounts.get()) {
125             if (acc.getName().startsWith(parent.getName() + ":")) {
126                 acc.setHiddenToBe(hiddenToBe);
127                 notifyItemChanged(i);
128                 toggleChildrenOf(acc, hiddenToBe, i);
129                 i++;
130             }
131         }
132     }
133
134     class LedgerRowHolder extends RecyclerView.ViewHolder {
135         CheckBox selectionCb;
136         TextView tvAccountName, tvAccountAmounts;
137         LinearLayout row;
138         View vTrailer;
139         public LedgerRowHolder(@NonNull View itemView) {
140             super(itemView);
141             this.row = itemView.findViewById(R.id.account_summary_row);
142             this.tvAccountName = itemView.findViewById(R.id.account_row_acc_name);
143             this.tvAccountAmounts = itemView.findViewById(R.id.account_row_acc_amounts);
144             this.selectionCb = itemView.findViewById(R.id.account_row_check);
145             this.vTrailer = itemView.findViewById(R.id.account_summary_trailer);
146         }
147     }
148 }