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">
|
2018-12-25 23:41:55 +01:00
|
|
|
<h3 v-if="showAll">Current tasks</h3>
|
2020-07-22 12:29:03 +02:00
|
|
|
<h3 v-else>
|
|
|
|
Tasks from
|
|
|
|
<flat-pickr
|
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
class="input"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
v-model="cStartDate"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
@on-close="loadPendingTasks"
|
|
|
|
/>
|
|
|
|
until
|
|
|
|
<flat-pickr
|
|
|
|
:class="{ 'disabled': taskService.loading}"
|
|
|
|
class="input"
|
|
|
|
:disabled="taskService.loading"
|
|
|
|
v-model="cEndDate"
|
|
|
|
:config="flatPickerConfig"
|
|
|
|
@on-close="loadPendingTasks"
|
|
|
|
/>
|
|
|
|
</h3>
|
2019-03-10 13:59:17 +01:00
|
|
|
<template v-if="!taskService.loading && (!hasUndoneTasks || !tasks)">
|
2020-05-29 23:12:38 +02:00
|
|
|
<h3 class="nothing">Nothing to do - Have a nice day!</h3>
|
2018-12-25 23:41:55 +01:00
|
|
|
<img src="/images/cool.svg" alt=""/>
|
|
|
|
</template>
|
2019-03-10 13:59:17 +01:00
|
|
|
<div class="spinner" :class="{ 'is-loading': taskService.loading}"></div>
|
2018-12-25 23:41:55 +01:00
|
|
|
<div class="tasks" v-if="tasks && tasks.length > 0">
|
2020-03-23 23:24:14 +01:00
|
|
|
<div class="task" v-for="t in tasks" :key="t.id">
|
2020-05-11 16:52:58 +02:00
|
|
|
<single-task-in-list :the-task="t" @taskUpdated="updateTasks" :show-list="true"/>
|
2018-12-25 23:41:55 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2019-03-02 11:25:10 +01:00
|
|
|
import TaskService from '../../services/task'
|
2020-06-17 22:15:59 +02:00
|
|
|
import SingleTaskInList from '../../components/tasks/partials/singleTaskInList'
|
2020-06-15 18:47:17 +02:00
|
|
|
import {HAS_TASKS} from '../../store/mutation-types'
|
2020-06-21 17:42:08 +02:00
|
|
|
import {mapState} from 'vuex'
|
2018-12-25 23:41:55 +01:00
|
|
|
|
2020-07-22 12:29:03 +02:00
|
|
|
import flatPickr from 'vue-flatpickr-component'
|
|
|
|
import 'flatpickr/dist/flatpickr.css'
|
|
|
|
|
2018-12-25 23:41:55 +01:00
|
|
|
export default {
|
2019-12-07 17:35:42 +01:00
|
|
|
name: 'ShowTasks',
|
2019-11-24 14:16:24 +01:00
|
|
|
components: {
|
2020-03-23 23:24:14 +01:00
|
|
|
SingleTaskInList,
|
2020-07-22 12:29:03 +02:00
|
|
|
flatPickr,
|
2019-11-24 14:16:24 +01:00
|
|
|
},
|
2018-12-25 23:41:55 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tasks: [],
|
2019-03-02 11:25:10 +01:00
|
|
|
hasUndoneTasks: false,
|
|
|
|
taskService: TaskService,
|
2020-07-22 12:29:03 +02:00
|
|
|
|
|
|
|
cStartDate: null,
|
|
|
|
cEndDate: null,
|
|
|
|
|
|
|
|
flatPickerConfig: {
|
|
|
|
altFormat: 'j M Y H:i',
|
|
|
|
altInput: true,
|
|
|
|
dateFormat: 'Y-m-d H:i',
|
|
|
|
enableTime: true,
|
|
|
|
time_24hr: true,
|
|
|
|
},
|
2018-12-25 23:41:55 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
startDate: Date,
|
|
|
|
endDate: Date,
|
|
|
|
showAll: Boolean,
|
|
|
|
},
|
|
|
|
created() {
|
2019-03-02 11:25:10 +01:00
|
|
|
this.taskService = new TaskService()
|
2020-07-22 12:29:03 +02:00
|
|
|
this.cStartDate = this.startDate
|
|
|
|
this.cEndDate = this.endDate
|
2018-12-25 23:41:55 +01:00
|
|
|
this.loadPendingTasks()
|
|
|
|
},
|
2020-05-09 14:54:42 +02:00
|
|
|
watch: {
|
|
|
|
'$route': 'loadPendingTasks',
|
2020-07-22 12:29:03 +02:00
|
|
|
startDate(newVal) {
|
|
|
|
this.cStartDate = newVal
|
|
|
|
},
|
|
|
|
endDate(newVal) {
|
|
|
|
this.cEndDate = newVal
|
|
|
|
},
|
2019-12-15 21:42:40 +01:00
|
|
|
},
|
2020-06-21 17:42:08 +02:00
|
|
|
computed: mapState({
|
|
|
|
userAuthenticated: state => state.auth.authenticated,
|
|
|
|
}),
|
2018-12-25 23:41:55 +01:00
|
|
|
methods: {
|
|
|
|
loadPendingTasks() {
|
2020-06-21 17:42:08 +02:00
|
|
|
// 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
|
|
|
// 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
|
|
|
if (this.showAll) {
|
|
|
|
this.setTitle('Current Tasks')
|
|
|
|
} else {
|
2020-07-22 12:29:03 +02:00
|
|
|
this.setTitle(`Tasks from ${this.cStartDate.toLocaleDateString()} until ${this.cEndDate.toLocaleDateString()}`)
|
2020-07-07 22:07:13 +02:00
|
|
|
}
|
|
|
|
|
2020-05-09 15:46:05 +02:00
|
|
|
const params = {
|
2020-06-27 19:04:30 +02:00
|
|
|
sort_by: ['due_date', 'id'],
|
2020-05-09 14:51:37 +02:00
|
|
|
order_by: ['desc', 'desc'],
|
|
|
|
filter_by: ['done'],
|
|
|
|
filter_value: [false],
|
2020-05-09 15:46:05 +02:00
|
|
|
filter_comparator: ['equals'],
|
|
|
|
filter_concat: 'and',
|
2020-06-27 19:04:30 +02:00
|
|
|
filter_include_nulls: true,
|
2020-05-09 14:51:37 +02:00
|
|
|
}
|
2018-12-25 23:41:55 +01:00
|
|
|
if (!this.showAll) {
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_by.push('start_date')
|
2020-07-22 12:29:03 +02:00
|
|
|
params.filter_value.push(this.cStartDate)
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_comparator.push('greater')
|
|
|
|
|
|
|
|
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')
|
|
|
|
|
|
|
|
params.filter_by.push('due_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')
|
2020-07-22 12:29:03 +02:00
|
|
|
|
|
|
|
params.filter_by.push('due_date')
|
|
|
|
params.filter_value.push(this.cStartDate)
|
|
|
|
params.filter_comparator.push('greater')
|
2018-12-25 23:41:55 +01:00
|
|
|
}
|
|
|
|
|
2019-03-10 13:59:17 +01:00
|
|
|
this.taskService.getAll({}, params)
|
|
|
|
.then(r => {
|
|
|
|
if (r.length > 0) {
|
|
|
|
for (const index in r) {
|
|
|
|
if (r[index].done !== true) {
|
2018-12-25 23:48:32 +01:00
|
|
|
this.hasUndoneTasks = true
|
|
|
|
}
|
2018-12-25 23:41:55 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-09 15:46:05 +02:00
|
|
|
this.$set(this, 'tasks', r.filter(t => !t.done))
|
2020-06-15 18:47:17 +02:00
|
|
|
this.$store.commit(HAS_TASKS, r.length > 0)
|
2018-12-25 23:41:55 +01:00
|
|
|
})
|
|
|
|
.catch(e => {
|
2020-01-30 22:47:08 +01:00
|
|
|
this.error(e, this)
|
2018-12-25 23:41:55 +01:00
|
|
|
})
|
|
|
|
},
|
2020-03-23 23:24:14 +01:00
|
|
|
sortTasks() {
|
|
|
|
if (this.tasks === null || this.tasks === []) {
|
|
|
|
return
|
|
|
|
}
|
2020-06-15 18:47:17 +02:00
|
|
|
return this.tasks.sort(function (a, b) {
|
2020-03-23 23:24:14 +01:00
|
|
|
if (a.done < b.done)
|
|
|
|
return -1
|
|
|
|
if (a.done > b.done)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
if (a.id > b.id)
|
|
|
|
return -1
|
|
|
|
if (a.id < b.id)
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
})
|
|
|
|
},
|
|
|
|
updateTasks(updatedTask) {
|
|
|
|
for (const t in this.tasks) {
|
|
|
|
if (this.tasks[t].id === updatedTask.id) {
|
|
|
|
this.$set(this.tasks, t, updatedTask)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.sortTasks()
|
2018-12-25 23:41:55 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|