]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/transaction_list/TransactionListFragment.java
fab is guaranteed to have a value
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / transaction_list / TransactionListFragment.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger 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  * Mobile-Ledger 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 Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.transaction_list;
19
20 import android.arch.lifecycle.ViewModelProviders;
21 import android.content.Context;
22 import android.database.MatrixCursor;
23 import android.os.Bundle;
24 import android.support.annotation.NonNull;
25 import android.support.annotation.Nullable;
26 import android.support.design.widget.FloatingActionButton;
27 import android.support.v7.widget.LinearLayoutManager;
28 import android.support.v7.widget.RecyclerView;
29 import android.util.Log;
30 import android.view.LayoutInflater;
31 import android.view.Menu;
32 import android.view.MenuInflater;
33 import android.view.MenuItem;
34 import android.view.View;
35 import android.view.ViewGroup;
36 import android.view.inputmethod.InputMethodManager;
37 import android.widget.AdapterView;
38 import android.widget.AutoCompleteTextView;
39
40 import net.ktnx.mobileledger.R;
41 import net.ktnx.mobileledger.model.Data;
42 import net.ktnx.mobileledger.ui.MobileLedgerListFragment;
43 import net.ktnx.mobileledger.ui.activity.MainActivity;
44 import net.ktnx.mobileledger.utils.Globals;
45 import net.ktnx.mobileledger.utils.MLDB;
46
47 import java.util.Observable;
48 import java.util.Observer;
49
50 import static android.content.Context.INPUT_METHOD_SERVICE;
51
52 public class TransactionListFragment extends MobileLedgerListFragment {
53     public static final String BUNDLE_KEY_FILTER_ACCOUNT_NAME = "filter_account_name";
54     private String mShowOnlyAccountName;
55     private MenuItem menuTransactionListFilter;
56     private View vAccountFilter;
57     private AutoCompleteTextView accNameFilter;
58     private Observer backgroundTaskCountObserver;
59     private static void update(Observable o, Object arg) {
60     }
61     @Override
62     public void onDestroy() {
63         if (backgroundTaskCountObserver != null) {
64             Log.d("rtl", "destroying background task count observer");
65             Data.backgroundTaskCount.deleteObserver(backgroundTaskCountObserver);
66         }
67         super.onDestroy();
68     }
69     public void setShowOnlyAccountName(String mShowOnlyAccountName) {
70         this.mShowOnlyAccountName = mShowOnlyAccountName;
71         if (modelAdapter != null) {
72             modelAdapter.setBoldAccountName(mShowOnlyAccountName);
73         }
74         if (accNameFilter != null) {
75             accNameFilter.setText(mShowOnlyAccountName, false);
76         }
77         if (vAccountFilter != null) {
78             vAccountFilter.setVisibility(
79                     ((mShowOnlyAccountName != null) && !mShowOnlyAccountName.isEmpty())
80                     ? View.VISIBLE : View.GONE);
81         }
82     }
83     @Override
84     public void setArguments(@Nullable Bundle args) {
85         super.setArguments(args);
86         mShowOnlyAccountName = args.getString(BUNDLE_KEY_FILTER_ACCOUNT_NAME);
87     }
88     @Override
89     public void onCreate(@Nullable Bundle savedInstanceState) {
90         super.onCreate(savedInstanceState);
91         setHasOptionsMenu(true);
92         if (backgroundTaskCountObserver == null) {
93             Log.d("rtl", "creating background task count observer");
94             Data.backgroundTaskCount.addObserver(backgroundTaskCountObserver = new Observer() {
95                 @Override
96                 public void update(Observable o, Object arg) {
97                     mActivity.runOnUiThread(() -> {
98                         int cnt = Data.backgroundTaskCount.get();
99                         Log.d("trl", String.format("background task count changed to %d", cnt));
100                         swiper.setRefreshing(cnt > 0);
101                     });
102                 }
103             });
104         }
105     }
106     @Override
107     public void onAttach(Context context) {
108         super.onAttach(context);
109         mActivity = (MainActivity) context;
110     }
111     @Nullable
112     @Override
113     public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
114                              @Nullable Bundle savedInstanceState) {
115         return inflater.inflate(R.layout.transaction_list_fragment, container, false);
116     }
117
118     @Override
119     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
120         Log.d("flow", "TransactionListFragment.onActivityCreated called");
121         super.onActivityCreated(savedInstanceState);
122
123         mActivity.markDrawerItemCurrent(R.id.nav_latest_transactions);
124
125         swiper = mActivity.findViewById(R.id.transaction_swipe);
126         if (swiper == null) throw new RuntimeException("Can't get hold on the swipe layout");
127         root = mActivity.findViewById(R.id.transaction_root);
128         if (root == null)
129             throw new RuntimeException("Can't get hold on the transaction value view");
130         model = ViewModelProviders.of(this).get(TransactionListViewModel.class);
131         modelAdapter = new TransactionListAdapter();
132
133         modelAdapter.setBoldAccountName(mShowOnlyAccountName);
134
135         FloatingActionButton fab = mActivity.findViewById(R.id.btn_add_transaction);
136
137         RecyclerView root = mActivity.findViewById(R.id.transaction_root);
138         root.setAdapter(modelAdapter);
139
140         fab.show();
141         root.addOnScrollListener(new RecyclerView.OnScrollListener() {
142             @Override
143             public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
144                 if (dy < 0) fab.show();
145                 if (dy > 0) fab.hide();
146             }
147         });
148
149         LinearLayoutManager llm = new LinearLayoutManager(mActivity);
150
151         llm.setOrientation(LinearLayoutManager.VERTICAL);
152         root.setLayoutManager(llm);
153
154         swiper.setOnRefreshListener(() -> {
155             Log.d("ui", "refreshing transactions via swipe");
156             mActivity.scheduleTransactionListRetrieval();
157         });
158
159         swiper.setColorSchemeResources(R.color.colorPrimary, R.color.colorAccent);
160
161         vAccountFilter = mActivity.findViewById(R.id.transaction_list_account_name_filter);
162         accNameFilter = mActivity.findViewById(R.id.transaction_filter_account_name);
163
164         TransactionListFragment me = this;
165         MLDB.hook_autocompletion_adapter(mActivity, accNameFilter, "accounts", "name");
166         accNameFilter.setOnItemClickListener(new AdapterView.OnItemClickListener() {
167             @Override
168             public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
169                 Log.d("tmp", "direct onItemClick");
170                 ((TransactionListViewModel) model).scheduleTransactionListReload(mActivity);
171                 MatrixCursor mc = (MatrixCursor) parent.getItemAtPosition(position);
172                 modelAdapter.setBoldAccountName(mc.getString(1));
173                 modelAdapter.notifyDataSetChanged();
174                 Globals.hideSoftKeyboard(mActivity);
175             }
176         });
177
178         if (mShowOnlyAccountName != null) {
179             accNameFilter.setText(mShowOnlyAccountName, false);
180             onShowFilterClick(null);
181             Log.d("flow", String.format("Account filter set to '%s'", mShowOnlyAccountName));
182         }
183
184         TransactionListViewModel.scheduleTransactionListReload(mActivity);
185         TransactionListViewModel.updating.addObserver(new Observer() {
186             @Override
187             public void update(Observable o, Object arg) {
188                 swiper.setRefreshing(TransactionListViewModel.updating.get());
189             }
190         });
191
192         Data.transactions.addObserver(new Observer() {
193             @Override
194             public void update(Observable o, Object arg) {
195                 mActivity.runOnUiThread(() -> modelAdapter.notifyDataSetChanged());
196             }
197         });
198
199     }
200     @Override
201     public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
202         inflater.inflate(R.menu.transaction_list, menu);
203
204         menuTransactionListFilter = menu.findItem(R.id.menu_transaction_list_filter);
205         if ((menuTransactionListFilter == null)) throw new AssertionError();
206
207         if (mShowOnlyAccountName != null) {
208             menuTransactionListFilter.setVisible(false);
209         }
210
211         super.onCreateOptionsMenu(menu, inflater);
212     }
213
214     public void onClearAccountNameClick(View view) {
215         vAccountFilter.setVisibility(View.GONE);
216         if (menuTransactionListFilter != null) menuTransactionListFilter.setVisible(true);
217         accNameFilter.setText(null);
218         mShowOnlyAccountName = null;
219         modelAdapter.resetBoldAccountName();
220         TransactionListViewModel.scheduleTransactionListReload(mActivity);
221         Globals.hideSoftKeyboard(mActivity);
222     }
223     public void onShowFilterClick(MenuItem menuItem) {
224         vAccountFilter.setVisibility(View.VISIBLE);
225         if (menuTransactionListFilter != null) menuTransactionListFilter.setVisible(false);
226         if (menuItem != null) {
227             accNameFilter.requestFocus();
228             InputMethodManager imm =
229                     (InputMethodManager) mActivity.getSystemService(INPUT_METHOD_SERVICE);
230             imm.showSoftInput(accNameFilter, 0);
231         }
232     }
233 }