From 9467462ef0c3ed450332a1e2335dce52b7d578f1 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 17 Sep 2018 18:54:08 +0300 Subject: made FE work even without either api or static config --- src/modules/instance.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/modules/instance.js') diff --git a/src/modules/instance.js b/src/modules/instance.js index a4fc9651..cb724821 100644 --- a/src/modules/instance.js +++ b/src/modules/instance.js @@ -1,4 +1,5 @@ import { set } from 'vue' +import StyleSetter from '../services/style_setter/style_setter.js' const defaultState = { // Stuff from static/config.json and apiConfig @@ -7,7 +8,7 @@ const defaultState = { textlimit: 5000, server: 'http://localhost:4040/', theme: 'pleroma-dark', - background: 'img.png', + background: '/static/aurora_borealis.jpg', logo: '/static/logo.png', logoMask: true, logoMargin: '.2em', @@ -40,7 +41,9 @@ const instance = { state: defaultState, mutations: { setInstanceOption (state, { name, value }) { - set(state, name, value) + if (typeof value !== 'undefined') { + set(state, name, value) + } } }, actions: { @@ -50,6 +53,8 @@ const instance = { case 'name': dispatch('setPageTitle') break + case 'theme': + StyleSetter.setPreset(value, commit) } } } -- cgit v1.2.3-70-g09d2