store theme-name and variant in settings

This commit is contained in:
RMidhunSuresh 2022-06-05 20:49:05 +05:30
parent 43244fa026
commit 71c3fb39a2
4 changed files with 62 additions and 84 deletions

View File

@ -51,7 +51,6 @@ export class SettingsViewModel extends ViewModel {
this.maxSentImageSizeLimit = 4000;
this.pushNotifications = new PushNotificationStatus();
this._activeTheme = undefined;
this._activeVariant = undefined;
}
get _session() {
@ -80,7 +79,6 @@ export class SettingsViewModel extends ViewModel {
this.pushNotifications.enabled = await this._session.arePushNotificationsEnabled();
if (!import.meta.env.DEV) {
this._activeTheme = await this.platform.themeLoader.getActiveTheme();
this._activeVariant = await this.platform.themeLoader.getCurrentVariant();
}
this.emitChange("");
}
@ -141,14 +139,6 @@ export class SettingsViewModel extends ViewModel {
return this._activeTheme;
}
get activeVariant() {
return this._activeVariant;
}
setTheme(name) {
this.platform.themeLoader.setTheme(name);
}
_formatBytes(n) {
if (typeof n === "number") {
return Math.round(n / (1024 * 1024)).toFixed(1) + " MB";
@ -192,9 +182,12 @@ export class SettingsViewModel extends ViewModel {
}
}
changeThemeOption(themeId) {
if (themeId) {
this.setTheme(themeId);
changeThemeOption(themeName, themeVariant) {
if (themeName && "id" in this.themeMapping[themeName]) {
this.platform.themeLoader.setTheme(themeName);
}
else {
this.platform.themeLoader.setTheme(themeName, themeVariant);
}
// if there's no themeId, then the theme is going to be set via radio-buttons
// emit so that radio-buttons become displayed/hidden
@ -204,13 +197,5 @@ export class SettingsViewModel extends ViewModel {
get preferredColorScheme() {
return this.platform.themeLoader.preferredColorScheme;
}
persistVariantToStorage(variant) {
this.platform.themeLoader.persistVariantToStorage(variant);
}
removeVariantFromStorage() {
this.platform.themeLoader.removeVariantFromStorage();
}
}

View File

@ -189,7 +189,8 @@ export class Platform {
);
const manifests = this.config["themeManifests"];
await this._themeLoader?.init(manifests);
this._themeLoader?.setTheme(await this._themeLoader.getActiveTheme(), log);
const { themeName, themeVariant } = await this._themeLoader.getActiveTheme();
this._themeLoader?.setTheme(themeName, themeVariant, log);
});
} catch (err) {
this._container.innerText = err.message;

View File

@ -33,6 +33,11 @@ type DefaultVariant = {
cssLocation: string;
variantName: string;
};
default: {
id: string;
cssLocation: string;
variantName: string;
};
}
type ThemeInformation = NormalVariant | DefaultVariant;
@ -67,13 +72,12 @@ export class ThemeLoader {
information which includes the location of the CSS file.
(see type ThemeInformation above)
*/
// Object.assign(this._themeMapping, body["source"]["built-assets"]);
//Add the default-theme as an additional option to the mapping
const defaultThemeId = this.getDefaultTheme();
if (defaultThemeId) {
const cssLocation = this._findThemeLocationFromId(defaultThemeId);
if (cssLocation) {
this._themeMapping["Default"] = { id: "default", cssLocation };
const themeDetails = this._findThemeDetailsFromId(defaultThemeId);
if (themeDetails) {
this._themeMapping["Default"] = { id: "default", cssLocation: themeDetails.cssLocation };
}
}
}
@ -115,7 +119,8 @@ export class ThemeLoader {
* As mentioned above, if there's both a default dark and a default light variant,
* add them to themeMapping separately.
*/
this._themeMapping[themeName] = { dark: defaultDarkVariant, light: defaultLightVariant };
const defaultVariant = this.preferredColorScheme === ColorSchemePreference.Dark ? defaultDarkVariant : defaultLightVariant;
this._themeMapping[themeName] = { dark: defaultDarkVariant, light: defaultLightVariant, default: defaultVariant };
}
else {
/**
@ -127,14 +132,24 @@ export class ThemeLoader {
}
}
setTheme(themeId: string, log?: ILogItem) {
this._platform.logger.wrapOrRun(log, { l: "change theme", id: themeId }, () => {
const themeLocation = this._findThemeLocationFromId(themeId);
if (!themeLocation) {
throw new Error(`Cannot find theme location for theme "${themeId}"!`);
setTheme(themeName: string, themeVariant: "light" | "dark" | "default", log?: ILogItem) {
this._platform.logger.wrapOrRun(log, { l: "change theme", name: themeName, variant: themeVariant }, () => {
let cssLocation: string;
let themeDetails = this._themeMapping[themeName];
if ("id" in themeDetails) {
cssLocation = themeDetails.cssLocation;
}
else {
cssLocation = themeDetails[themeVariant ?? "default"].cssLocation;
}
this._platform.replaceStylesheet(cssLocation);
this._platform.settingsStorage.setString("theme-name", themeName);
if (themeVariant) {
this._platform.settingsStorage.setString("theme-variant", themeVariant);
}
else {
this._platform.settingsStorage.remove("theme-variant");
}
this._platform.replaceStylesheet(themeLocation);
this._platform.settingsStorage.setString("theme", themeId);
});
}
@ -142,12 +157,10 @@ export class ThemeLoader {
return this._themeMapping;
}
async getActiveTheme(): Promise<string> {
const theme = await this._platform.settingsStorage.getString("theme") ?? "default";
if (theme) {
return theme;
}
throw new Error("Cannot find active theme!");
async getActiveTheme(): Promise<{themeName: string, themeVariant?: string}> {
const themeName = await this._platform.settingsStorage.getString("theme-name") ?? "Default";
const themeVariant = await this._platform.settingsStorage.getString("theme-variant");
return { themeName, themeVariant };
}
getDefaultTheme(): string | undefined {
@ -159,16 +172,16 @@ export class ThemeLoader {
}
}
private _findThemeLocationFromId(themeId: string): string | undefined {
for (const themeData of Object.values(this._themeMapping)) {
private _findThemeDetailsFromId(themeId: string): {themeName: string, cssLocation: string, variant?: string} | undefined {
for (const [themeName, themeData] of Object.entries(this._themeMapping)) {
if ("id" in themeData && themeData.id === themeId) {
return themeData.cssLocation;
return { themeName, cssLocation: themeData.cssLocation };
}
else if ("light" in themeData && themeData.light?.id === themeId) {
return themeData.light.cssLocation;
return { themeName, cssLocation: themeData.light.cssLocation, variant: "light" };
}
else if ("dark" in themeData && themeData.dark?.id === themeId) {
return themeData.dark.cssLocation;
return { themeName, cssLocation: themeData.dark.cssLocation, variant: "dark" };
}
}
}
@ -182,16 +195,4 @@ export class ThemeLoader {
}
throw new Error("Cannot find preferred colorscheme!");
}
async persistVariantToStorage(variant: string) {
await this._platform.settingsStorage.setString("theme-variant", variant);
}
async getCurrentVariant(): Promise<string> {
return await this._platform.settingsStorage.getString("theme-variant");
}
async removeVariantFromStorage(): Promise<void> {
await this._platform.settingsStorage.remove("theme-variant");
}
}

View File

@ -141,56 +141,47 @@ export class SettingsView extends TemplateView {
}
_themeOptions(t, vm) {
const activeTheme = vm.activeTheme;
const { themeName: activeThemeName, themeVariant: activeThemeVariant } = vm.activeTheme;
const optionTags = [];
const isDarkSelected = vm.activeVariant === "dark";
const isLightSelected = vm.activeVariant === "light";
// 1. render the dropdown containing the themes
for (const [name, details] of Object.entries(vm.themeMapping)) {
const isSelected = details.id === activeTheme ||
details.dark?.id === activeTheme ||
details.light?.id === activeTheme;
optionTags.push( t.option({ value: details.id ?? "", selected: isSelected} , name));
for (const name of Object.keys(vm.themeMapping)) {
optionTags.push( t.option({ value: name, selected: name === activeThemeName} , name));
}
const select = t.select({
onChange: (e) => {
const themeId = e.target.value;
if (themeId) {
/* if the <option ..> has a value then this is not a theme
that has dark and light default variants.
remove any stored variant from localStorage.
*/
vm.removeVariantFromStorage();
}
else {
const themeName = e.target.value;
if(!("id" in vm.themeMapping[themeName])) {
const colorScheme = darkRadioButton.checked ? "dark" : lightRadioButton.checked ? "light" : "default";
// execute the radio-button callback so that the theme actually changes!
// otherwise the theme would only change when another radio-button is selected.
radioButtonCallback(colorScheme);
return;
}
vm.changeThemeOption(themeId);
vm.changeThemeOption(themeName);
}
}, optionTags);
// 2. render the radio-buttons used to choose variant
const radioButtonCallback = (colorScheme) => {
const selectedThemeName = select.options[select.selectedIndex].text;
vm.persistVariantToStorage(colorScheme);
if (colorScheme === "default") {
colorScheme = vm.preferredColorScheme === ColorSchemePreference.Dark ? "dark" : "light";
}
const themeId = vm.themeMapping[selectedThemeName][colorScheme].id;
vm.changeThemeOption(themeId);
const selectedThemeName = select.options[select.selectedIndex].value;
vm.changeThemeOption(selectedThemeName, colorScheme);
};
const isDarkSelected = activeThemeVariant === "dark";
const isLightSelected = activeThemeVariant === "light";
const darkRadioButton = t.input({ type: "radio", name: "radio-chooser", value: "dark", id: "dark", checked: isDarkSelected });
const defaultRadioButton = t.input({ type: "radio", name: "radio-chooser", value: "default", id: "default", checked: !(isDarkSelected || isLightSelected) });
const lightRadioButton = t.input({ type: "radio", name: "radio-chooser", value: "light", id: "light", checked: isLightSelected });
const radioButtons = t.form({
className: { hidden: () => select.options[select.selectedIndex].value !== "" },
className: {
hidden: () => {
const themeName = select.options[select.selectedIndex].value;
return "id" in vm.themeMapping[themeName];
}
},
onChange: (e) => radioButtonCallback(e.target.value)
},
[
defaultRadioButton,
t.label({for: "default"}, "default"),
t.label({for: "default"}, "Match System Theme"),
darkRadioButton,
t.label({for: "dark"}, "dark"),
lightRadioButton,