Add "today" task filter
This commit is contained in:
parent
9a2be2afff
commit
c31015bd70
1 changed files with 17 additions and 3 deletions
|
@ -30,6 +30,7 @@
|
||||||
/>
|
/>
|
||||||
</h3>
|
</h3>
|
||||||
<div v-if="!showAll">
|
<div v-if="!showAll">
|
||||||
|
<a @click="showTodaysTasks()" class="button is-primary is-outlined noshadow mr-2">Today</a>
|
||||||
<a @click="setDatesToNextWeek()" class="button is-primary is-outlined noshadow mr-2">Next Week</a>
|
<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>
|
<a @click="setDatesToNextMonth()" class="button is-primary is-outlined noshadow">Next Month</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -72,6 +73,7 @@ export default {
|
||||||
hasUndoneTasks: false,
|
hasUndoneTasks: false,
|
||||||
taskService: TaskService,
|
taskService: TaskService,
|
||||||
showNulls: true,
|
showNulls: true,
|
||||||
|
showOverdue: false,
|
||||||
|
|
||||||
cStartDate: null,
|
cStartDate: null,
|
||||||
cEndDate: null,
|
cEndDate: null,
|
||||||
|
@ -151,10 +153,12 @@ export default {
|
||||||
params.filter_value.push(this.cEndDate)
|
params.filter_value.push(this.cEndDate)
|
||||||
params.filter_comparator.push('less')
|
params.filter_comparator.push('less')
|
||||||
|
|
||||||
|
if (!this.showOverdue) {
|
||||||
params.filter_by.push('due_date')
|
params.filter_by.push('due_date')
|
||||||
params.filter_value.push(this.cStartDate)
|
params.filter_value.push(this.cStartDate)
|
||||||
params.filter_comparator.push('greater')
|
params.filter_comparator.push('greater')
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.taskService.getAll({}, params)
|
this.taskService.getAll({}, params)
|
||||||
.then(r => {
|
.then(r => {
|
||||||
|
@ -188,11 +192,21 @@ export default {
|
||||||
setDatesToNextWeek() {
|
setDatesToNextWeek() {
|
||||||
this.cStartDate = new Date()
|
this.cStartDate = new Date()
|
||||||
this.cEndDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
|
this.cEndDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
|
||||||
|
this.showOverdue = false
|
||||||
this.loadPendingTasks()
|
this.loadPendingTasks()
|
||||||
},
|
},
|
||||||
setDatesToNextMonth() {
|
setDatesToNextMonth() {
|
||||||
this.cStartDate = new Date()
|
this.cStartDate = new Date()
|
||||||
this.cEndDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1))
|
this.cEndDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1))
|
||||||
|
this.showOverdue = false
|
||||||
|
this.loadPendingTasks()
|
||||||
|
},
|
||||||
|
showTodaysTasks() {
|
||||||
|
const d = new Date()
|
||||||
|
this.cStartDate = new Date()
|
||||||
|
this.cEndDate = new Date(d.setDate(d.getDate() + 1))
|
||||||
|
this.showNulls = false
|
||||||
|
this.showOverdue = true
|
||||||
this.loadPendingTasks()
|
this.loadPendingTasks()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue