]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/MainActivity.java
add a 'more' button for entering profile edit mode
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / MainActivity.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.activity;
19
20 import android.content.Intent;
21 import android.content.pm.PackageInfo;
22 import android.content.res.ColorStateList;
23 import android.graphics.Color;
24 import android.os.AsyncTask;
25 import android.os.Build;
26 import android.os.Bundle;
27 import android.util.Log;
28 import android.view.View;
29 import android.view.ViewGroup;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
32 import android.widget.LinearLayout;
33 import android.widget.ProgressBar;
34 import android.widget.TextView;
35 import android.widget.Toast;
36
37 import com.google.android.material.floatingactionbutton.FloatingActionButton;
38
39 import net.ktnx.mobileledger.R;
40 import net.ktnx.mobileledger.async.RefreshDescriptionsTask;
41 import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
42 import net.ktnx.mobileledger.model.Data;
43 import net.ktnx.mobileledger.model.LedgerAccount;
44 import net.ktnx.mobileledger.model.MobileLedgerProfile;
45 import net.ktnx.mobileledger.ui.account_summary.AccountSummaryFragment;
46 import net.ktnx.mobileledger.ui.profiles.ProfileDetailFragment;
47 import net.ktnx.mobileledger.ui.profiles.ProfilesRecyclerViewAdapter;
48 import net.ktnx.mobileledger.ui.transaction_list.TransactionListFragment;
49 import net.ktnx.mobileledger.utils.Colors;
50 import net.ktnx.mobileledger.utils.MLDB;
51
52 import java.lang.ref.WeakReference;
53 import java.text.DateFormat;
54 import java.util.Date;
55 import java.util.Observable;
56 import java.util.Observer;
57
58 import androidx.appcompat.app.ActionBarDrawerToggle;
59 import androidx.appcompat.widget.Toolbar;
60 import androidx.core.view.GravityCompat;
61 import androidx.drawerlayout.widget.DrawerLayout;
62 import androidx.fragment.app.Fragment;
63 import androidx.fragment.app.FragmentManager;
64 import androidx.fragment.app.FragmentPagerAdapter;
65 import androidx.recyclerview.widget.LinearLayoutManager;
66 import androidx.recyclerview.widget.RecyclerView;
67 import androidx.viewpager.widget.ViewPager;
68
69 public class MainActivity extends CrashReportingActivity {
70     private static final String STATE_CURRENT_PAGE = "current_page";
71     private static final String BUNDLE_SAVED_STATE = "bundle_savedState";
72     DrawerLayout drawer;
73     private LinearLayout profileListContainer;
74     private View profileListHeadArrow, profileListHeadMore, profileListHeadCancel;
75     private FragmentManager fragmentManager;
76     private TextView tvLastUpdate;
77     private RetrieveTransactionsTask retrieveTransactionsTask;
78     private View bTransactionListCancelDownload;
79     private ProgressBar progressBar;
80     private LinearLayout progressLayout;
81     private SectionsPagerAdapter mSectionsPagerAdapter;
82     private ViewPager mViewPager;
83     private FloatingActionButton fab;
84     private boolean profileModificationEnabled = false;
85     private boolean profileListExpanded = false;
86     private ProfilesRecyclerViewAdapter mProfileListAdapter;
87
88     @Override
89     protected void onStart() {
90         super.onStart();
91
92         Data.lastUpdateDate.set(null);
93         updateLastUpdateTextFromDB();
94         Date lastUpdate = Data.lastUpdateDate.get();
95
96         long now = new Date().getTime();
97         if ((lastUpdate == null) || (now > (lastUpdate.getTime() + (24 * 3600 * 1000)))) {
98             if (lastUpdate == null) Log.d("db::", "WEB data never fetched. scheduling a fetch");
99             else Log.d("db",
100                     String.format("WEB data last fetched at %1.3f and now is %1.3f. re-fetching",
101                             lastUpdate.getTime() / 1000f, now / 1000f));
102
103             scheduleTransactionListRetrieval();
104         }
105     }
106     @Override
107     protected void onSaveInstanceState(Bundle outState) {
108         super.onSaveInstanceState(outState);
109         outState.putInt(STATE_CURRENT_PAGE, mViewPager.getCurrentItem());
110     }
111     @Override
112     protected void onCreate(Bundle savedInstanceState) {
113         super.onCreate(savedInstanceState);
114
115         setContentView(R.layout.activity_main);
116
117         fab = findViewById(R.id.btn_add_transaction);
118         profileListContainer = findViewById(R.id.nav_profile_list_container);
119         profileListHeadArrow = findViewById(R.id.nav_profiles_arrow);
120         profileListHeadMore = findViewById(R.id.nav_profiles_start_edit);
121         profileListHeadCancel = findViewById(R.id.nav_profiles_cancel_edit);
122         drawer = findViewById(R.id.drawer_layout);
123         tvLastUpdate = findViewById(R.id.transactions_last_update);
124         bTransactionListCancelDownload = findViewById(R.id.transaction_list_cancel_download);
125         progressBar = findViewById(R.id.transaction_list_progress_bar);
126         progressLayout = findViewById(R.id.transaction_progress_layout);
127         fragmentManager = getSupportFragmentManager();
128         mSectionsPagerAdapter = new SectionsPagerAdapter(fragmentManager);
129         mViewPager = findViewById(R.id.root_frame);
130
131         Bundle extra = getIntent().getBundleExtra(BUNDLE_SAVED_STATE);
132         if (extra != null && savedInstanceState == null) savedInstanceState = extra;
133
134
135         Toolbar toolbar = findViewById(R.id.toolbar);
136         setSupportActionBar(toolbar);
137
138         Data.profile.addObserver((o, arg) -> {
139             MobileLedgerProfile profile = Data.profile.get();
140             runOnUiThread(() -> {
141                 if (profile == null) setTitle(R.string.app_name);
142                 else setTitle(profile.getName());
143                 updateLastUpdateTextFromDB();
144                 if (profile.isPostingPermitted()) {
145                     toolbar.setSubtitle(null);
146                     fab.show();
147                 }
148                 else {
149                     toolbar.setSubtitle(R.string.profile_subitlte_read_only);
150                     fab.hide();
151                 }
152
153                 int newProfileTheme = profile.getThemeId();
154                 if (newProfileTheme != Colors.profileThemeId) {
155                     Log.d("profiles", String.format("profile theme %d → %d", Colors.profileThemeId,
156                             newProfileTheme));
157                     profileThemeChanged();
158                     Colors.profileThemeId = newProfileTheme;
159                 }
160             });
161         });
162
163         ActionBarDrawerToggle toggle =
164                 new ActionBarDrawerToggle(this, drawer, toolbar, R.string.navigation_drawer_open,
165                         R.string.navigation_drawer_close);
166         drawer.addDrawerListener(toggle);
167         toggle.syncState();
168
169         TextView ver = drawer.findViewById(R.id.drawer_version_text);
170
171         try {
172             PackageInfo pi =
173                     getApplicationContext().getPackageManager().getPackageInfo(getPackageName(), 0);
174             ver.setText(pi.versionName);
175         }
176         catch (Exception e) {
177             e.printStackTrace();
178         }
179
180         if (progressBar == null)
181             throw new RuntimeException("Can't get hold on the transaction value progress bar");
182         if (progressLayout == null) throw new RuntimeException(
183                 "Can't get hold on the transaction value progress bar layout");
184
185         markDrawerItemCurrent(R.id.nav_account_summary);
186
187         mViewPager.setAdapter(mSectionsPagerAdapter);
188         mViewPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
189             @Override
190             public void onPageSelected(int position) {
191                 switch (position) {
192                     case 0:
193                         markDrawerItemCurrent(R.id.nav_account_summary);
194                         break;
195                     case 1:
196                         markDrawerItemCurrent(R.id.nav_latest_transactions);
197                         break;
198                     default:
199                         Log.e("MainActivity", String.format("Unexpected page index %d", position));
200                 }
201
202                 super.onPageSelected(position);
203             }
204         });
205
206         if (savedInstanceState != null) {
207             int currentPage = savedInstanceState.getInt(STATE_CURRENT_PAGE, -1);
208             if (currentPage != -1) {
209                 mViewPager.setCurrentItem(currentPage, false);
210             }
211         }
212
213         Data.lastUpdateDate.addObserver((o, arg) -> {
214             Log.d("main", "lastUpdateDate changed");
215             runOnUiThread(() -> {
216                 Date date = Data.lastUpdateDate.get();
217                 if (date == null) {
218                     tvLastUpdate.setText(R.string.transaction_last_update_never);
219                 }
220                 else {
221                     final String text = DateFormat.getDateTimeInstance().format(date);
222                     tvLastUpdate.setText(text);
223                     Log.d("despair", String.format("Date formatted: %s", text));
224                 }
225             });
226         });
227
228         findViewById(R.id.btn_no_profiles_add)
229                 .setOnClickListener(v -> startEditProfileActivity(null));
230
231         findViewById(R.id.btn_add_transaction).setOnClickListener(this::fabNewTransactionClicked);
232
233         findViewById(R.id.nav_new_profile_button)
234                 .setOnClickListener(v -> startEditProfileActivity(null));
235
236         RecyclerView root = findViewById(R.id.nav_profile_list);
237         if (root == null)
238             throw new RuntimeException("Can't get hold on the transaction value view");
239
240         mProfileListAdapter = new ProfilesRecyclerViewAdapter();
241         root.setAdapter(mProfileListAdapter);
242
243         mProfileListAdapter.addEditingProfilesObserver(new Observer() {
244             @Override
245             public void update(Observable o, Object arg) {
246                 if (mProfileListAdapter.isEditingProfiles()) {
247                     profileListHeadArrow.clearAnimation();
248                     profileListHeadArrow.setVisibility(View.GONE);
249                     profileListHeadMore.setVisibility(View.GONE);
250 //                    findViewById(R.id.nav_profiles_arrow).setAlpha(0f);
251                     profileListHeadCancel.setVisibility(View.VISIBLE);
252                 }
253                 else {
254                     profileListHeadArrow.setVisibility(View.VISIBLE);
255 //                    findViewById(R.id.nav_profiles_arrow).setAlpha(1f);
256                     profileListHeadCancel.setVisibility(View.GONE);
257                     profileListHeadMore.setVisibility(View.GONE);
258                     profileListHeadMore
259                             .setVisibility(profileListExpanded ? View.VISIBLE : View.GONE);
260                 }
261             }
262         });
263
264         LinearLayoutManager llm = new LinearLayoutManager(this);
265
266         llm.setOrientation(RecyclerView.VERTICAL);
267         root.setLayoutManager(llm);
268
269         profileListHeadMore.setOnClickListener((v) -> mProfileListAdapter.startEditingProfiles());
270         profileListHeadCancel.setOnClickListener((v) -> mProfileListAdapter.stopEditingProfiles());
271     }
272     private void profileThemeChanged() {
273         setupProfileColors();
274
275         Bundle bundle = new Bundle();
276         onSaveInstanceState(bundle);
277         // restart activity to reflect theme change
278         finish();
279         Intent intent = new Intent(this, this.getClass());
280         intent.putExtra(BUNDLE_SAVED_STATE, bundle);
281         startActivity(intent);
282     }
283     @Override
284     protected void onResume() {
285         super.onResume();
286         setupProfile();
287     }
288     public void startEditProfileActivity(MobileLedgerProfile profile) {
289         Intent intent = new Intent(this, ProfileDetailActivity.class);
290         Bundle args = new Bundle();
291         if (profile != null) {
292             int index = Data.getProfileIndex(profile);
293             if (index != -1) intent.putExtra(ProfileDetailFragment.ARG_ITEM_ID, index);
294         }
295         intent.putExtras(args);
296         startActivity(intent, args);
297     }
298     private void setupProfile() {
299         String profileUUID = MLDB.getOption(MLDB.OPT_PROFILE_UUID, null);
300         MobileLedgerProfile profile;
301
302         profile = MobileLedgerProfile.loadAllFromDB(profileUUID);
303
304         if (Data.profiles.getList().isEmpty()) {
305             findViewById(R.id.no_profiles_layout).setVisibility(View.VISIBLE);
306             findViewById(R.id.pager_layout).setVisibility(View.GONE);
307             return;
308         }
309
310         findViewById(R.id.pager_layout).setVisibility(View.VISIBLE);
311         findViewById(R.id.no_profiles_layout).setVisibility(View.GONE);
312
313         if (profile == null) profile = Data.profiles.get(0);
314
315         if (profile == null) throw new AssertionError("profile must have a value");
316
317         Data.setCurrentProfile(profile);
318     }
319     public void fabNewTransactionClicked(View view) {
320         Intent intent = new Intent(this, NewTransactionActivity.class);
321         startActivity(intent);
322         overridePendingTransition(R.anim.slide_in_right, R.anim.dummy);
323     }
324     public void navSettingsClicked(View view) {
325         Intent intent = new Intent(this, SettingsActivity.class);
326         startActivity(intent);
327         drawer.closeDrawers();
328     }
329     public void markDrawerItemCurrent(int id) {
330         TextView item = drawer.findViewById(id);
331         item.setBackgroundColor(Colors.tableRowDarkBG);
332
333         LinearLayout actions = drawer.findViewById(R.id.nav_actions);
334         for (int i = 0; i < actions.getChildCount(); i++) {
335             View view = actions.getChildAt(i);
336             if (view.getId() != id) {
337                 view.setBackgroundColor(Color.TRANSPARENT);
338             }
339         }
340     }
341     public void onAccountSummaryClicked(View view) {
342         drawer.closeDrawers();
343
344         showAccountSummaryFragment();
345     }
346     private void showAccountSummaryFragment() {
347         mViewPager.setCurrentItem(0, true);
348         TransactionListFragment.accountFilter.set(null);
349 //        FragmentTransaction ft = fragmentManager.beginTransaction();
350 //        accountSummaryFragment = new AccountSummaryFragment();
351 //        ft.replace(R.id.root_frame, accountSummaryFragment);
352 //        ft.commit();
353 //        currentFragment = accountSummaryFragment;
354     }
355     public void onLatestTransactionsClicked(View view) {
356         drawer.closeDrawers();
357
358         showTransactionsFragment(null);
359     }
360     private void resetFragmentBackStack() {
361 //        fragmentManager.popBackStack(0, FragmentManager.POP_BACK_STACK_INCLUSIVE);
362     }
363     private void showTransactionsFragment(LedgerAccount account) {
364         if (account != null) TransactionListFragment.accountFilter.set(account.getName());
365         mViewPager.setCurrentItem(1, true);
366 //        FragmentTransaction ft = fragmentManager.beginTransaction();
367 //        if (transactionListFragment == null) {
368 //            Log.d("flow", "MainActivity creating TransactionListFragment");
369 //            transactionListFragment = new TransactionListFragment();
370 //        }
371 //        Bundle bundle = new Bundle();
372 //        if (account != null) {
373 //            bundle.putString(TransactionListFragment.BUNDLE_KEY_FILTER_ACCOUNT_NAME,
374 //                    account.getName());
375 //        }
376 //        transactionListFragment.setArguments(bundle);
377 //        ft.replace(R.id.root_frame, transactionListFragment);
378 //        if (account != null)
379 //            ft.addToBackStack(getResources().getString(R.string.title_activity_transaction_list));
380 //        ft.commit();
381 //
382 //        currentFragment = transactionListFragment;
383     }
384     public void showAccountTransactions(LedgerAccount account) {
385         showTransactionsFragment(account);
386     }
387     @Override
388     public void onBackPressed() {
389         DrawerLayout drawer = findViewById(R.id.drawer_layout);
390         if (drawer.isDrawerOpen(GravityCompat.START)) {
391             drawer.closeDrawer(GravityCompat.START);
392         }
393         else {
394             Log.d("fragments",
395                     String.format("manager stack: %d", fragmentManager.getBackStackEntryCount()));
396
397             super.onBackPressed();
398         }
399     }
400     public void updateLastUpdateTextFromDB() {
401         {
402             final MobileLedgerProfile profile = Data.profile.get();
403             long last_update =
404                     (profile != null) ? profile.getLongOption(MLDB.OPT_LAST_SCRAPE, 0L) : 0;
405
406             Log.d("transactions", String.format("Last update = %d", last_update));
407             if (last_update == 0) {
408                 Data.lastUpdateDate.set(null);
409             }
410             else {
411                 Data.lastUpdateDate.set(new Date(last_update));
412             }
413         }
414     }
415     public void scheduleTransactionListRetrieval() {
416         if (Data.profile.get() == null) return;
417
418         retrieveTransactionsTask = new RetrieveTransactionsTask(new WeakReference<>(this));
419
420         retrieveTransactionsTask.execute();
421     }
422     public void onStopTransactionRefreshClick(View view) {
423         Log.d("interactive", "Cancelling transactions refresh");
424         if (retrieveTransactionsTask != null) retrieveTransactionsTask.cancel(false);
425         bTransactionListCancelDownload.setEnabled(false);
426     }
427     public void onRetrieveDone(String error) {
428         progressLayout.setVisibility(View.GONE);
429
430         if (error == null) {
431             updateLastUpdateTextFromDB();
432
433             new RefreshDescriptionsTask().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
434         }
435         else Toast.makeText(this, error, Toast.LENGTH_LONG).show();
436     }
437     public void onRetrieveStart() {
438         bTransactionListCancelDownload.setEnabled(true);
439         progressBar.setIndeterminateTintList(ColorStateList.valueOf(Colors.primary));
440         progressBar.setProgressTintList(ColorStateList.valueOf(Colors.primary));
441         progressBar.setIndeterminate(true);
442         if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) progressBar.setProgress(0, false);
443         else progressBar.setProgress(0);
444         progressLayout.setVisibility(View.VISIBLE);
445     }
446     public void onRetrieveProgress(RetrieveTransactionsTask.Progress progress) {
447         if ((progress.getTotal() == RetrieveTransactionsTask.Progress.INDETERMINATE) ||
448             (progress.getTotal() == 0))
449         {
450             progressBar.setIndeterminate(true);
451         }
452         else {
453             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
454                 progressBar.setMin(0);
455             }
456             progressBar.setMax(progress.getTotal());
457             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
458                 progressBar.setProgress(progress.getProgress(), true);
459             }
460             else progressBar.setProgress(progress.getProgress());
461             progressBar.setIndeterminate(false);
462         }
463     }
464     public void fabShouldShow() {
465         MobileLedgerProfile profile = Data.profile.get();
466         if ((profile != null) && profile.isPostingPermitted()) fab.show();
467     }
468     public void navProfilesHeadClicked(View view) {
469         if (profileListExpanded) {
470             collapseProfileList();
471         }
472         else {
473             expandProfileList();
474         }
475     }
476     private void expandProfileList() {
477         profileListExpanded = true;
478
479
480         profileListContainer.setVisibility(View.VISIBLE);
481         profileListContainer.startAnimation(AnimationUtils.loadAnimation(this, R.anim.slide_down));
482         profileListHeadArrow.startAnimation(AnimationUtils.loadAnimation(this, R.anim.rotate_180));
483         profileListHeadMore.setVisibility(View.VISIBLE);
484         profileListHeadMore.startAnimation(AnimationUtils.loadAnimation(this, R.anim.fade_in));
485     }
486     private void collapseProfileList() {
487         profileListExpanded = false;
488
489         final Animation animation = AnimationUtils.loadAnimation(this, R.anim.slide_up);
490         animation.setAnimationListener(new Animation.AnimationListener() {
491             @Override
492             public void onAnimationStart(Animation animation) {
493
494             }
495             @Override
496             public void onAnimationEnd(Animation animation) {
497                 profileListContainer.setVisibility(View.GONE);
498             }
499             @Override
500             public void onAnimationRepeat(Animation animation) {
501
502             }
503         });
504         profileListContainer.startAnimation(animation);
505         profileListHeadArrow
506                 .startAnimation(AnimationUtils.loadAnimation(this, R.anim.rotate_180_back));
507         profileListHeadMore.setVisibility(View.GONE);
508
509         mProfileListAdapter.stopEditingProfiles();
510     }
511     public void onProfileRowClicked(View v) {
512         Data.setCurrentProfile((MobileLedgerProfile) v.getTag());
513     }
514     public void enableProfileModifications() {
515         profileModificationEnabled = true;
516         ViewGroup profileList = findViewById(R.id.nav_profile_list);
517         for (int i = 0; i < profileList.getChildCount(); i++) {
518             View aRow = profileList.getChildAt(i);
519             aRow.findViewById(R.id.profile_list_edit_button).setVisibility(View.VISIBLE);
520             aRow.findViewById(R.id.profile_list_rearrange_handle).setVisibility(View.VISIBLE);
521         }
522         // FIXME enable rearranging
523
524     }
525     public void disableProfileModifications() {
526         profileModificationEnabled = false;
527         ViewGroup profileList = findViewById(R.id.nav_profile_list);
528         for (int i = 0; i < profileList.getChildCount(); i++) {
529             View aRow = profileList.getChildAt(i);
530             aRow.findViewById(R.id.profile_list_edit_button).setVisibility(View.GONE);
531             aRow.findViewById(R.id.profile_list_rearrange_handle).setVisibility(View.GONE);
532         }
533         // FIXME disable rearranging
534
535     }
536
537     public class SectionsPagerAdapter extends FragmentPagerAdapter {
538
539         public SectionsPagerAdapter(FragmentManager fm) {
540             super(fm);
541         }
542
543         @Override
544         public Fragment getItem(int position) {
545             Log.d("main", String.format("Switching to fragment %d", position));
546             switch (position) {
547                 case 0:
548                     return new AccountSummaryFragment();
549                 case 1:
550                     return new TransactionListFragment();
551                 default:
552                     throw new IllegalStateException(
553                             String.format("Unexpected fragment index: " + "%d", position));
554             }
555         }
556
557         @Override
558         public int getCount() {
559             return 2;
560         }
561     }
562
563 }