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