2018-06-19 13:17:50 +00:00
|
|
|
import { set, delete as del } from 'vue'
|
2017-02-14 21:21:23 +00:00
|
|
|
import StyleSetter from '../services/style_setter/style_setter.js'
|
|
|
|
|
2018-08-25 10:12:33 +00:00
|
|
|
const browserLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
|
2017-02-14 21:21:23 +00:00
|
|
|
const defaultState = {
|
2017-02-22 20:14:55 +00:00
|
|
|
name: 'Pleroma FE',
|
2017-02-22 23:04:47 +00:00
|
|
|
colors: {},
|
2018-08-20 02:41:40 +00:00
|
|
|
collapseMessageWithSubject: false,
|
2017-02-22 23:38:05 +00:00
|
|
|
hideAttachments: false,
|
2017-03-04 20:25:59 +00:00
|
|
|
hideAttachmentsInConv: false,
|
2017-04-09 13:53:23 +00:00
|
|
|
hideNsfw: true,
|
2018-08-15 09:51:21 +00:00
|
|
|
loopVideo: true,
|
|
|
|
loopVideoSilentOnly: true,
|
2017-06-03 15:51:55 +00:00
|
|
|
autoLoad: true,
|
2017-11-12 23:06:48 +00:00
|
|
|
streaming: false,
|
2017-06-07 14:58:24 +00:00
|
|
|
hoverPreview: true,
|
2018-08-15 09:51:21 +00:00
|
|
|
pauseOnUnfocused: true,
|
2018-08-18 10:56:45 +00:00
|
|
|
stopGifs: false,
|
2018-08-24 19:04:26 +00:00
|
|
|
replyVisibility: 'all',
|
2018-08-28 18:21:29 +00:00
|
|
|
notificationVisibility: {
|
|
|
|
follows: true,
|
|
|
|
mentions: true,
|
|
|
|
likes: true,
|
|
|
|
repeats: true
|
|
|
|
},
|
2018-06-19 13:17:50 +00:00
|
|
|
muteWords: [],
|
2018-08-25 10:12:33 +00:00
|
|
|
highlight: {},
|
2018-09-07 15:17:17 +00:00
|
|
|
interfaceLanguage: browserLocale,
|
|
|
|
_internal: {
|
|
|
|
currentSaveStateNotice: {},
|
|
|
|
noticeClearTimeout: null
|
|
|
|
}
|
2017-02-14 21:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations: {
|
|
|
|
setOption (state, { name, value }) {
|
|
|
|
set(state, name, value)
|
2018-06-19 13:17:50 +00:00
|
|
|
},
|
2018-08-05 02:18:04 +00: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 13:17:50 +00:00
|
|
|
} else {
|
|
|
|
del(state.highlight, user)
|
|
|
|
}
|
2018-09-07 15:17:17 +00:00
|
|
|
},
|
|
|
|
settingsSaved (state, { success, error }) {
|
|
|
|
if (success) {
|
|
|
|
if (state.noticeClearTimeout) {
|
|
|
|
clearTimeout(state.noticeClearTimeout)
|
|
|
|
}
|
|
|
|
set(state._internal, 'currentSaveStateNotice', { error: false, data: success })
|
|
|
|
set(state._internal, 'noticeClearTimeout',
|
|
|
|
setTimeout(() => del(state._internal, 'currentSaveStateNotice'), 2000))
|
|
|
|
} else {
|
|
|
|
set(state._internal, 'currentSaveStateNotice', { error: true, errorData: error })
|
|
|
|
}
|
2017-02-14 21:21:23 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2017-02-18 19:42:00 +00:00
|
|
|
setPageTitle ({state}, option = '') {
|
2017-02-18 20:43:26 +00:00
|
|
|
document.title = `${option} ${state.name}`
|
2017-02-18 19:42:00 +00:00
|
|
|
},
|
2018-08-05 02:18:04 +00:00
|
|
|
setHighlight ({ commit, dispatch }, { user, color, type }) {
|
|
|
|
commit('setHighlight', {user, color, type})
|
2018-06-19 13:17:50 +00:00
|
|
|
},
|
2018-09-07 15:17:17 +00:00
|
|
|
settingsSaved ({ commit, dispatch }, { success, error }) {
|
|
|
|
commit('settingsSaved', { success, error })
|
|
|
|
},
|
2017-02-18 19:42:00 +00:00
|
|
|
setOption ({ commit, dispatch }, { name, value }) {
|
2017-02-14 21:21:23 +00:00
|
|
|
commit('setOption', {name, value})
|
|
|
|
switch (name) {
|
|
|
|
case 'name':
|
2017-02-18 19:42:00 +00:00
|
|
|
dispatch('setPageTitle')
|
2017-02-14 21:21:23 +00:00
|
|
|
break
|
|
|
|
case 'theme':
|
2017-11-17 15:24:42 +00:00
|
|
|
StyleSetter.setPreset(value, commit)
|
2017-11-13 23:37:49 +00:00
|
|
|
break
|
|
|
|
case 'customTheme':
|
2017-11-17 15:24:42 +00:00
|
|
|
StyleSetter.setColors(value, commit)
|
2017-02-14 21:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|