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)">
|
2018-12-25 23:41:55 +01:00
|
|
|
<h3 class="nothing">Nothing to to - Have a nice day!</h3>
|
|
|
|
<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-01-30 22:50:28 +01:00
|
|
|
<div @click="gotoTask(l)" class="task" v-for="l in undoneTasks" :key="l.id">
|
2018-12-25 23:41:55 +01:00
|
|
|
<label :for="l.id">
|
|
|
|
<div class="fancycheckbox">
|
|
|
|
<input type="checkbox" :id="l.id" :checked="l.done" style="display: none;" disabled>
|
|
|
|
<label :for="l.id" class="check">
|
|
|
|
<svg width="18px" height="18px" viewBox="0 0 18 18">
|
|
|
|
<path d="M1,9 L1,3.5 C1,2 2,1 3.5,1 L14.5,1 C16,1 17,2 17,3.5 L17,14.5 C17,16 16,17 14.5,17 L3.5,17 C2,17 1,16 1,14.5 L1,9 Z"></path>
|
|
|
|
<polyline points="1 9 7 14 15 4"></polyline>
|
|
|
|
</svg>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<span class="tasktext">
|
2019-03-03 16:03:08 +01:00
|
|
|
{{l.text}}
|
2020-01-30 21:49:00 +01:00
|
|
|
<i v-if="l.dueDate > 0" :class="{'overdue': l.dueDate <= new Date()}" v-tooltip="formatDate(l.dueDate)"> - Due {{formatDateSince(l.dueDate)}}</i>
|
2019-11-24 14:16:24 +01:00
|
|
|
<priority-label :priority="l.priority"/>
|
2019-03-03 16:03:08 +01:00
|
|
|
</span>
|
2018-12-25 23:41:55 +01:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import router from '../../router'
|
2019-03-02 11:25:10 +01:00
|
|
|
import TaskService from '../../services/task'
|
2019-11-24 14:16:24 +01:00
|
|
|
import PriorityLabel from './reusable/priorityLabel'
|
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: {
|
|
|
|
PriorityLabel
|
|
|
|
},
|
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()
|
|
|
|
},
|
2019-12-15 21:42:40 +01:00
|
|
|
computed: {
|
|
|
|
undoneTasks: function () {
|
|
|
|
return this.tasks.filter(t => !t.done)
|
|
|
|
}
|
|
|
|
},
|
2018-12-25 23:41:55 +01:00
|
|
|
methods: {
|
|
|
|
loadPendingTasks() {
|
2019-12-07 17:35:42 +01:00
|
|
|
let params = {sort_by: 'due_date_unix', order_by: 'desc'}
|
2018-12-25 23:41:55 +01:00
|
|
|
if (!this.showAll) {
|
2019-03-10 13:59:17 +01:00
|
|
|
params.startdate = Math.round(+ this.startDate / 1000)
|
|
|
|
params.enddate = Math.round(+ this.endDate / 1000)
|
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
|
|
|
}
|
|
|
|
}
|
2019-03-10 13:59:17 +01:00
|
|
|
this.$set(this, 'tasks', r)
|
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-01-30 22:50:28 +01:00
|
|
|
gotoTask(task) {
|
|
|
|
router.push({name: 'taskDetailView', params: {id: task.id}})
|
2018-12-25 23:41:55 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
h3{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3.nothing{
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
img{
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner.is-loading:after {
|
|
|
|
margin-left: calc(40% - 1em);
|
|
|
|
}
|
|
|
|
</style>
|