2018-09-09 16:36:13 +00:00
|
|
|
import { set, delete as del } from 'vue'
|
|
|
|
|
|
|
|
const defaultState = {
|
2020-05-03 14:36:12 +00:00
|
|
|
settingsModalState: 'hidden',
|
2020-06-01 22:10:52 +00:00
|
|
|
settingsModalLoaded: false,
|
2018-09-09 16:36:13 +00:00
|
|
|
settings: {
|
|
|
|
currentSaveStateNotice: null,
|
2018-12-13 11:04:09 +00:00
|
|
|
noticeClearTimeout: null,
|
|
|
|
notificationPermission: null
|
2018-11-30 13:39:07 +00:00
|
|
|
},
|
|
|
|
browserSupport: {
|
|
|
|
cssFilter: window.CSS && window.CSS.supports && (
|
|
|
|
window.CSS.supports('filter', 'drop-shadow(0 0)') ||
|
2018-12-13 11:22:15 +00:00
|
|
|
window.CSS.supports('-webkit-filter', 'drop-shadow(0 0)')
|
2018-11-30 13:39:07 +00:00
|
|
|
)
|
2019-03-03 14:33:40 +00:00
|
|
|
},
|
2020-07-02 07:40:41 +00:00
|
|
|
mobileLayout: false,
|
|
|
|
globalNotices: []
|
2018-09-09 16:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const interfaceMod = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations: {
|
|
|
|
settingsSaved (state, { success, error }) {
|
|
|
|
if (success) {
|
|
|
|
if (state.noticeClearTimeout) {
|
|
|
|
clearTimeout(state.noticeClearTimeout)
|
|
|
|
}
|
|
|
|
set(state.settings, 'currentSaveStateNotice', { error: false, data: success })
|
|
|
|
set(state.settings, 'noticeClearTimeout',
|
2018-12-13 11:04:09 +00:00
|
|
|
setTimeout(() => del(state.settings, 'currentSaveStateNotice'), 2000))
|
2018-09-09 16:36:13 +00:00
|
|
|
} else {
|
|
|
|
set(state.settings, 'currentSaveStateNotice', { error: true, errorData: error })
|
|
|
|
}
|
2018-12-13 11:04:09 +00:00
|
|
|
},
|
|
|
|
setNotificationPermission (state, permission) {
|
|
|
|
state.notificationPermission = permission
|
2019-03-03 14:33:40 +00:00
|
|
|
},
|
|
|
|
setMobileLayout (state, value) {
|
|
|
|
state.mobileLayout = value
|
2020-05-03 14:36:12 +00:00
|
|
|
},
|
|
|
|
closeSettingsModal (state) {
|
|
|
|
state.settingsModalState = 'hidden'
|
|
|
|
},
|
|
|
|
togglePeekSettingsModal (state) {
|
|
|
|
switch (state.settingsModalState) {
|
|
|
|
case 'minimized':
|
|
|
|
state.settingsModalState = 'visible'
|
|
|
|
return
|
|
|
|
case 'visible':
|
|
|
|
state.settingsModalState = 'minimized'
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
throw new Error('Illegal minimization state of settings modal')
|
|
|
|
}
|
|
|
|
},
|
|
|
|
openSettingsModal (state) {
|
|
|
|
state.settingsModalState = 'visible'
|
2020-06-01 22:10:52 +00:00
|
|
|
if (!state.settingsModalLoaded) {
|
|
|
|
state.settingsModalLoaded = true
|
|
|
|
}
|
2020-07-01 16:15:28 +00:00
|
|
|
},
|
2020-07-02 07:40:41 +00:00
|
|
|
pushGlobalNotice (state, notice) {
|
|
|
|
state.globalNotices.push(notice)
|
|
|
|
},
|
|
|
|
removeGlobalNotice (state, notice) {
|
|
|
|
state.globalNotices = state.globalNotices.filter(n => n !== notice)
|
2018-09-09 16:36:13 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2018-09-09 18:21:23 +00:00
|
|
|
setPageTitle ({ rootState }, option = '') {
|
|
|
|
document.title = `${option} ${rootState.instance.name}`
|
2018-09-09 16:36:13 +00:00
|
|
|
},
|
|
|
|
settingsSaved ({ commit, dispatch }, { success, error }) {
|
|
|
|
commit('settingsSaved', { success, error })
|
2018-12-13 11:04:09 +00:00
|
|
|
},
|
|
|
|
setNotificationPermission ({ commit }, permission) {
|
|
|
|
commit('setNotificationPermission', permission)
|
2019-03-03 14:33:40 +00:00
|
|
|
},
|
|
|
|
setMobileLayout ({ commit }, value) {
|
|
|
|
commit('setMobileLayout', value)
|
2020-05-03 14:36:12 +00:00
|
|
|
},
|
|
|
|
closeSettingsModal ({ commit }) {
|
|
|
|
commit('closeSettingsModal')
|
|
|
|
},
|
|
|
|
openSettingsModal ({ commit }) {
|
|
|
|
commit('openSettingsModal')
|
|
|
|
},
|
|
|
|
togglePeekSettingsModal ({ commit }) {
|
|
|
|
commit('togglePeekSettingsModal')
|
2020-07-01 16:15:28 +00:00
|
|
|
},
|
2020-07-02 07:40:41 +00:00
|
|
|
pushGlobalNotice (
|
|
|
|
{ commit, dispatch },
|
|
|
|
{
|
|
|
|
messageKey,
|
|
|
|
messageArgs = {},
|
|
|
|
level = 'error',
|
|
|
|
timeout = 0
|
|
|
|
}) {
|
|
|
|
const notice = {
|
|
|
|
messageKey,
|
|
|
|
messageArgs,
|
|
|
|
level
|
|
|
|
}
|
|
|
|
if (timeout) {
|
|
|
|
setTimeout(() => dispatch('removeGlobalNotice', notice), timeout)
|
|
|
|
}
|
|
|
|
commit('pushGlobalNotice', notice)
|
2020-07-02 07:46:43 +00:00
|
|
|
return notice
|
2020-07-02 07:40:41 +00:00
|
|
|
},
|
|
|
|
removeGlobalNotice ({ commit }, notice) {
|
|
|
|
commit('removeGlobalNotice', notice)
|
2018-09-09 16:36:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default interfaceMod
|