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.
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.
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/>.
18 package net.ktnx.mobileledger.ui.account_summary;
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;
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;
35 import java.util.List;
37 import androidx.annotation.NonNull;
38 import androidx.recyclerview.widget.RecyclerView;
40 class AccountSummaryAdapter extends RecyclerView.Adapter<AccountSummaryAdapter.LedgerRowHolder> {
41 private boolean selectionActive;
43 AccountSummaryAdapter() {
44 this.selectionActive = false;
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();
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) /
60 holder.tvAccountAmounts.setText(acc.getAmountsString());
63 holder.tvAccountName.setTypeface(null, Typeface.ITALIC);
64 holder.tvAccountAmounts.setTypeface(null, Typeface.ITALIC);
67 holder.tvAccountName.setTypeface(null, Typeface.NORMAL);
68 holder.tvAccountAmounts.setTypeface(null, Typeface.NORMAL);
71 if (position % 2 == 0) {
72 holder.row.setBackgroundColor(Colors.tableRowDarkBG);
75 holder.row.setBackgroundColor(Colors.tableRowLightBG);
78 holder.selectionCb.setVisibility(selectionActive ? View.VISIBLE : View.GONE);
79 holder.selectionCb.setChecked(!acc.isHiddenToBe());
81 holder.row.setTag(R.id.POS, position);
84 holder.vTrailer.setVisibility(View.VISIBLE);
85 holder.row.setVisibility(View.GONE);
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);
98 public int getItemCount() {
99 return Data.accounts.get().size() + 1;
101 public void startSelection() {
102 for (LedgerAccount acc : Data.accounts.get()) acc.setHiddenToBe(acc.isHidden());
103 this.selectionActive = true;
104 notifyDataSetChanged();
107 public void stopSelection() {
108 this.selectionActive = false;
109 notifyDataSetChanged();
112 public boolean isSelectionActive() {
113 return selectionActive;
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);
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);
134 class LedgerRowHolder extends RecyclerView.ViewHolder {
135 CheckBox selectionCb;
136 TextView tvAccountName, tvAccountAmounts;
139 public LedgerRowHolder(@NonNull View 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);