|
@@ -230,16 +230,13 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
nodesDepartsOptions: (state, getters, rootState) => {
|
|
nodesDepartsOptions: (state, getters, rootState) => {
|
|
- const departIds = rootState.ids.depart
|
|
|
|
- if (departIds === undefined) return
|
|
|
|
- const nodes = departIds.map(id => rootState.nodes[id])
|
|
|
|
- if (nodes.some(node => node === undefined)) return
|
|
|
|
- return nodes.map(node => {
|
|
|
|
- const firstAuthor = node.authors !== null ? node.authors[0].name : 'Pad de noms'
|
|
|
|
- return {
|
|
|
|
- text: `${firstAuthor}, ${node.title} (${node.id})`,
|
|
|
|
- value: node.id
|
|
|
|
- }
|
|
|
|
|
|
+ const nodes = getters.nodesDeparts
|
|
|
|
+ if (nodes === undefined) return
|
|
|
|
+ return nodes.sort((a, b) => {
|
|
|
|
+ const prev = a.authors[0].last_name.toLowerCase()
|
|
|
|
+ const next = b.authors[0].last_name.toLowerCase()
|
|
|
|
+ if (prev === next) return 0
|
|
|
|
+ return prev < next ? -1 : 1
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|