]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryFragment.java
86f66d8d895647921391cc6105dc0b7ec4b0e74f
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / account_summary / AccountSummaryFragment.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.os.Bundle;
22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
25
26 import com.google.android.material.floatingactionbutton.FloatingActionButton;
27
28 import net.ktnx.mobileledger.R;
29 import net.ktnx.mobileledger.model.Data;
30 import net.ktnx.mobileledger.ui.MobileLedgerListFragment;
31 import net.ktnx.mobileledger.ui.activity.MainActivity;
32 import net.ktnx.mobileledger.utils.Colors;
33
34 import org.jetbrains.annotations.NotNull;
35
36 import androidx.annotation.NonNull;
37 import androidx.annotation.Nullable;
38 import androidx.recyclerview.widget.DividerItemDecoration;
39 import androidx.recyclerview.widget.LinearLayoutManager;
40 import androidx.recyclerview.widget.RecyclerView;
41
42 import static net.ktnx.mobileledger.utils.Logger.debug;
43
44 public class AccountSummaryFragment extends MobileLedgerListFragment {
45
46     public AccountSummaryAdapter modelAdapter;
47 /*
48     private MenuItem mShowOnlyStarred;
49     private Menu optMenu;
50 */
51     private FloatingActionButton fab;
52     @Override
53     public void onCreate(@Nullable Bundle savedInstanceState) {
54         super.onCreate(savedInstanceState);
55         debug("flow", "AccountSummaryFragment.onCreate()");
56         setHasOptionsMenu(true);
57
58         Data.backgroundTasksRunning.observe(this, this::onBackgroundTaskRunningChanged);
59     }
60     public void onAttach(@NotNull Context context) {
61         super.onAttach(context);
62         debug("flow", "AccountSummaryFragment.onAttach()");
63         mActivity = (MainActivity) context;
64     }
65     @Override
66     public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
67                              @Nullable Bundle savedInstanceState) {
68         debug("flow", "AccountSummaryFragment.onCreateView()");
69         return inflater.inflate(R.layout.account_summary_fragment, container, false);
70     }
71
72     @Override
73
74     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
75         debug("flow", "AccountSummaryFragment.onActivityCreated()");
76         super.onActivityCreated(savedInstanceState);
77
78         modelAdapter = new AccountSummaryAdapter();
79
80         mActivity.mAccountSummaryFragment = this;
81         root = mActivity.findViewById(R.id.account_root);
82         LinearLayoutManager llm = new LinearLayoutManager(mActivity);
83         llm.setOrientation(RecyclerView.VERTICAL);
84         root.setLayoutManager(llm);
85         root.setAdapter(modelAdapter);
86         DividerItemDecoration did = new DividerItemDecoration(mActivity, DividerItemDecoration.VERTICAL);
87         root.addItemDecoration(did);
88
89         fab = mActivity.findViewById(R.id.btn_add_transaction);
90
91 //        root.addOnItemTouchListener(new RecyclerItemListener(mActivity, root,
92 //                new RecyclerItemListener.RecyclerTouchListener() {
93 //                    @Override
94 //                    public void onClickItem(View v, int position) {
95 //                        debug("value", String.format("item %d clicked", position));
96 //                        if (modelAdapter.isSelectionActive()) {
97 //                            modelAdapter.selectItem(position);
98 //                        }
99 //                        else {
100 //                            List<LedgerAccount> accounts = Data.accounts.get();
101 //                            if (accounts != null) {
102 //                                LedgerAccount account = accounts.get(position);
103 //
104 //                                mActivity.showAccountTransactions(account);
105 //                            }
106 //                        }
107 //                    }
108 //
109 //                    @Override
110 //                    public void onLongClickItem(View v, int position) {
111 //                        debug("value", String.format("item %d long-clicked", position));
112 //                        modelAdapter.startSelection();
113 //                        if (optMenu != null) {
114 //                            optMenu.findItem(R.id.menu_acc_summary_cancel_selection)
115 //                                    .setVisible(true);
116 //                            optMenu.findItem(R.id.menu_acc_summary_confirm_selection)
117 //                                    .setVisible(true);
118 //                            optMenu.findItem(R.id.menu_acc_summary_only_starred).setVisible(false);
119 //                        }
120 //                        {
121 //                            if (fab != null) fab.hide();
122 //                        }
123 //                    }
124 //                }));
125
126         mActivity.fabShouldShow();
127
128         manageFabOnScroll();
129
130         swiper = mActivity.findViewById(R.id.account_swiper);
131         Colors.themeWatch.observe(this, this::themeChanged);
132         swiper.setOnRefreshListener(() -> {
133             debug("ui", "refreshing accounts via swipe");
134             mActivity.scheduleTransactionListRetrieval();
135         });
136
137         Data.accounts.addObserver(
138                 (o, arg) -> mActivity.runOnUiThread(() -> modelAdapter.notifyDataSetChanged()));
139     }
140 /*
141     void stopSelection() {
142         modelAdapter.stopSelection();
143         if (optMenu != null) {
144             optMenu.findItem(R.id.menu_acc_summary_cancel_selection).setVisible(false);
145             optMenu.findItem(R.id.menu_acc_summary_confirm_selection).setVisible(false);
146             optMenu.findItem(R.id.menu_acc_summary_only_starred).setVisible(true);
147         }
148         {
149             if (fab != null) fab.show();
150         }
151     }
152     public void onCancelAccSelection(MenuItem item) {
153         stopSelection();
154     }
155     public void onConfirmAccSelection(MenuItem item) {
156         AccountSummaryViewModel.commitSelections(mActivity);
157         stopSelection();
158     }
159     @Override
160     public void onCreateOptionsMenu(@NotNull Menu menu, @NotNull MenuInflater inflater) {
161         // Inflate the menu; this adds items to the action bar if it is present.
162         inflater.inflate(R.menu.account_summary, menu);
163         optMenu = menu;
164
165         mShowOnlyStarred = menu.findItem(R.id.menu_acc_summary_only_starred);
166         if (mShowOnlyStarred == null) throw new AssertionError();
167         MenuItem mCancelSelection = menu.findItem(R.id.menu_acc_summary_cancel_selection);
168         if (mCancelSelection == null) throw new AssertionError();
169         MenuItem mConfirmSelection = menu.findItem(R.id.menu_acc_summary_confirm_selection);
170         if (mConfirmSelection == null) throw new AssertionError();
171
172         Data.optShowOnlyStarred.addObserver((o, arg) -> {
173             boolean newValue = Data.optShowOnlyStarred.get();
174             debug("pref", String.format("pref change came (%s)", newValue ? "true" : "false"));
175             mShowOnlyStarred.setChecked(newValue);
176             update_account_table();
177         });
178
179         mShowOnlyStarred.setChecked(Data.optShowOnlyStarred.get());
180
181         debug("menu", "Accounts: onCreateOptionsMenu called");
182
183         mShowOnlyStarred.setOnMenuItemClickListener(item -> {
184             SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(mActivity);
185             SharedPreferences.Editor editor = pref.edit();
186             boolean flag = item.isChecked();
187             editor.putBoolean(PREF_KEY_SHOW_ONLY_STARRED_ACCOUNTS, !flag);
188             debug("pref",
189                     "Setting show only starred accounts pref to " + (flag ? "false" : "true"));
190             editor.apply();
191
192             return true;
193         });
194
195         mCancelSelection.setOnMenuItemClickListener(item -> {
196             stopSelection();
197             return true;
198         });
199
200         mConfirmSelection.setOnMenuItemClickListener(item -> {
201             AccountSummaryViewModel.commitSelections(mActivity);
202             stopSelection();
203
204             return true;
205         });
206     }
207 */
208 }