aboutsummaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-07-10 22:49:56 +0300
committerHenry Jameson <me@hjkos.com>2024-07-10 22:49:56 +0300
commitc6ccab778f78bf65cebcad1c5e0943d427254098 (patch)
treec85cd45dc4f66b1d55eb47b4e132d3c72f3da9a5 /src/boot
parent8a41313bb4957471b2c5577661ae388300097f12 (diff)
MASSIVELY streamlined theme setting process, now EVERYTHING happens in a vuex action "setTheme" instead of several different applyTheme()s scattered around
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/after_store.js29
1 files changed, 2 insertions, 27 deletions
diff --git a/src/boot/after_store.js b/src/boot/after_store.js
index b93e28a3..a486bd4c 100644
--- a/src/boot/after_store.js
+++ b/src/boot/after_store.js
@@ -13,8 +13,7 @@ import VBodyScrollLock from 'src/directives/body_scroll_lock'
import { windowWidth, windowHeight } from '../services/window_utils/window_utils'
import { getOrCreateApp, getClientToken } from '../services/new_api/oauth.js'
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
-import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
-import { applyTheme, applyConfig, tryLoadCache } from '../services/style_setter/style_setter.js'
+import { applyConfig } from '../services/style_setter/style_setter.js'
import FaviconService from '../services/favicon_service/favicon_service.js'
import { initServiceWorker, updateFocus } from '../services/sw/sw.js'
@@ -160,8 +159,6 @@ const setSettings = async ({ apiConfig, staticConfig, store }) => {
copyInstanceOption('showFeaturesPanel')
copyInstanceOption('hideSitename')
copyInstanceOption('sidebarRight')
-
- return store.dispatch('setTheme', config.theme)
}
const getTOS = async ({ store }) => {
@@ -352,29 +349,7 @@ const afterStoreSetup = async ({ store, i18n }) => {
store.dispatch('setInstanceOption', { name: 'server', value: server })
await setConfig({ store })
-
- const { customTheme, customThemeSource, forceThemeRecompilation, themeDebug } = store.state.config
- const { theme } = store.state.instance
- const customThemePresent = customThemeSource || customTheme
-
- console.log('DEBUG INITIAL', themeDebug, forceThemeRecompilation)
-
- if (!forceThemeRecompilation && !themeDebug && tryLoadCache()) {
- store.commit('setThemeApplied')
- } else {
- if (customThemePresent) {
- if (customThemeSource && customThemeSource.themeEngineVersion === CURRENT_VERSION) {
- applyTheme(customThemeSource, () => {}, themeDebug)
- } else {
- applyTheme(customTheme, () => {}, themeDebug)
- }
- store.commit('setThemeApplied')
- } else if (theme) {
- // do nothing, it will load asynchronously
- } else {
- console.error('Failed to load any theme!')
- }
- }
+ await store.dispatch('setTheme')
applyConfig(store.state.config)