Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1988 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
37 lines
No EOL
952 B
TypeScript
37 lines
No EOL
952 B
TypeScript
import {watch, reactive, shallowReactive, unref, toRefs, readonly} from 'vue'
|
|
import type {MaybeRef} from '@vueuse/core'
|
|
import {useStore} from 'vuex'
|
|
|
|
import ListService from '@/services/list'
|
|
import ListModel from '@/models/list'
|
|
import { success } from '@/message'
|
|
import {useI18n} from 'vue-i18n'
|
|
|
|
export function useList(listId: MaybeRef<ListModel['id']>) {
|
|
const listService = shallowReactive(new ListService())
|
|
const {loading: isLoading} = toRefs(listService)
|
|
const list : ListModel = reactive(new ListModel({}))
|
|
const {t} = useI18n()
|
|
|
|
watch(
|
|
() => unref(listId),
|
|
async (listId) => {
|
|
const loadedList = await listService.get(new ListModel({id: listId}))
|
|
Object.assign(list, loadedList)
|
|
},
|
|
{immediate: true},
|
|
)
|
|
|
|
|
|
const store = useStore()
|
|
async function save() {
|
|
await store.dispatch('lists/updateList', list)
|
|
success({message: t('list.edit.success')})
|
|
}
|
|
|
|
return {
|
|
isLoading: readonly(isLoading),
|
|
list,
|
|
save,
|
|
}
|
|
} |