]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java
dcc83460cf1f391629adede89dc81d4a257e2336
[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.Bundle;
22
23 import androidx.annotation.Nullable;
24
25 import net.ktnx.mobileledger.App;
26 import net.ktnx.mobileledger.dao.BaseDAO;
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                 return;
79             }
80
81             mProfile = profile;
82             int hue = profile.getTheme();
83
84             if (hue != mThemeHue) {
85                 storeProfilePref(profile);
86                 Logger.debug(TAG,
87                         String.format(Locale.US, "profile observer calling setupProfileColors(%d)",
88                                 hue));
89                 setupProfileColors(hue);
90             }
91         });
92
93         super.onCreate(savedInstanceState);
94     }
95     public void storeProfilePref(Profile profile) {
96         App.storeStartupProfileAndTheme(profile.getId(), profile.getTheme());
97     }
98     protected void initProfile() {
99         long profileId = App.getStartupProfile();
100         int hue = App.getStartupTheme();
101         if (profileId == -1)
102             mThemeHue = Colors.DEFAULT_HUE_DEG;
103
104         Logger.debug(TAG,
105                 String.format(Locale.US, "initProfile() calling setupProfileColors(%d)", hue));
106         setupProfileColors(hue);
107
108         initProfile(profileId);
109     }
110     protected void initProfile(long profileId) {
111         BaseDAO.runAsync(() -> initProfileSync(profileId));
112     }
113     private void initProfileSync(long profileId) {
114         ProfileDAO dao = DB.get()
115                            .getProfileDAO();
116         Profile profile = dao.getByIdSync(profileId);
117
118         if (profile == null) {
119             Logger.debug(TAG, String.format(Locale.ROOT, "Profile %d not found. Trying any other",
120                     profileId));
121
122             profile = dao.getAnySync();
123         }
124
125         if (profile == null)
126             Logger.debug(TAG, "No profile could be loaded");
127         else
128             Logger.debug(TAG, String.format(Locale.ROOT, "Profile %d loaded. posting", profileId));
129         Data.postCurrentProfile(profile);
130     }
131 }