wikijs-fork/client/js/store/modules/editor-codeblock.js

23 lines
530 B
JavaScript
Raw Normal View History

2017-10-30 01:36:05 +00:00
/* global wikijs */
export default {
namespaced: true,
state: {
shown: false,
content: ''
},
getters: {},
mutations: {
shownChange: (state, shownState) => { state.shown = shownState },
contentChange: (state, newContent) => { state.content = newContent }
},
actions: {
open({ commit }, opts) {
commit('shownChange', true)
commit('contentChange', opts.initialContent || '')
wikijs.$emit('editorCodeblock/init')
},
close({ commit }) { commit('shownChange', false) }
}
}