]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java
Room-based profile management
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / ProfileThemedActivity.java
1 /*
2  * Copyright © 2021 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.annotation.SuppressLint;
21 import android.os.AsyncTask;
22 import android.os.Bundle;
23
24 import androidx.annotation.Nullable;
25
26 import net.ktnx.mobileledger.App;
27 import net.ktnx.mobileledger.dao.ProfileDAO;
28 import net.ktnx.mobileledger.db.DB;
29 import net.ktnx.mobileledger.db.Profile;
30 import net.ktnx.mobileledger.model.Data;
31 import net.ktnx.mobileledger.utils.Colors;
32 import net.ktnx.mobileledger.utils.Logger;
33
34 import java.util.Locale;
35
36 @SuppressLint("Registered")
37 public class ProfileThemedActivity extends CrashReportingActivity {
38     public static final String TAG = "prf-thm-act";
39     protected static final String PARAM_PROFILE_ID = "profile-id";
40     protected static final String PARAM_THEME = "theme";
41     protected Profile mProfile;
42     private boolean themeSetUp = false;
43     private boolean mIgnoreProfileChange;
44     private int mThemeHue;
45     protected void setupProfileColors(int newHue) {
46         if (themeSetUp && newHue == mThemeHue) {
47             Logger.debug(TAG,
48                     String.format(Locale.ROOT, "Ignore request to set theme to the same value (%d)",
49                             newHue));
50             return;
51         }
52
53         Logger.debug(TAG,
54                 String.format(Locale.ROOT, "Changing theme from %d to %d", mThemeHue, newHue));
55
56         mThemeHue = newHue;
57         Colors.setupTheme(this, mThemeHue);
58
59         if (themeSetUp) {
60             Logger.debug(TAG, "setupProfileColors(): theme already set up, recreating activity");
61             this.recreate();
62         }
63         themeSetUp = true;
64
65         Colors.profileThemeId = mThemeHue;
66     }
67     @Override
68     protected void onStart() {
69         super.onStart();
70         Colors.refreshColors(getTheme());
71     }
72     protected void onCreate(@Nullable Bundle savedInstanceState) {
73         initProfile();
74
75         Data.observeProfile(this, profile -> {
76             if (profile == null) {
77                 Logger.debug(TAG, "No current profile, leaving");
78                 finish();
79                 return;
80             }
81
82             mProfile = profile;
83             int hue = profile.getTheme();
84
85             if (hue != mThemeHue) {
86                 storeProfilePref(profile);
87                 setupProfileColors(hue);
88             }
89         });
90
91         super.onCreate(savedInstanceState);
92     }
93     public void storeProfilePref(Profile profile) {
94         App.storeStartupProfileAndTheme(profile.getId(), profile.getTheme());
95     }
96     protected void initProfile() {
97         long profileId = App.getStartupProfile();
98         int hue = App.getStartupTheme();
99         if (profileId == -1)
100             mThemeHue = Colors.DEFAULT_HUE_DEG;
101
102         setupProfileColors(hue);
103
104         initProfile(profileId);
105     }
106     protected void initProfile(long profileId) {
107         AsyncTask.execute(() -> initProfileAsync(profileId));
108     }
109     private void initProfileAsync(long profileId) {
110         ProfileDAO dao = DB.get()
111                            .getProfileDAO();
112         Profile profile = dao.getByIdSync(profileId);
113
114         if (profile == null) {
115             Logger.debug(TAG, String.format(Locale.ROOT, "Profile %d not found. Trying any other",
116                     profileId));
117
118             profile = dao.getAnySync();
119         }
120
121         Data.postCurrentProfile(profile);
122     }
123 }