afterStoreSetup: Move log in and theme load to afterStoreSetup.

This commit is contained in:
lain 2019-03-13 13:29:34 +01:00
parent 48ac96cfc7
commit 5318227c37
2 changed files with 10 additions and 12 deletions

View file

@ -212,6 +212,16 @@ const getNodeInfo = async ({ store }) => {
}
const afterStoreSetup = async ({ store, i18n }) => {
if (store.state.config.customTheme) {
// This is a hack to deal with async loading of config.json and themes
// See: style_setter.js, setPreset()
window.themeLoaded = true
store.dispatch('setOption', {
name: 'customTheme',
value: store.state.config.customTheme
})
}
const apiConfig = await getStatusnetConfig({ store })
const staticConfig = await getStaticConfig()
await setSettings({ store, apiConfig, staticConfig })