mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
584 B
31 lines
584 B
import { make } from 'vuex-pathify'
|
|
|
|
const state = {
|
|
editor: '',
|
|
editorKey: '',
|
|
content: '',
|
|
mode: 'create',
|
|
activeModal: '',
|
|
activeModalData: null,
|
|
media: {
|
|
folderTree: [],
|
|
currentFolderId: 0,
|
|
currentFileId: null
|
|
},
|
|
checkoutDateActive: ''
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
mutations: {
|
|
...make.mutations(state),
|
|
pushMediaFolderTree: (st, folder) => {
|
|
st.media.folderTree = st.media.folderTree.concat(folder)
|
|
},
|
|
popMediaFolderTree: (st) => {
|
|
st.media.folderTree = st.media.folderTree.slice(0, -1)
|
|
}
|
|
}
|
|
}
|