wikijs-fork/client/js/store/modules/editor-file.js
2017-10-29 21:36:05 -04:00

23 lines
500 B
JavaScript

/* global wikijs */
export default {
namespaced: true,
state: {
shown: false,
mode: 'image'
},
getters: {},
mutations: {
shownChange: (state, shownState) => { state.shown = shownState },
modeChange: (state, modeState) => { state.mode = modeState }
},
actions: {
open({ commit }, opts) {
commit('shownChange', true)
commit('modeChange', opts.mode)
wikijs.$emit('editorFile/init')
},
close({ commit }) { commit('shownChange', false) }
}
}