2018-03-25 02:35:47 +00:00
|
|
|
import _ from 'lodash'
|
2017-05-21 20:43:58 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import Vuex from 'vuex'
|
2018-07-22 04:29:39 +00:00
|
|
|
import pathify from 'vuex-pathify' // eslint-disable-line import/no-duplicates
|
|
|
|
import { make } from 'vuex-pathify' // eslint-disable-line import/no-duplicates
|
2017-05-21 20:43:58 +00:00
|
|
|
|
2018-08-04 21:27:55 +00:00
|
|
|
import site from './site'
|
|
|
|
|
2017-05-21 20:43:58 +00:00
|
|
|
Vue.use(Vuex)
|
|
|
|
|
2018-07-22 04:29:39 +00:00
|
|
|
const state = {
|
|
|
|
loadingStack: [],
|
|
|
|
notification: {
|
|
|
|
message: '',
|
|
|
|
style: 'primary',
|
|
|
|
icon: 'cached',
|
|
|
|
isActive: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:43:58 +00:00
|
|
|
export default new Vuex.Store({
|
2018-06-10 00:11:00 +00:00
|
|
|
strict: process.env.NODE_ENV !== 'production',
|
2018-07-15 23:16:19 +00:00
|
|
|
plugins: [
|
|
|
|
pathify.plugin
|
|
|
|
],
|
2018-07-22 04:29:39 +00:00
|
|
|
state,
|
2018-03-25 02:35:47 +00:00
|
|
|
getters: {
|
|
|
|
isLoading: state => { return state.loadingStack.length > 0 }
|
2017-05-21 20:43:58 +00:00
|
|
|
},
|
2018-03-25 02:35:47 +00:00
|
|
|
mutations: {
|
2018-07-22 04:29:39 +00:00
|
|
|
...make.mutations(state),
|
2018-03-25 02:35:47 +00:00
|
|
|
loadingStart (state, stackName) {
|
|
|
|
state.loadingStack = _.union(state.loadingStack, [stackName])
|
|
|
|
},
|
|
|
|
loadingStop (state, stackName) {
|
|
|
|
state.loadingStack = _.without(state.loadingStack, stackName)
|
|
|
|
},
|
|
|
|
showNotification (state, opts) {
|
|
|
|
state.notification = _.defaults(opts, {
|
|
|
|
message: '',
|
|
|
|
style: 'primary',
|
|
|
|
icon: 'cached',
|
|
|
|
isActive: true
|
|
|
|
})
|
|
|
|
},
|
|
|
|
updateNotificationState (state, newState) {
|
|
|
|
state.notification.isActive = newState
|
|
|
|
}
|
2017-05-21 20:43:58 +00:00
|
|
|
},
|
2018-03-25 02:35:47 +00:00
|
|
|
actions: { },
|
2018-08-04 21:27:55 +00:00
|
|
|
modules: {
|
|
|
|
site
|
|
|
|
}
|
2017-05-21 20:43:58 +00:00
|
|
|
})
|