68 lines
1.5 KiB
JavaScript
Raw Normal View History

import _ from 'lodash'
import Vue from 'vue'
import Vuex from 'vuex'
2018-07-22 00:29:39 -04:00
import pathify from 'vuex-pathify' // eslint-disable-line import/no-duplicates
import { make } from 'vuex-pathify' // eslint-disable-line import/no-duplicates
2018-10-28 22:09:58 -04:00
import page from './page'
2018-08-04 17:27:55 -04:00
import site from './site'
2018-12-02 21:42:43 -05:00
import user from './user'
2018-08-04 17:27:55 -04:00
/* global WIKI */
Vue.use(Vuex)
2018-07-22 00:29:39 -04:00
const state = {
loadingStack: [],
notification: {
message: '',
style: 'primary',
icon: 'cached',
isActive: false
}
}
export default new Vuex.Store({
2018-06-09 20:11:00 -04:00
strict: process.env.NODE_ENV !== 'production',
2018-07-15 19:16:19 -04:00
plugins: [
pathify.plugin
],
2018-07-22 00:29:39 -04:00
state,
getters: {
isLoading: state => { return state.loadingStack.length > 0 }
},
mutations: {
2018-07-22 00:29:39 -04:00
...make.mutations(state),
2019-09-08 12:39:05 -04:00
loadingStart (st, stackName) {
st.loadingStack = _.union(st.loadingStack, [stackName])
},
2019-09-08 12:39:05 -04:00
loadingStop (st, stackName) {
st.loadingStack = _.without(st.loadingStack, stackName)
},
2019-09-08 12:39:05 -04:00
showNotification (st, opts) {
st.notification = _.defaults(opts, {
message: '',
style: 'primary',
icon: 'cached',
isActive: true
})
},
2019-09-08 12:39:05 -04:00
updateNotificationState (st, newState) {
st.notification.isActive = newState
2019-01-12 22:33:30 -05:00
},
2019-09-08 12:39:05 -04:00
pushGraphError (st, err) {
2019-01-12 22:33:30 -05:00
WIKI.$store.commit('showNotification', {
style: 'red',
message: _.get(err, 'graphQLErrors[0].message', err.message),
icon: 'alert'
2019-01-12 22:33:30 -05:00
})
}
},
actions: { },
2018-08-04 17:27:55 -04:00
modules: {
2018-10-28 22:09:58 -04:00
page,
2018-12-02 21:42:43 -05:00
site,
user
2018-08-04 17:27:55 -04:00
}
})