2020-05-08 20:43:51 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
import NamespaceService from '../../services/namespace'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state: () => ({
|
|
|
|
namespaces: [],
|
|
|
|
}),
|
|
|
|
mutations: {
|
|
|
|
namespaces(state, namespaces) {
|
|
|
|
state.namespaces = namespaces
|
|
|
|
},
|
|
|
|
setNamespaceById(state, namespace) {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
if (state.namespaces[n].id === namespace.id) {
|
|
|
|
namespace.lists = state.namespaces[n].lists
|
|
|
|
Vue.set(state.namespaces, n, namespace)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
setListInNamespaceById(state, list) {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
// We don't have the namespace id on the list which means we need to loop over all lists until we find it.
|
|
|
|
// FIXME: Not ideal at all - we should fix that at the api level.
|
2020-09-06 16:20:48 +02:00
|
|
|
if (state.namespaces[n].id === list.namespaceId) {
|
|
|
|
for (const l in state.namespaces[n].lists) {
|
|
|
|
if (state.namespaces[n].lists[l].id === list.id) {
|
|
|
|
const namespace = state.namespaces[n]
|
|
|
|
namespace.lists[l] = list
|
|
|
|
Vue.set(state.namespaces, n, namespace)
|
|
|
|
return
|
|
|
|
}
|
2020-05-08 20:43:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
addNamespace(state, namespace) {
|
|
|
|
state.namespaces.push(namespace)
|
|
|
|
},
|
|
|
|
addListToNamespace(state, list) {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
if (state.namespaces[n].id === list.namespaceId) {
|
|
|
|
state.namespaces[n].lists.push(list)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-09-06 16:20:48 +02:00
|
|
|
removeListFromNamespaceById(state, list) {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
// We don't have the namespace id on the list which means we need to loop over all lists until we find it.
|
|
|
|
// FIXME: Not ideal at all - we should fix that at the api level.
|
|
|
|
if (state.namespaces[n].id === list.namespaceId) {
|
|
|
|
for (const l in state.namespaces[n].lists) {
|
|
|
|
if (state.namespaces[n].lists[l].id === list.id) {
|
|
|
|
state.namespaces[n].lists.splice(l, 1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
2020-05-09 19:33:37 +02:00
|
|
|
getters: {
|
2020-05-09 23:28:54 +02:00
|
|
|
getListAndNamespaceById: state => listId => {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
for (const l in state.namespaces[n].lists) {
|
|
|
|
if (state.namespaces[n].lists[l].id === listId) {
|
|
|
|
return {
|
|
|
|
list: state.namespaces[n].lists[l],
|
|
|
|
namespace: state.namespaces[n],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
},
|
2020-06-27 23:12:33 +02:00
|
|
|
getNamespaceById: state => namespaceId => {
|
|
|
|
for (const n in state.namespaces) {
|
|
|
|
if (state.namespaces[n].id === namespaceId) {
|
|
|
|
return state.namespaces[n]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
},
|
2020-05-09 19:33:37 +02:00
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
actions: {
|
|
|
|
loadNamespaces(ctx) {
|
|
|
|
const namespaceService = new NamespaceService()
|
|
|
|
// We always load all namespaces and filter them on the frontend
|
|
|
|
return namespaceService.getAll({}, {is_archived: true})
|
|
|
|
.then(r => {
|
|
|
|
ctx.commit('namespaces', r)
|
2020-05-11 16:52:58 +02:00
|
|
|
|
|
|
|
// Put all lists in the list state
|
|
|
|
const lists = []
|
|
|
|
r.forEach(n => {
|
|
|
|
n.lists.forEach(l => {
|
|
|
|
lists.push(l)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-06-27 23:12:33 +02:00
|
|
|
ctx.commit('lists/addLists', lists, {root: true})
|
2020-05-11 16:52:58 +02:00
|
|
|
|
2020-05-08 20:43:51 +02:00
|
|
|
return Promise.resolve()
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
return Promise.reject(e)
|
|
|
|
})
|
|
|
|
},
|
2020-09-05 22:16:17 +02:00
|
|
|
loadNamespacesIfFavoritesDontExist(ctx) {
|
|
|
|
// The first namespace should be the one holding all favorites
|
2020-09-05 22:35:52 +02:00
|
|
|
if (ctx.state.namespaces[0].id !== -2) {
|
2020-09-05 22:16:17 +02:00
|
|
|
return ctx.dispatch('loadNamespaces')
|
|
|
|
}
|
|
|
|
},
|
2020-09-06 16:20:48 +02:00
|
|
|
removeFavoritesNamespaceIfEmpty(ctx) {
|
|
|
|
if (ctx.state.namespaces[0].id === -2 && ctx.state.namespaces[0].lists.length === 0) {
|
|
|
|
ctx.state.namespaces.splice(0, 1)
|
|
|
|
return Promise.resolve()
|
|
|
|
}
|
|
|
|
},
|
2020-05-08 20:43:51 +02:00
|
|
|
},
|
|
|
|
}
|