feat: watch taskId instead of whole route

This commit is contained in:
Dominik Pschenitschni 2021-10-01 20:45:40 +02:00
parent 15640e98ec
commit 6b358107b6
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 11 additions and 6 deletions

View File

@ -471,7 +471,6 @@ export default {
},
data() {
return {
taskId: Number(this.$route.params.id),
taskService: new TaskService(),
task: new TaskModel(),
relationKinds: relationKinds,
@ -507,13 +506,16 @@ export default {
}
},
watch: {
'$route': {
taskId: {
handler: 'loadTask',
deep: true,
immediate: true,
},
},
computed: {
taskId() {
const { id } = this.$route.params
return id === undefined ? id : Number(id)
},
currentList() {
return this.$store.state[CURRENT_LIST]
},
@ -557,9 +559,12 @@ export default {
return uploadFile(this.taskId, ...args)
},
loadTask() {
this.taskId = Number(this.$route.params.id)
this.taskService.get({id: this.taskId})
loadTask(taskId) {
if (taskId === undefined) {
return
}
this.taskService.get({id: taskId})
.then(r => {
this.task = r
this.$store.commit('attachments/set', r.attachments)