]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/AccountListItem.java
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / AccountListItem.java
1 /*
2  * Copyright © 2024 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.model;
19
20 import androidx.annotation.NonNull;
21 import androidx.lifecycle.LiveData;
22
23 import org.jetbrains.annotations.NotNull;
24
25 public abstract class AccountListItem {
26     private AccountListItem() {}
27     public abstract boolean sameContent(AccountListItem other);
28     @NonNull
29     public Type getType() {
30         if (this instanceof Account)
31             return Type.ACCOUNT;
32         else if (this instanceof Header)
33             return Type.HEADER;
34         else
35             throw new RuntimeException("Unsupported sub-class " + this);
36     }
37     public boolean isAccount() {
38         return this instanceof Account;
39     }
40     public Account toAccount() {
41         assert isAccount();
42         return ((Account) this);
43     }
44     public boolean isHeader() {
45         return this instanceof Header;
46     }
47     public Header toHeader() {
48         assert isHeader();
49         return ((Header) this);
50     }
51     public enum Type {ACCOUNT, HEADER}
52
53     public static class Account extends AccountListItem {
54         private final LedgerAccount account;
55         public Account(@NotNull LedgerAccount account) {
56             this.account = account;
57         }
58         @Override
59         public boolean sameContent(AccountListItem other) {
60             if (!(other instanceof Account))
61                 return false;
62             return ((Account) other).account.hasSubAccounts() == account.hasSubAccounts() &&
63                    ((Account) other).account.amountsExpanded() == account.amountsExpanded() &&
64                    ((Account) other).account.isExpanded() == account.isExpanded() &&
65                    ((Account) other).account.getLevel() == account.getLevel() &&
66                    ((Account) other).account.getAmountsString()
67                                             .equals(account.getAmountsString());
68         }
69         @NotNull
70         public LedgerAccount getAccount() {
71             return account;
72         }
73         public boolean allAmountsAreZero() {
74             return account.allAmountsAreZero();
75         }
76     }
77
78     public static class Header extends AccountListItem {
79         private final LiveData<String> text;
80         public Header(@NonNull LiveData<String> text) {
81             this.text = text;
82         }
83         public LiveData<String> getText() {
84             return text;
85         }
86         @Override
87         public boolean sameContent(AccountListItem other) {
88             return true;
89         }
90     }
91 }