2018-12-25 23:41:55 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h3 v-if="showAll">Current tasks</h3>
|
|
|
|
<h3 v-else>Tasks from {{startDate.toLocaleDateString()}} until {{endDate.toLocaleDateString()}}</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
|
|
|
|
|
|
|
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,
|
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,
|
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()
|
2018-12-25 23:41:55 +01:00
|
|
|
this.loadPendingTasks()
|
|
|
|
},
|
2020-05-09 14:54:42 +02:00
|
|
|
watch: {
|
|
|
|
'$route': 'loadPendingTasks',
|
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-05-09 15:46:05 +02:00
|
|
|
const params = {
|
2020-05-09 14:51:37 +02:00
|
|
|
sort_by: ['due_date_unix', 'id'],
|
|
|
|
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-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-06-15 18:47:17 +02:00
|
|
|
params.filter_value.push(Math.round(+this.startDate / 1000))
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_comparator.push('greater')
|
|
|
|
|
|
|
|
params.filter_by.push('end_date')
|
2020-06-15 18:47:17 +02:00
|
|
|
params.filter_value.push(Math.round(+this.endDate / 1000))
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_comparator.push('less')
|
|
|
|
|
|
|
|
params.filter_by.push('due_date')
|
2020-06-15 18:47:17 +02:00
|
|
|
params.filter_value.push(Math.round(+this.endDate / 1000))
|
2020-05-09 15:46:05 +02:00
|
|
|
params.filter_comparator.push('less')
|
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>
|
|
|
|
|
|
|
|
<style scoped>
|
2020-06-15 18:47:17 +02:00
|
|
|
h3 {
|
2018-12-25 23:41:55 +01:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2020-06-15 18:47:17 +02:00
|
|
|
h3.nothing {
|
2018-12-25 23:41:55 +01:00
|
|
|
text-align: center;
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
|
|
|
|
2020-06-15 18:47:17 +02:00
|
|
|
img {
|
2018-12-25 23:41:55 +01:00
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner.is-loading:after {
|
|
|
|
margin-left: calc(40% - 1em);
|
|
|
|
}
|
|
|
|
</style>
|