64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import { set, delete as del } from 'vue'
|
|
import StyleSetter from '../services/style_setter/style_setter.js'
|
|
|
|
const browserLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
const defaultState = {
|
|
colors: {},
|
|
collapseMessageWithSubject: false,
|
|
hideAttachments: false,
|
|
hideAttachmentsInConv: false,
|
|
hideNsfw: true,
|
|
loopVideo: true,
|
|
loopVideoSilentOnly: true,
|
|
autoLoad: true,
|
|
streaming: false,
|
|
hoverPreview: true,
|
|
pauseOnUnfocused: true,
|
|
stopGifs: false,
|
|
replyVisibility: 'all',
|
|
notificationVisibility: {
|
|
follows: true,
|
|
mentions: true,
|
|
likes: true,
|
|
repeats: true
|
|
},
|
|
muteWords: [],
|
|
highlight: {},
|
|
interfaceLanguage: browserLocale
|
|
}
|
|
|
|
const config = {
|
|
state: defaultState,
|
|
mutations: {
|
|
setOption (state, { name, value }) {
|
|
set(state, name, value)
|
|
},
|
|
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 })
|
|
} else {
|
|
del(state.highlight, user)
|
|
}
|
|
}
|
|
},
|
|
actions: {
|
|
setHighlight ({ commit, dispatch }, { user, color, type }) {
|
|
commit('setHighlight', {user, color, type})
|
|
},
|
|
setOption ({ commit, dispatch }, { name, value }) {
|
|
commit('setOption', {name, value})
|
|
switch (name) {
|
|
case 'theme':
|
|
StyleSetter.setPreset(value, commit)
|
|
break
|
|
case 'customTheme':
|
|
StyleSetter.setColors(value, commit)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default config
|