fix: issue with deactivate all themes on signout (#804)
* fix: issue with deactivate all themes on signout * fix: remove redundant caching
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
|||||||
ContentType,
|
ContentType,
|
||||||
UuidString,
|
UuidString,
|
||||||
FeatureStatus,
|
FeatureStatus,
|
||||||
|
PayloadSource,
|
||||||
} from '@standardnotes/snjs';
|
} from '@standardnotes/snjs';
|
||||||
|
|
||||||
const CACHED_THEMES_KEY = 'cachedThemes';
|
const CACHED_THEMES_KEY = 'cachedThemes';
|
||||||
@@ -22,6 +23,11 @@ export class ThemeManager extends ApplicationService {
|
|||||||
super.onAppEvent(event);
|
super.onAppEvent(event);
|
||||||
if (event === ApplicationEvent.SignedOut) {
|
if (event === ApplicationEvent.SignedOut) {
|
||||||
this.deactivateAllThemes();
|
this.deactivateAllThemes();
|
||||||
|
this.activeThemes = [];
|
||||||
|
this.application?.removeValue(
|
||||||
|
CACHED_THEMES_KEY,
|
||||||
|
StorageValueModes.Nonwrapped
|
||||||
|
);
|
||||||
} else if (event === ApplicationEvent.StorageReady) {
|
} else if (event === ApplicationEvent.StorageReady) {
|
||||||
await this.activateCachedThemes();
|
await this.activateCachedThemes();
|
||||||
} else if (event === ApplicationEvent.FeaturesUpdated) {
|
} else if (event === ApplicationEvent.FeaturesUpdated) {
|
||||||
@@ -34,7 +40,7 @@ export class ThemeManager extends ApplicationService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deinit() {
|
deinit() {
|
||||||
this.clearAppThemeState();
|
this.deactivateAllThemes();
|
||||||
this.activeThemes.length = 0;
|
this.activeThemes.length = 0;
|
||||||
this.unregisterDesktop();
|
this.unregisterDesktop();
|
||||||
this.unregisterStream();
|
this.unregisterStream();
|
||||||
@@ -43,7 +49,8 @@ export class ThemeManager extends ApplicationService {
|
|||||||
super.deinit();
|
super.deinit();
|
||||||
}
|
}
|
||||||
|
|
||||||
reloadThemeStatus(): void {
|
private reloadThemeStatus(): void {
|
||||||
|
let hasChange = false;
|
||||||
for (const themeUuid of this.activeThemes) {
|
for (const themeUuid of this.activeThemes) {
|
||||||
const theme = this.application.findItem(themeUuid) as SNTheme;
|
const theme = this.application.findItem(themeUuid) as SNTheme;
|
||||||
if (
|
if (
|
||||||
@@ -52,8 +59,13 @@ export class ThemeManager extends ApplicationService {
|
|||||||
FeatureStatus.Entitled
|
FeatureStatus.Entitled
|
||||||
) {
|
) {
|
||||||
this.deactivateTheme(themeUuid);
|
this.deactivateTheme(themeUuid);
|
||||||
|
hasChange = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hasChange) {
|
||||||
|
this.cacheThemeState();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @override */
|
/** @override */
|
||||||
@@ -64,9 +76,8 @@ export class ThemeManager extends ApplicationService {
|
|||||||
|
|
||||||
private async activateCachedThemes() {
|
private async activateCachedThemes() {
|
||||||
const cachedThemes = await this.getCachedThemes();
|
const cachedThemes = await this.getCachedThemes();
|
||||||
const writeToCache = false;
|
|
||||||
for (const theme of cachedThemes) {
|
for (const theme of cachedThemes) {
|
||||||
this.activateTheme(theme, writeToCache);
|
this.activateTheme(theme);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,16 +89,15 @@ export class ThemeManager extends ApplicationService {
|
|||||||
this.deactivateTheme(component.uuid);
|
this.deactivateTheme(component.uuid);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.activateTheme(component as SNTheme);
|
this.activateTheme(component as SNTheme);
|
||||||
|
this.cacheThemeState();
|
||||||
}, 10);
|
}, 10);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.unregisterStream = this.application.streamItems(
|
this.unregisterStream = this.application.streamItems(
|
||||||
ContentType.Theme,
|
ContentType.Theme,
|
||||||
() => {
|
(items, source) => {
|
||||||
const themes = this.application.getDisplayableItems(
|
const themes = items as SNTheme[];
|
||||||
ContentType.Theme
|
|
||||||
) as SNTheme[];
|
|
||||||
for (const theme of themes) {
|
for (const theme of themes) {
|
||||||
if (theme.active) {
|
if (theme.active) {
|
||||||
this.activateTheme(theme);
|
this.activateTheme(theme);
|
||||||
@@ -95,23 +105,21 @@ export class ThemeManager extends ApplicationService {
|
|||||||
this.deactivateTheme(theme.uuid);
|
this.deactivateTheme(theme.uuid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (source !== PayloadSource.LocalRetrieved) {
|
||||||
|
this.cacheThemeState();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private clearAppThemeState() {
|
private deactivateAllThemes() {
|
||||||
for (const uuid of this.activeThemes) {
|
const activeThemes = this.activeThemes.slice();
|
||||||
this.deactivateTheme(uuid, false);
|
for (const uuid of activeThemes) {
|
||||||
|
this.deactivateTheme(uuid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private deactivateAllThemes() {
|
private activateTheme(theme: SNTheme) {
|
||||||
this.clearAppThemeState();
|
|
||||||
this.activeThemes = [];
|
|
||||||
this.decacheThemes();
|
|
||||||
}
|
|
||||||
|
|
||||||
private activateTheme(theme: SNTheme, writeToCache = true) {
|
|
||||||
if (this.activeThemes.find((uuid) => uuid === theme.uuid)) {
|
if (this.activeThemes.find((uuid) => uuid === theme.uuid)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -128,24 +136,19 @@ export class ThemeManager extends ApplicationService {
|
|||||||
link.media = 'screen,print';
|
link.media = 'screen,print';
|
||||||
link.id = theme.uuid;
|
link.id = theme.uuid;
|
||||||
document.getElementsByTagName('head')[0].appendChild(link);
|
document.getElementsByTagName('head')[0].appendChild(link);
|
||||||
if (writeToCache) {
|
|
||||||
this.cacheThemes();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private deactivateTheme(uuid: string, recache = true) {
|
private deactivateTheme(uuid: string) {
|
||||||
const element = document.getElementById(uuid) as HTMLLinkElement;
|
const element = document.getElementById(uuid) as HTMLLinkElement;
|
||||||
if (element) {
|
if (element) {
|
||||||
element.disabled = true;
|
element.disabled = true;
|
||||||
element.parentNode!.removeChild(element);
|
element.parentNode?.removeChild(element);
|
||||||
}
|
}
|
||||||
|
|
||||||
removeFromArray(this.activeThemes, uuid);
|
removeFromArray(this.activeThemes, uuid);
|
||||||
if (recache) {
|
|
||||||
this.cacheThemes();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async cacheThemes() {
|
private async cacheThemeState() {
|
||||||
const themes = this.application.getAll(this.activeThemes) as SNTheme[];
|
const themes = this.application.getAll(this.activeThemes) as SNTheme[];
|
||||||
const mapped = await Promise.all(
|
const mapped = await Promise.all(
|
||||||
themes.map(async (theme) => {
|
themes.map(async (theme) => {
|
||||||
@@ -165,15 +168,6 @@ export class ThemeManager extends ApplicationService {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async decacheThemes() {
|
|
||||||
if (this.application) {
|
|
||||||
return this.application.removeValue(
|
|
||||||
CACHED_THEMES_KEY,
|
|
||||||
StorageValueModes.Nonwrapped
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getCachedThemes() {
|
private async getCachedThemes() {
|
||||||
const cachedThemes = (await this.application.getValue(
|
const cachedThemes = (await this.application.getValue(
|
||||||
CACHED_THEMES_KEY,
|
CACHED_THEMES_KEY,
|
||||||
|
|||||||
Reference in New Issue
Block a user