akkoma-fe/src/modules/interface.js

96 lines
2.7 KiB
JavaScript
Raw Normal View History

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',
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
},
storageError: 'none',
browserSupport: {
cssFilter: window.CSS && window.CSS.supports && (
window.CSS.supports('filter', 'drop-shadow(0 0)') ||
window.CSS.supports('-webkit-filter', 'drop-shadow(0 0)')
)
2019-03-03 14:33:40 +00:00
},
mobileLayout: false
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'
if (!state.settingsModalLoaded) {
state.settingsModalLoaded = true
}
},
setStorageError (state, value) {
state.storageError = value
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')
},
setStorageError ({ commit }, value) {
commit('setStorageError', value)
2018-09-09 16:36:13 +00:00
}
}
}
export default interfaceMod