2018-06-19 16:17:50 +03:00
|
|
|
import { set, delete as del } from 'vue'
|
2017-02-14 22:21:23 +01:00
|
|
|
import StyleSetter from '../services/style_setter/style_setter.js'
|
|
|
|
|
2018-08-25 13:12:33 +03:00
|
|
|
const browserLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
|
2017-02-14 22:21:23 +01:00
|
|
|
const defaultState = {
|
2017-02-23 00:04:47 +01:00
|
|
|
colors: {},
|
2018-09-25 14:47:02 +03:00
|
|
|
collapseMessageWithSubject: undefined, // instance default
|
2017-02-22 18:38:05 -05:00
|
|
|
hideAttachments: false,
|
2017-03-04 21:25:59 +01:00
|
|
|
hideAttachmentsInConv: false,
|
2017-04-09 15:53:23 +02:00
|
|
|
hideNsfw: true,
|
2018-08-15 12:51:21 +03:00
|
|
|
loopVideo: true,
|
|
|
|
loopVideoSilentOnly: true,
|
2017-06-03 18:51:55 +03:00
|
|
|
autoLoad: true,
|
2017-11-13 01:06:48 +02:00
|
|
|
streaming: false,
|
2017-06-07 17:58:24 +03:00
|
|
|
hoverPreview: true,
|
2018-08-15 12:51:21 +03:00
|
|
|
pauseOnUnfocused: true,
|
2018-08-18 13:56:45 +03:00
|
|
|
stopGifs: false,
|
2018-08-24 20:04:26 +01:00
|
|
|
replyVisibility: 'all',
|
2018-08-28 21:21:29 +03:00
|
|
|
notificationVisibility: {
|
|
|
|
follows: true,
|
|
|
|
mentions: true,
|
|
|
|
likes: true,
|
|
|
|
repeats: true
|
|
|
|
},
|
2018-06-19 16:17:50 +03:00
|
|
|
muteWords: [],
|
2018-08-25 13:12:33 +03:00
|
|
|
highlight: {},
|
2018-09-25 14:47:02 +03:00
|
|
|
interfaceLanguage: browserLocale,
|
|
|
|
scopeCopy: undefined, // instance default
|
2018-12-03 06:47:35 +03:00
|
|
|
subjectLineBehavior: undefined, // instance default
|
|
|
|
alwaysShowSubjectInput: undefined // instance default
|
2017-02-14 22:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations: {
|
|
|
|
setOption (state, { name, value }) {
|
|
|
|
set(state, name, value)
|
2018-06-19 16:17:50 +03:00
|
|
|
},
|
2018-08-05 05:18:04 +03: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 16:17:50 +03:00
|
|
|
} else {
|
|
|
|
del(state.highlight, user)
|
|
|
|
}
|
2017-02-14 22:21:23 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2018-08-05 05:18:04 +03:00
|
|
|
setHighlight ({ commit, dispatch }, { user, color, type }) {
|
|
|
|
commit('setHighlight', {user, color, type})
|
2018-06-19 16:17:50 +03:00
|
|
|
},
|
2017-02-18 20:42:00 +01:00
|
|
|
setOption ({ commit, dispatch }, { name, value }) {
|
2017-02-14 22:21:23 +01:00
|
|
|
commit('setOption', {name, value})
|
|
|
|
switch (name) {
|
|
|
|
case 'theme':
|
2017-11-17 17:24:42 +02:00
|
|
|
StyleSetter.setPreset(value, commit)
|
2017-11-14 01:37:49 +02:00
|
|
|
break
|
|
|
|
case 'customTheme':
|
2017-11-17 17:24:42 +02:00
|
|
|
StyleSetter.setColors(value, commit)
|
2017-02-14 22:21:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|