2018-06-19 06:17:50 -07:00
|
|
|
import { set, delete as del } from 'vue'
|
2017-02-14 13:21:23 -08:00
|
|
|
import StyleSetter from '../services/style_setter/style_setter.js'
|
|
|
|
|
|
|
|
const defaultState = {
|
2017-02-22 12:14:55 -08:00
|
|
|
name: 'Pleroma FE',
|
2017-02-22 15:04:47 -08:00
|
|
|
colors: {},
|
2018-08-19 19:41:40 -07:00
|
|
|
collapseMessageWithSubject: false,
|
2017-02-22 15:38:05 -08:00
|
|
|
hideAttachments: false,
|
2017-03-04 12:25:59 -08:00
|
|
|
hideAttachmentsInConv: false,
|
2017-04-09 06:53:23 -07:00
|
|
|
hideNsfw: true,
|
2018-08-15 02:51:21 -07:00
|
|
|
loopVideo: true,
|
|
|
|
loopVideoSilentOnly: true,
|
2017-06-03 08:51:55 -07:00
|
|
|
autoLoad: true,
|
2017-11-12 15:06:48 -08:00
|
|
|
streaming: false,
|
2017-06-07 07:58:24 -07:00
|
|
|
hoverPreview: true,
|
2018-08-15 02:51:21 -07:00
|
|
|
pauseOnUnfocused: true,
|
2018-08-18 03:56:45 -07:00
|
|
|
stopGifs: false,
|
2018-06-19 06:17:50 -07:00
|
|
|
muteWords: [],
|
|
|
|
highlight: {}
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations: {
|
|
|
|
setOption (state, { name, value }) {
|
|
|
|
set(state, name, value)
|
2018-06-19 06:17:50 -07:00
|
|
|
},
|
2018-08-04 19:18:04 -07:00
|
|
|
setHighlight (state, { user, color, type }) {
|
|
|
|
const data = this.state.config.highlight[user]
|
|
|
|
if (color || type) {
|
|
|
|
set(state.highlight, user, { color: color || data.color, type: type || data.type })
|
2018-06-19 06:17:50 -07:00
|
|
|
} else {
|
|
|
|
del(state.highlight, user)
|
|
|
|
}
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2017-02-18 11:42:00 -08:00
|
|
|
setPageTitle ({state}, option = '') {
|
2017-02-18 12:43:26 -08:00
|
|
|
document.title = `${option} ${state.name}`
|
2017-02-18 11:42:00 -08:00
|
|
|
},
|
2018-08-04 19:18:04 -07:00
|
|
|
setHighlight ({ commit, dispatch }, { user, color, type }) {
|
|
|
|
commit('setHighlight', {user, color, type})
|
2018-06-19 06:17:50 -07:00
|
|
|
},
|
2017-02-18 11:42:00 -08:00
|
|
|
setOption ({ commit, dispatch }, { name, value }) {
|
2017-02-14 13:21:23 -08:00
|
|
|
commit('setOption', {name, value})
|
|
|
|
switch (name) {
|
|
|
|
case 'name':
|
2017-02-18 11:42:00 -08:00
|
|
|
dispatch('setPageTitle')
|
2017-02-14 13:21:23 -08:00
|
|
|
break
|
|
|
|
case 'theme':
|
2017-11-17 07:24:42 -08:00
|
|
|
StyleSetter.setPreset(value, commit)
|
2017-11-13 15:37:49 -08:00
|
|
|
break
|
|
|
|
case 'customTheme':
|
2017-11-17 07:24:42 -08:00
|
|
|
StyleSetter.setColors(value, commit)
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|