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