2020-09-06 16:20:48 +02:00
|
|
|
import ListService from '@/services/list'
|
2021-06-24 15:38:25 +02:00
|
|
|
import {setLoading} from '@/store/helper'
|
2022-02-15 13:07:59 +01:00
|
|
|
import {removeListFromHistory} from '@/modules/listHistory'
|
2021-11-14 21:49:52 +01:00
|
|
|
import {createNewIndexer} from '@/indexes'
|
|
|
|
|
|
|
|
const {add, remove, search, update} = createNewIndexer('lists', ['title', 'description'])
|
2020-09-06 16:20:48 +02:00
|
|
|
|
|
|
|
const FavoriteListsNamespace = -2
|
2020-05-11 16:52:58 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
// The state is an object which has the list ids as keys.
|
|
|
|
state: () => ({}),
|
|
|
|
mutations: {
|
2021-05-26 16:46:16 +02:00
|
|
|
setList(state, list) {
|
2021-08-19 21:35:38 +02:00
|
|
|
state[list.id] = list
|
2021-11-14 21:49:52 +01:00
|
|
|
update(list)
|
2020-05-11 16:52:58 +02:00
|
|
|
},
|
2021-05-26 16:46:16 +02:00
|
|
|
setLists(state, lists) {
|
2020-05-11 16:52:58 +02:00
|
|
|
lists.forEach(l => {
|
2021-08-19 21:35:38 +02:00
|
|
|
state[l.id] = l
|
2021-11-14 21:49:52 +01:00
|
|
|
add(l)
|
2020-05-11 16:52:58 +02:00
|
|
|
})
|
|
|
|
},
|
2021-07-20 18:03:38 +02:00
|
|
|
removeListById(state, list) {
|
2021-11-14 21:49:52 +01:00
|
|
|
remove(list)
|
2021-11-22 21:49:19 +01:00
|
|
|
delete state[list.id]
|
2021-07-20 18:03:38 +02:00
|
|
|
},
|
2020-05-11 16:52:58 +02:00
|
|
|
},
|
|
|
|
getters: {
|
|
|
|
getListById: state => id => {
|
2020-09-05 22:35:52 +02:00
|
|
|
if (typeof state[id] !== 'undefined') {
|
2020-05-11 16:52:58 +02:00
|
|
|
return state[id]
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
},
|
2021-07-05 12:29:04 +02:00
|
|
|
findListByExactname: state => name => {
|
|
|
|
const list = Object.values(state).find(l => {
|
|
|
|
return l.title.toLowerCase() === name.toLowerCase()
|
|
|
|
})
|
|
|
|
return typeof list === 'undefined' ? null : list
|
|
|
|
},
|
2021-11-14 21:49:52 +01:00
|
|
|
searchList: state => (query, includeArchived = false) => {
|
|
|
|
return search(query)
|
|
|
|
?.filter(value => value > 0)
|
|
|
|
.map(id => state[id])
|
|
|
|
.filter(list => list.isArchived === includeArchived)
|
|
|
|
|| []
|
|
|
|
},
|
2020-05-11 16:52:58 +02:00
|
|
|
},
|
2020-09-06 16:20:48 +02:00
|
|
|
actions: {
|
|
|
|
toggleListFavorite(ctx, list) {
|
2021-08-23 21:24:52 +02:00
|
|
|
return ctx.dispatch('updateList', {
|
|
|
|
...list,
|
|
|
|
isFavorite: !list.isFavorite,
|
|
|
|
})
|
2021-05-26 16:46:16 +02:00
|
|
|
},
|
2021-10-11 19:37:20 +02:00
|
|
|
|
|
|
|
async createList(ctx, list) {
|
2021-06-24 15:38:25 +02:00
|
|
|
const cancel = setLoading(ctx, 'lists')
|
2021-05-26 16:46:16 +02:00
|
|
|
const listService = new ListService()
|
|
|
|
|
2021-10-11 19:37:20 +02:00
|
|
|
try {
|
|
|
|
const createdList = await listService.create(list)
|
|
|
|
createdList.namespaceId = list.namespaceId
|
|
|
|
ctx.commit('namespaces/addListToNamespace', createdList, {root: true})
|
|
|
|
ctx.commit('setList', createdList)
|
|
|
|
return createdList
|
|
|
|
} finally {
|
|
|
|
cancel()
|
|
|
|
}
|
2021-05-26 16:46:16 +02:00
|
|
|
},
|
2021-10-11 19:37:20 +02:00
|
|
|
|
|
|
|
async updateList(ctx, list) {
|
2021-06-24 15:38:25 +02:00
|
|
|
const cancel = setLoading(ctx, 'lists')
|
2020-09-06 16:20:48 +02:00
|
|
|
const listService = new ListService()
|
|
|
|
|
2021-10-11 19:37:20 +02:00
|
|
|
try {
|
|
|
|
await listService.update(list)
|
|
|
|
ctx.commit('setList', list)
|
|
|
|
ctx.commit('namespaces/setListInNamespaceById', list, {root: true})
|
2021-11-14 21:49:52 +01:00
|
|
|
|
2021-10-11 19:37:20 +02:00
|
|
|
// the returned list from listService.update is the same!
|
|
|
|
// in order to not validate vuex mutations we have to create a new copy
|
|
|
|
const newList = {
|
|
|
|
...list,
|
|
|
|
namespaceId: FavoriteListsNamespace,
|
|
|
|
}
|
|
|
|
if (list.isFavorite) {
|
|
|
|
ctx.commit('namespaces/addListToNamespace', newList, {root: true})
|
|
|
|
} else {
|
|
|
|
ctx.commit('namespaces/removeListFromNamespaceById', newList, {root: true})
|
|
|
|
}
|
|
|
|
ctx.dispatch('namespaces/loadNamespacesIfFavoritesDontExist', null, {root: true})
|
|
|
|
ctx.dispatch('namespaces/removeFavoritesNamespaceIfEmpty', null, {root: true})
|
|
|
|
return newList
|
2021-11-14 21:49:52 +01:00
|
|
|
} catch (e) {
|
2021-10-11 19:37:20 +02:00
|
|
|
// Reset the list state to the initial one to avoid confusion for the user
|
|
|
|
ctx.commit('setList', {
|
|
|
|
...list,
|
|
|
|
isFavorite: !list.isFavorite,
|
2020-09-06 16:20:48 +02:00
|
|
|
})
|
2021-10-11 19:37:20 +02:00
|
|
|
throw e
|
|
|
|
} finally {
|
|
|
|
cancel()
|
|
|
|
}
|
2021-07-06 22:22:57 +02:00
|
|
|
},
|
2021-10-11 19:37:20 +02:00
|
|
|
|
|
|
|
async deleteList(ctx, list) {
|
2021-07-20 18:03:38 +02:00
|
|
|
const cancel = setLoading(ctx, 'lists')
|
|
|
|
const listService = new ListService()
|
|
|
|
|
2021-11-14 21:49:52 +01:00
|
|
|
try {
|
2021-10-11 19:37:20 +02:00
|
|
|
const response = await listService.delete(list)
|
|
|
|
ctx.commit('removeListById', list)
|
|
|
|
ctx.commit('namespaces/removeListFromNamespaceById', list, {root: true})
|
|
|
|
removeListFromHistory({id: list.id})
|
|
|
|
return response
|
2021-11-14 21:49:52 +01:00
|
|
|
} finally {
|
2021-10-11 19:37:20 +02:00
|
|
|
cancel()
|
|
|
|
}
|
2021-07-20 18:03:38 +02:00
|
|
|
},
|
2020-09-06 16:20:48 +02:00
|
|
|
},
|
2020-05-11 16:52:58 +02:00
|
|
|
}
|