Move next week/next month task overview pages into a single "Upcoming" page and allow toggle
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-11-22 18:05:25 +01:00
parent ed40249bb3
commit 5d995a2758
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 22 additions and 25 deletions

View File

@ -14,19 +14,11 @@
</router-link>
</li>
<li>
<router-link :to="{ name: 'tasks.range', params: {type: 'week'}}">
<span class="icon">
<icon icon="calendar-week"/>
</span>
Next Week
</router-link>
</li>
<li>
<router-link :to="{ name: 'tasks.range', params: {type: 'month'}}">
<router-link :to="{ name: 'tasks.range'}">
<span class="icon">
<icon :icon="['far', 'calendar-alt']"/>
</span>
Next Month
Upcoming
</router-link>
</li>
<li>

View File

@ -181,7 +181,7 @@ export default new Router({
component: TaskDetailView,
},
{
path: '/tasks/by/:type',
path: '/tasks/by/upcoming',
name: 'tasks.range',
component: ShowTasksInRangeComponent,
},

View File

@ -29,6 +29,10 @@
v-model="cEndDate"
/>
</h3>
<div>
<a @click="setDatesToNextWeek()" class="button is-primary is-outlined noshadow mr-2">Next Week</a>
<a @click="setDatesToNextMonth()" class="button is-primary is-outlined noshadow">Next Month</a>
</div>
<template v-if="!taskService.loading && (!hasUndoneTasks || !tasks || tasks.length === 0)">
<h3 class="nothing">Nothing to do - Have a nice day!</h3>
<img alt="" src="/images/cool.svg"/>
@ -181,6 +185,16 @@ export default {
}
}
},
setDatesToNextWeek() {
this.cStartDate = new Date()
this.cEndDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
this.loadPendingTasks()
},
setDatesToNextMonth() {
this.cStartDate = new Date()
this.cEndDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1))
this.loadPendingTasks()
},
},
}
</script>

View File

@ -22,24 +22,15 @@ export default {
}
},
watch: {
// call again the method if the route changes
'$route': 'setDates',
'$route': 'setDatesToNextWeek',
},
created() {
this.setDates()
this.setDatesToNextWeek()
},
methods: {
setDates() {
switch (this.$route.params.type) {
case 'week':
this.startDate = new Date()
this.endDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
break
case 'month':
this.startDate = new Date()
this.endDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1))
break
}
setDatesToNextWeek() {
this.startDate = new Date()
this.endDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
},
},
}