2018-12-25 23:41:55 +01:00
|
|
|
<template>
|
2020-07-22 12:29:03 +02:00
|
|
|
<div class="is-max-width-desktop show-tasks">
|
2020-07-22 12:39:07 +02:00
|
|
|
<fancycheckbox
|
2020-09-05 22:35:52 +02:00
|
|
|
@change="loadPendingTasks"
|
|
|
|
class="is-pulled-right"
|
|
|
|
v-if="!showAll"
|
|
|
|
v-model="showNulls"
|
2020-07-22 12:39:07 +02:00
|
|
|
>
|
|
|
|
Show tasks without dates
|
|
|
|
</fancycheckbox>
|
2021-01-17 20:53:09 +01:00
|
|
|
<h3 v-if="showAll && tasks.length > 0">Current tasks</h3>
|
2021-01-24 14:00:21 +01:00
|
|
|
<h3 v-else-if="!showAll" class="mb-2">
|
2020-07-22 12:29:03 +02:00
|
|
|
Tasks from
|
|
|
|
<flat-pickr
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@on-close="loadPendingTasks"
|
|
|
|
class="input"
|
|
|
|
v-model="cStartDate"
|
2020-07-22 12:29:03 +02:00
|
|
|
/>
|
|
|
|
until
|
|
|
|
<flat-pickr
|
2020-09-05 22:35:52 +02:00
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
@on-close="loadPendingTasks"
|
|
|
|
class="input"
|
|
|
|
v-model="cEndDate"
|
2020-07-22 12:29:03 +02:00
|
|
|
/>
|
|
|
|
</h3>
|
2021-01-24 14:00:21 +01:00
|
|
|
<div v-if="!showAll" class="mb-4">
|
|
|
|
<x-button type="secondary" @click="showTodaysTasks()" class="mr-2">Today</x-button>
|
|
|
|
<x-button type="secondary" @click="setDatesToNextWeek()" class="mr-2">Next Week</x-button>
|
|
|
|
<x-button type="secondary" @click="setDatesToNextMonth()">Next Month</x-button>
|
2020-11-22 18:05:25 +01:00
|
|
|
</div>
|
2021-02-20 18:35:29 +01:00
|
|
|
<template v-if="!taskService.loading && (!tasks || tasks.length === 0) && showNothingToDo">
|
2020-05-29 23:12:38 +02:00
|
|
|
<h3 class="nothing">Nothing to do - Have a nice day!</h3>
|
2020-09-05 22:35:52 +02:00
|
|
|
<img alt="" src="/images/cool.svg"/>
|
2018-12-25 23:41:55 +01:00
|
|
|
</template>
|
2020-09-05 22:35:52 +02:00
|
|
|
<div :class="{ 'is-loading': taskService.loading}" class="spinner"></div>
|
2021-01-24 14:00:21 +01:00
|
|
|
|
2021-01-24 15:37:19 +01:00
|
|
|
<card :padding="false" class="has-overflow" :has-content="false" v-if="tasks && tasks.length > 0">
|
2021-01-24 14:00:21 +01:00
|
|
|
<div class="tasks">
|
|
|
|
<single-task-in-list
|
|
|
|
:key="t.id"
|
|
|
|
class="task"
|
|
|
|
v-for="t in tasks"
|
|
|
|
:show-list="true"
|
|
|
|
:the-task="t"
|
|
|
|
@taskUpdated="updateTasks"/>
|
|
|
|
</div>
|
|
|
|
</card>
|
2018-12-25 23:41:55 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2020-09-05 22:35:52 +02:00
|
|
|
import TaskService from '../../services/task'
|
|
|
|
import SingleTaskInList from '../../components/tasks/partials/singleTaskInList'
|
|
|
|
import {HAS_TASKS} from '@/store/mutation-types'
|
|
|
|
import {mapState} from 'vuex'
|
2018-12-25 23:41:55 +01:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
import flatPickr from 'vue-flatpickr-component'
|
|
|
|
import 'flatpickr/dist/flatpickr.css'
|
|
|
|
import Fancycheckbox from '../../components/input/fancycheckbox'
|
2020-07-22 12:29:03 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'ShowTasks',
|
|
|
|
components: {
|
|
|
|
Fancycheckbox,
|
|
|
|
SingleTaskInList,
|
|
|
|
flatPickr,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tasks: [],
|
|
|
|
taskService: TaskService,
|
|
|
|
showNulls: true,
|
2021-01-16 20:20:43 +01:00
|
|
|
showOverdue: false,
|
2020-07-22 12:29:03 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
cStartDate: null,
|
|
|
|
cEndDate: null,
|
2020-07-22 12:29:03 +02:00
|
|
|
|
2021-01-24 14:00:21 +01:00
|
|
|
showNothingToDo: false,
|
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
flatPickerConfig: {
|
|
|
|
altFormat: 'j M Y H:i',
|
|
|
|
altInput: true,
|
|
|
|
dateFormat: 'Y-m-d H:i',
|
|
|
|
enableTime: true,
|
|
|
|
time_24hr: true,
|
2020-07-22 12:29:03 +02:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
startDate: Date,
|
|
|
|
endDate: Date,
|
|
|
|
showAll: Boolean,
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.taskService = new TaskService()
|
|
|
|
this.cStartDate = this.startDate
|
|
|
|
this.cEndDate = this.endDate
|
|
|
|
this.loadPendingTasks()
|
|
|
|
},
|
2021-01-24 14:00:21 +01:00
|
|
|
mounted() {
|
|
|
|
setTimeout(() => this.showNothingToDo = true, 100)
|
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
watch: {
|
|
|
|
'$route': 'loadPendingTasks',
|
|
|
|
startDate(newVal) {
|
|
|
|
this.cStartDate = newVal
|
2019-12-15 21:42:40 +01:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
endDate(newVal) {
|
|
|
|
this.cEndDate = newVal
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: mapState({
|
|
|
|
userAuthenticated: state => state.auth.authenticated,
|
|
|
|
}),
|
|
|
|
methods: {
|
|
|
|
loadPendingTasks() {
|
|
|
|
// Since this route is authentication only, users would get an error message if they access the page unauthenticated.
|
|
|
|
// Since this component is mounted as the home page before unauthenticated users get redirected
|
|
|
|
// to the login page, they will almost always see the error message.
|
|
|
|
if (!this.userAuthenticated) {
|
|
|
|
return
|
|
|
|
}
|
2020-07-22 12:29:03 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
// Make sure all dates are date objects
|
|
|
|
this.cStartDate = new Date(this.cStartDate)
|
|
|
|
this.cEndDate = new Date(this.cEndDate)
|
2020-07-07 22:07:13 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
if (this.showAll) {
|
|
|
|
this.setTitle('Current Tasks')
|
|
|
|
} else {
|
|
|
|
this.setTitle(`Tasks from ${this.cStartDate.toLocaleDateString()} until ${this.cEndDate.toLocaleDateString()}`)
|
|
|
|
}
|
2020-05-09 15:46:05 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
const params = {
|
|
|
|
sort_by: ['due_date', 'id'],
|
2021-02-20 18:35:29 +01:00
|
|
|
order_by: ['desc', 'desc'],
|
2020-09-05 22:35:52 +02:00
|
|
|
filter_by: ['done'],
|
|
|
|
filter_value: [false],
|
|
|
|
filter_comparator: ['equals'],
|
|
|
|
filter_concat: 'and',
|
|
|
|
filter_include_nulls: this.showNulls,
|
|
|
|
}
|
|
|
|
if (!this.showAll) {
|
|
|
|
if (this.showNulls) {
|
|
|
|
params.filter_by.push('start_date')
|
|
|
|
params.filter_value.push(this.cStartDate)
|
|
|
|
params.filter_comparator.push('greater')
|
2020-05-09 15:46:05 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
params.filter_by.push('end_date')
|
2020-07-22 12:29:03 +02:00
|
|
|
params.filter_value.push(this.cEndDate)
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_comparator.push('less')
|
2018-12-25 23:41:55 +01:00
|
|
|
}
|
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
params.filter_by.push('due_date')
|
|
|
|
params.filter_value.push(this.cEndDate)
|
|
|
|
params.filter_comparator.push('less')
|
|
|
|
|
2021-01-16 20:20:43 +01:00
|
|
|
if (!this.showOverdue) {
|
|
|
|
params.filter_by.push('due_date')
|
|
|
|
params.filter_value.push(this.cStartDate)
|
|
|
|
params.filter_comparator.push('greater')
|
|
|
|
}
|
2020-09-05 22:35:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.taskService.getAll({}, params)
|
|
|
|
.then(r => {
|
2021-02-20 18:35:29 +01:00
|
|
|
|
|
|
|
// Sort all tasks to put those with a due date before the ones without a due date, the
|
|
|
|
// soonest before the later ones.
|
|
|
|
// We can't use the api sorting here because that sorts tasks with a due date after
|
|
|
|
// ones without a due date.
|
|
|
|
r.sort((a, b) => {
|
|
|
|
return a.dueDate === null && b.dueDate === null ? -1 : 1
|
|
|
|
})
|
|
|
|
const tasks = r.
|
|
|
|
filter(t => t.dueDate !== null).
|
|
|
|
concat(r.filter(t => t.dueDate === null))
|
|
|
|
|
|
|
|
this.$set(this, 'tasks', tasks)
|
2020-09-05 22:35:52 +02:00
|
|
|
this.$store.commit(HAS_TASKS, r.length > 0)
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
this.error(e, this)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
updateTasks(updatedTask) {
|
|
|
|
for (const t in this.tasks) {
|
|
|
|
if (this.tasks[t].id === updatedTask.id) {
|
|
|
|
this.$set(this.tasks, t, updatedTask)
|
2020-09-28 20:37:06 +02:00
|
|
|
// Move the task to the end of the done tasks if it is now done
|
|
|
|
if (updatedTask.done) {
|
|
|
|
this.tasks.splice(t, 1)
|
|
|
|
this.tasks.push(updatedTask)
|
|
|
|
}
|
2020-09-05 22:35:52 +02:00
|
|
|
break
|
2020-03-23 23:24:14 +01:00
|
|
|
}
|
2020-09-05 22:35:52 +02:00
|
|
|
}
|
2018-12-25 23:41:55 +01:00
|
|
|
},
|
2020-11-22 18:05:25 +01:00
|
|
|
setDatesToNextWeek() {
|
|
|
|
this.cStartDate = new Date()
|
|
|
|
this.cEndDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
|
2021-01-16 20:20:43 +01:00
|
|
|
this.showOverdue = false
|
2020-11-22 18:05:25 +01:00
|
|
|
this.loadPendingTasks()
|
|
|
|
},
|
|
|
|
setDatesToNextMonth() {
|
|
|
|
this.cStartDate = new Date()
|
|
|
|
this.cEndDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1))
|
2021-01-16 20:20:43 +01:00
|
|
|
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
|
2020-11-22 18:05:25 +01:00
|
|
|
this.loadPendingTasks()
|
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
}
|
2018-12-25 23:41:55 +01:00
|
|
|
</script>
|