library.js 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. import Vue from 'vue'
  2. import router from '@/router'
  3. import api from '@/api'
  4. import {
  5. parseNodesQueryParams,
  6. getUniqueNodesIds,
  7. getRelatedNodesIds,
  8. getRandomIds,
  9. buildTree
  10. } from '@/store/utils.js'
  11. export default {
  12. state: {
  13. trees: {},
  14. randomNodes: undefined,
  15. nodebook: [],
  16. // LibraryOptions options
  17. tagsOptions: [],
  18. // LibraryOptions state
  19. mode: undefined,
  20. nodeDepartId: undefined,
  21. search: '',
  22. tags: [],
  23. strangeness: undefined
  24. },
  25. mutations: {
  26. // ╷ ╶┬╴┌─╮┌─╮╭─┐┌─╮╷ ╷
  27. // │ │ │╶┤├┬╯├─┤├┬╯╰─┤
  28. // ╰─╴╶┴╴└─╯╵ ╰╵ ╵╵ ╰╶─╯
  29. 'SET_NODEBOOK' (state, nodes) {
  30. state.nodebook = nodes
  31. },
  32. 'ADD_NODEBOOK_NODE' (state, [stack, parentId, childId]) {
  33. if (stack === undefined) {
  34. stack = childId === undefined ? [parentId] : [parentId, childId]
  35. state.nodebook.push(stack)
  36. return
  37. }
  38. if (stack !== undefined && parentId !== undefined) {
  39. state.nodebook.push(state.nodebook.splice(state.nodebook.indexOf(stack), 1)[0])
  40. }
  41. if (childId) {
  42. if (stack.includes(childId)) {
  43. stack.push(stack.splice(stack.indexOf(childId), 1)[0])
  44. } else {
  45. stack.push(childId)
  46. }
  47. }
  48. },
  49. 'REMOVE_NODEBOOK_NODE' (state, [stack, nodeId]) {
  50. if (stack[0] === nodeId) {
  51. state.nodebook.splice(state.nodebook.indexOf(stack), 1)
  52. } else {
  53. stack.splice(stack.indexOf(nodeId), 1)
  54. }
  55. },
  56. 'ADD_NODE_TREE' (state, [id, tree]) {
  57. Vue.set(state.trees, id, tree)
  58. },
  59. // ╭─╮┌─╮╶┬╴╶┬╴╭─╮╭╮╷╭─╴
  60. // │ │├─╯ │ │ │ ││││╰─╮
  61. // ╰─╯╵ ╵ ╶┴╴╰─╯╵╰╯╶─╯
  62. 'SET_TAGS_OPTIONS' (state, nodes) {
  63. const tags = nodes.reduce((tags, node) => tags.concat(node.tags || []), [])
  64. state.tagsOptions = Array.from(new Set(tags.map(tag => tag.name)))
  65. },
  66. 'UPDATE_TAGS' (state, tags) {
  67. state.tags = tags
  68. },
  69. 'UPDATE_STRANGENESS' (state, strangenessLvl) {
  70. state.strangeness = strangenessLvl
  71. },
  72. 'SET_MODE' (state, mode) {
  73. state.mode = mode
  74. },
  75. 'SET_NODE_DEPART_ID' (state, id) {
  76. state.nodeDepartId = id
  77. },
  78. 'SET_RANDOM_NODES' (state, ids) {
  79. state.randomNodes = ids
  80. },
  81. 'SET_SEARCH' (state, str) {
  82. state.search = str
  83. }
  84. },
  85. actions: {
  86. // ╷ ╶┬╴┌─╮┌─╮╭─┐┌─╮╷ ╷
  87. // │ │ │╶┤├┬╯├─┤├┬╯╰─┤
  88. // ╰─╴╶┴╴└─╯╵ ╰╵ ╵╵ ╰╶─╯
  89. async 'INIT_LIBRARY' ({ state, commit, dispatch, rootState }) {
  90. const departIds = await dispatch('GET_ALL_NODES_IDS', 'depart')
  91. await dispatch('GET_NODES', { ids: departIds, dataLevel: 'initial' })
  92. if (state.nodebook && state.nodebook.length) {
  93. commit('UPDATE_OPTIONS_VISIBILITY', false)
  94. }
  95. return departIds
  96. },
  97. async 'INIT_LIBRARY_TREE' ({ state, commit, dispatch, rootState }) {
  98. const ids = await dispatch('INIT_LIBRARY')
  99. return dispatch('SET_NODE_DEPART_ID', ids[ids.length - 1])
  100. },
  101. async 'INIT_LIBRARY_MAP' ({ state, commit, dispatch }) {
  102. await dispatch('INIT_LIBRARY')
  103. return dispatch('ROLL_RANDOM_NODES')
  104. },
  105. async 'INIT_LIBRARY_LIST' ({ state, commit, dispatch }) {
  106. const departIds = await dispatch('INIT_LIBRARY')
  107. const nodes = await dispatch('GET_NODES', { ids: departIds, dataLevel: 'partial' })
  108. commit('SET_TAGS_OPTIONS', nodes)
  109. return nodes
  110. },
  111. async 'UPDATE_NODEBOOK' ({ state, commit, dispatch }, query) {
  112. const { mode = 'tree', nodebook } = parseNodesQueryParams(query)
  113. commit('SET_MODE', mode)
  114. const ids = [].concat(...nodebook)
  115. await dispatch('GET_NODES', { ids, dataLevel: 'full' })
  116. commit('SET_NODEBOOK', nodebook)
  117. commit('ADD_HISTORY_ENTRIES', ids)
  118. },
  119. // ╭╮╷╭─╮┌─╮┌─╴╭─╴
  120. // ││││ ││ │├─╴╰─╮
  121. // ╵╰╯╰─╯└─╯╰─╴╶─╯
  122. 'UPDATE_QUERY_NODES' ({ state }, from) {
  123. const query = {
  124. mode: state.mode,
  125. nodes: [...state.nodebook.map(ids => ids.join(','))]
  126. }
  127. router.push({ query })
  128. },
  129. async 'OPEN_NODE' ({ state, commit, dispatch }, { parentId, childId }) {
  130. if (state.nodebook === undefined || !state.nodebook.length) {
  131. commit('UPDATE_OPTIONS_VISIBILITY', false)
  132. }
  133. const stack = state.nodebook.find(stack => stack[0] === parentId)
  134. commit('ADD_NODEBOOK_NODE', [stack, parentId, childId])
  135. dispatch('UPDATE_QUERY_NODES')
  136. commit('ADD_HISTORY_ENTRIES', [childId || parentId])
  137. },
  138. 'CLOSE_NODE' ({ state, commit, dispatch }, { parentId, childId }) {
  139. const stack = state.nodebook.find(stack => stack.includes(parentId) && (childId ? stack.includes(childId) : true))
  140. commit('REMOVE_NODEBOOK_NODE', [stack, childId || parentId])
  141. if (!state.nodebook.length) {
  142. commit('UPDATE_OPTIONS_VISIBILITY', true)
  143. }
  144. dispatch('UPDATE_QUERY_NODES')
  145. },
  146. // ╭─╮┌─╮╶┬╴╶┬╴╭─╮╭╮╷╭─╴
  147. // │ │├─╯ │ │ │ ││││╰─╮
  148. // ╰─╯╵ ╵ ╶┴╴╰─╯╵╰╯╶─╯
  149. async 'SET_NODE_DEPART_ID' ({ state, rootState, commit, dispatch, getters }, id) {
  150. if (state.nodeDepartId === id) return
  151. commit('SET_NODE_DEPART_ID', id)
  152. if (!(id in state.trees)) {
  153. const treeData = await api.queryRecursiveNodes([id])
  154. const nodes = await dispatch('GET_NODES', { ids: getUniqueNodesIds(treeData), dataLevel: 'initial' })
  155. commit('ADD_NODE_TREE', [id, buildTree(treeData, nodes)])
  156. }
  157. return getters.nodeTree
  158. },
  159. async 'ROLL_RANDOM_NODES' ({ state, rootState, commit, dispatch }) {
  160. commit('SET_RANDOM_NODES', undefined)
  161. const ids = getRandomIds(rootState.ids.depart)
  162. const departNodes = await dispatch('GET_NODES', { ids, dataLevel: 'partial' })
  163. const relatedIds = getRelatedNodesIds(departNodes, ids)
  164. const relatedNodes = await dispatch('GET_NODES', { ids: relatedIds, dataLevel: 'partial' })
  165. const nodes = [...departNodes, ...relatedNodes]
  166. commit('SET_RANDOM_NODES', [...ids, ...relatedIds])
  167. commit('SET_TAGS_OPTIONS', nodes)
  168. },
  169. 'UPDATE_QUERY_MODE' (store, mode) {
  170. if (router.currentRoute.query.mode === mode) return
  171. router.push({ query: { mode } })
  172. }
  173. },
  174. getters: {
  175. // LibraryOptions state
  176. mode: state => state.mode,
  177. nodeDepartId: state => state.nodeDepartId,
  178. search: state => state.search,
  179. tags: state => state.tags,
  180. strangeness: state => state.strangeness,
  181. // LibraryOptions options
  182. tagsOptions: state => state.tagsOptions,
  183. nodesDepartsOptions: (state, getters, rootState) => {
  184. const departIds = rootState.ids.depart
  185. if (departIds === undefined) return
  186. const nodes = departIds.map(id => rootState.nodes[id])
  187. if (nodes.some(node => node === undefined)) return
  188. return nodes.map(node => {
  189. const firstAuthor = node.authors !== null ? node.authors[0].name : 'Pad de noms'
  190. return {
  191. text: `${firstAuthor}, ${node.title} (${node.id})`,
  192. value: node.id
  193. }
  194. })
  195. },
  196. // Library
  197. nodebook: (state, getters, rootState) => {
  198. return state.nodebook.map(([parentId, ...childrenIds]) => {
  199. return {
  200. parent: rootState.nodes[parentId],
  201. children: childrenIds.map(id => rootState.nodes[id])
  202. }
  203. })
  204. },
  205. // LibraryList
  206. orderedTextsDepart: (state, getters, rootState) => {
  207. const departIds = rootState.ids.depart
  208. if (departIds === undefined || rootState.nodes[departIds[0]] === undefined) return
  209. const nodesDict = {}
  210. for (const node of rootState.ids.depart.map(id => rootState.nodes[id])) {
  211. if (!node.authors) {
  212. if (!('~' in nodesDict)) nodesDict['~'] = []
  213. nodesDict['~'].push(node)
  214. } else {
  215. node.authors.forEach((author, i) => {
  216. const firstChar = author.last_name[0].toUpperCase()
  217. if (!(firstChar in nodesDict)) nodesDict[firstChar] = []
  218. nodesDict[firstChar].push({ last_name: author.last_name, node })
  219. })
  220. }
  221. }
  222. return Object.entries(nodesDict).sort((a, b) => a[0] < b[0] ? -1 : 1).map(group => {
  223. if (group[0] === '~') return group
  224. return [group[0], group[1].sort((a, b) => {
  225. const prev = a.last_name.toLowerCase()
  226. const next = b.last_name.toLowerCase()
  227. if (prev === next) return 0
  228. return prev < next ? -1 : 1
  229. }).map(node => node.node)]
  230. })
  231. },
  232. // LibraryMap
  233. randomNodes: (state, getters, rootState) => {
  234. if (state.randomNodes === undefined) return
  235. return state.randomNodes.map(id => rootState.nodes[id])
  236. },
  237. // LibraryTree
  238. nodeTree: state => {
  239. return state.trees[state.nodeDepartId] || { nodes: [], links: [] }
  240. },
  241. // Commons
  242. activeNodes: state => {
  243. if (!state.nodebook) return []
  244. return state.nodebook.reduce((acc, ids) => [...acc, ...ids], [])
  245. }
  246. }
  247. }