|
@@ -1,10 +1,12 @@
|
|
import Vue from 'vue'
|
|
import Vue from 'vue'
|
|
|
|
+import router from '@/router'
|
|
|
|
|
|
import api from '@/api'
|
|
import api from '@/api'
|
|
import {
|
|
import {
|
|
AllTags
|
|
AllTags
|
|
} from '@/api/queries'
|
|
} from '@/api/queries'
|
|
import {
|
|
import {
|
|
|
|
+ parseNodesQueryParams,
|
|
getUniqueNodesIds,
|
|
getUniqueNodesIds,
|
|
getRelatedNodesIds,
|
|
getRelatedNodesIds,
|
|
buildTree
|
|
buildTree
|
|
@@ -16,10 +18,38 @@ export default {
|
|
tags: undefined,
|
|
tags: undefined,
|
|
strangeness: [0, 1, 2, 3, 4],
|
|
strangeness: [0, 1, 2, 3, 4],
|
|
nodeDepartId: undefined,
|
|
nodeDepartId: undefined,
|
|
- trees: {}
|
|
|
|
|
|
+ trees: {},
|
|
|
|
+ mode: undefined,
|
|
|
|
+ nodebook: undefined
|
|
},
|
|
},
|
|
|
|
|
|
mutations: {
|
|
mutations: {
|
|
|
|
+ 'SET_MODE' (state, mode) {
|
|
|
|
+ state.mode = mode
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'SET_NODEBOOK' (state, nodes) {
|
|
|
|
+ state.nodebook = nodes
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'ADD_NODEBOOK_NODE' (state, [stack, parentId, childId]) {
|
|
|
|
+ console.log('ADD_NODEBOOK_NODE', stack, parentId, childId)
|
|
|
|
+ if (stack === undefined) {
|
|
|
|
+ stack = childId === undefined ? [parentId] : [parentId, childId]
|
|
|
|
+ state.nodebook.push(stack)
|
|
|
|
+ } else {
|
|
|
|
+ stack.push(childId)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'REMOVE_NODEBOOK_NODE' (state, [stack, nodeId]) {
|
|
|
|
+ if (stack[0] === nodeId) {
|
|
|
|
+ state.nodebook.splice(state.nodebook.indexOf(stack), 1)
|
|
|
|
+ } else {
|
|
|
|
+ stack.splice(stack.indexOf(nodeId), 1)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
'SET_TAGS' (state, tags) {
|
|
'SET_TAGS' (state, tags) {
|
|
state.tags = tags
|
|
state.tags = tags
|
|
},
|
|
},
|
|
@@ -34,9 +64,30 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
actions: {
|
|
actions: {
|
|
|
|
+ async 'UPDATE_NODEBOOK' ({ state, commit, dispatch }, query) {
|
|
|
|
+ const { mode = 'tree', nodebook } = parseNodesQueryParams(query)
|
|
|
|
+ commit('SET_MODE', mode)
|
|
|
|
+ await dispatch('GET_NODES', { ids: [].concat(...nodebook), dataLevel: 'full' })
|
|
|
|
+ commit('SET_NODEBOOK', nodebook)
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'UPDATE_QUERY_NODES' ({ state }, from) {
|
|
|
|
+ const query = {
|
|
|
|
+ mode: state.mode,
|
|
|
|
+ nodes: [...state.nodebook.map(ids => ids.join(','))]
|
|
|
|
+ }
|
|
|
|
+ router.push({ query })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'UPDATE_QUERY_MODE' (store, mode) {
|
|
|
|
+ if (router.currentRoute.query.mode === mode) return
|
|
|
|
+ router.push({ query: { mode } })
|
|
|
|
+ },
|
|
|
|
+
|
|
async 'INIT_LIBRARY' ({ state, commit, dispatch, rootState }) {
|
|
async 'INIT_LIBRARY' ({ state, commit, dispatch, rootState }) {
|
|
const departIds = await dispatch('GET_ALL_NODES_IDS', 'depart')
|
|
const departIds = await dispatch('GET_ALL_NODES_IDS', 'depart')
|
|
await dispatch('GET_NODES', { ids: departIds, dataLevel: 'initial' })
|
|
await dispatch('GET_NODES', { ids: departIds, dataLevel: 'initial' })
|
|
|
|
+ dispatch('GET_ALL_TAGS')
|
|
return departIds
|
|
return departIds
|
|
},
|
|
},
|
|
|
|
|
|
@@ -78,12 +129,42 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
return getters.nodeTree
|
|
return getters.nodeTree
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ async 'OPEN_NODE' ({ state, commit, dispatch }, [parentId, childId]) {
|
|
|
|
+ const stack = state.nodebook.find(stack => stack[0] === parentId)
|
|
|
|
+ if (stack && (childId === undefined || stack.includes(childId))) return
|
|
|
|
+ commit('ADD_NODEBOOK_NODE', [stack, parentId, childId])
|
|
|
|
+ dispatch('UPDATE_QUERY_NODES')
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ 'CLOSE_NODE' ({ state, commit, dispatch }, [parentId, childId]) {
|
|
|
|
+ const stack = state.nodebook.find(stack => stack.includes(parentId) && (childId ? stack.includes(childId) : true))
|
|
|
|
+ commit('REMOVE_NODEBOOK_NODE', [stack, childId || parentId])
|
|
|
|
+ dispatch('UPDATE_QUERY_NODES')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
getters: {
|
|
getters: {
|
|
|
|
+ mode: (state) => state.mode,
|
|
|
|
+
|
|
|
|
+ nodebook: (state, getters, rootState) => {
|
|
|
|
+ if (!state.nodebook) return []
|
|
|
|
+ return state.nodebook.map(([parentId, ...childrenIds]) => {
|
|
|
|
+ return {
|
|
|
|
+ parent: rootState.nodes[parentId],
|
|
|
|
+ children: childrenIds.map(id => rootState.nodes[id])
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ activeNodes: (state) => {
|
|
|
|
+ if (!state.nodebook) return []
|
|
|
|
+ return state.nodebook.reduce((acc, ids) => [...acc, ...ids], [])
|
|
|
|
+ },
|
|
|
|
+
|
|
tagsOptions: state => {
|
|
tagsOptions: state => {
|
|
- if (state.tags === undefined) return
|
|
|
|
|
|
+ if (state.tags === undefined) return []
|
|
return state.tags.map(tag => ({ value: tag.id, text: tag.name }))
|
|
return state.tags.map(tag => ({ value: tag.id, text: tag.name }))
|
|
},
|
|
},
|
|
|
|
|