This commit is contained in:
Sergey Shkuratov 2022-01-15 10:09:43 +02:00
commit 7fb312e6c5
3 changed files with 118 additions and 137 deletions

View File

@ -86,7 +86,7 @@ describe('Lists', () => {
.should('contain', newListName) .should('contain', newListName)
.should('not.contain', lists[0].title) .should('not.contain', lists[0].title)
cy.visit('/') cy.visit('/')
cy.get('.card-content .tasks') cy.get('.card-content')
.should('contain', newListName) .should('contain', newListName)
.should('not.contain', lists[0].title) .should('not.contain', lists[0].title)
}) })

View File

@ -476,7 +476,8 @@
"showMenu": "Show the menu", "showMenu": "Show the menu",
"hideMenu": "Hide the menu", "hideMenu": "Hide the menu",
"forExample": "For example:", "forExample": "For example:",
"welcomeBack": "Welcome Back!" "welcomeBack": "Welcome Back!",
"custom": "Custom"
}, },
"input": { "input": {
"resetColor": "Reset Color", "resetColor": "Reset Color",
@ -532,12 +533,16 @@
"titleCurrent": "Current Tasks", "titleCurrent": "Current Tasks",
"titleDates": "Tasks from {from} until {to}", "titleDates": "Tasks from {from} until {to}",
"noDates": "Show tasks without dates", "noDates": "Show tasks without dates",
"current": "Current tasks", "overdue": "Show overdue tasks",
"from": "Tasks from", "fromuntil": "Tasks from {from} until {until}",
"until": "until", "select": "Select a date range",
"today": "Today", "today": "Today",
"thisWeek": "This Week",
"nextWeek": "Next Week", "nextWeek": "Next Week",
"next7Days": "Next 7 Days",
"thisMonth": "This Month",
"nextMonth": "Next Month", "nextMonth": "Next Month",
"next30Days": "Next 30 Days",
"noTasks": "Nothing to do — Have a nice day!" "noTasks": "Nothing to do — Have a nice day!"
}, },
"detail": { "detail": {

View File

@ -1,53 +1,35 @@
<template> <template>
<div class="is-max-width-desktop show-tasks"> <div class="is-max-width-desktop has-text-left ">
<fancycheckbox <h3 class="mb-2">
@change="setDate" {{ pageTitle }}
class="is-pulled-right"
v-if="!showAll"
v-model="showNulls"
>
{{ $t('task.show.noDates') }}
</fancycheckbox>
<h3 v-if="showAll && tasks.length > 0">
{{ $t('task.show.current') }}
</h3> </h3>
<h3 v-else-if="!showAll" class="mb-2"> <p v-if="!showAll" class="show-tasks-options">
{{ $t('task.show.from') }} <datepicker-with-range @dateChanged="setDate"/>
<flat-pickr <fancycheckbox @change="setShowNulls" class="mr-2">
:class="{ 'disabled': loading}" {{ $t('task.show.noDates') }}
:config="flatPickerConfig" </fancycheckbox>
:disabled="loading" <fancycheckbox @change="setShowOverdue">
@on-close="setDate" {{ $t('task.show.overdue') }}
class="input" </fancycheckbox>
v-model="cStartDate" </p>
/>
{{ $t('task.show.until') }}
<flat-pickr
:class="{ 'disabled': loading}"
:config="flatPickerConfig"
:disabled="loading"
@on-close="setDate"
class="input"
v-model="cEndDate"
/>
</h3>
<div v-if="!showAll" class="mb-4">
<x-button variant="secondary" @click="showTodaysTasks()" class="mr-2">{{ $t('task.show.today') }}</x-button>
<x-button variant="secondary" @click="setDatesToNextWeek()" class="mr-2">{{ $t('task.show.nextWeek') }}</x-button>
<x-button variant="secondary" @click="setDatesToNextMonth()">{{ $t('task.show.nextMonth') }}</x-button>
</div>
<template v-if="!loading && (!tasks || tasks.length === 0) && showNothingToDo"> <template v-if="!loading && (!tasks || tasks.length === 0) && showNothingToDo">
<h3 class="nothing">{{ $t('task.show.noTasks') }}</h3> <h3 class="has-text-centered mt-6">{{ $t('task.show.noTasks') }}</h3>
<LlamaCool class="llama-cool" /> <LlamaCool class="mt-5"/>
</template> </template>
<div :class="{ 'is-loading': loading}" class="spinner"></div>
<card :padding="false" class="has-overflow" :has-content="false" v-if="tasks && tasks.length > 0"> <div v-if="!hasTasks" :class="{ 'is-loading': loading}" class="spinner"></div>
<div class="tasks"> <card
v-if="hasTasks"
:padding="false"
class="has-overflow"
:has-content="false"
:loading="loading"
>
<div class="p-2">
<single-task-in-list <single-task-in-list
v-for="t in tasksSorted"
:key="t.id" :key="t.id"
class="task" class="task"
v-for="t in tasks"
:show-list="true" :show-list="true"
:the-task="t" :the-task="t"
@taskUpdated="updateTasks"/> @taskUpdated="updateTasks"/>
@ -56,33 +38,26 @@
</div> </div>
</template> </template>
<script> <script>
import SingleTaskInList from '../../components/tasks/partials/singleTaskInList' import SingleTaskInList from '@/components/tasks/partials/singleTaskInList'
import {mapState} from 'vuex' import {mapState} from 'vuex'
import flatPickr from 'vue-flatpickr-component' import Fancycheckbox from '@/components/input/fancycheckbox'
import 'flatpickr/dist/flatpickr.css' import {LOADING, LOADING_MODULE} from '@/store/mutation-types'
import Fancycheckbox from '../../components/input/fancycheckbox'
import {LOADING, LOADING_MODULE} from '../../store/mutation-types'
import LlamaCool from '@/assets/llama-cool.svg?component' import LlamaCool from '@/assets/llama-cool.svg?component'
import DatepickerWithRange from '@/components/date/datepickerWithRange'
export default { export default {
name: 'ShowTasks', name: 'ShowTasks',
components: { components: {
DatepickerWithRange,
Fancycheckbox, Fancycheckbox,
SingleTaskInList, SingleTaskInList,
flatPickr,
LlamaCool, LlamaCool,
}, },
data() { data() {
return { return {
tasks: [], tasks: [],
showNulls: true,
showOverdue: false,
cStartDate: null,
cEndDate: null,
showNothingToDo: false, showNothingToDo: false,
} }
}, },
@ -92,8 +67,6 @@ export default {
showAll: Boolean, showAll: Boolean,
}, },
created() { created() {
this.cStartDate = this.startDate
this.cEndDate = this.endDate
this.loadPendingTasks() this.loadPendingTasks()
}, },
mounted() { mounted() {
@ -104,25 +77,54 @@ export default {
handler: 'loadPendingTasks', handler: 'loadPendingTasks',
deep: true, deep: true,
}, },
startDate(newVal) {
this.cStartDate = newVal
},
endDate(newVal) {
this.cEndDate = newVal
},
}, },
computed: { computed: {
flatPickerConfig() { dateFrom() {
return { const d = new Date(Number(this.$route.query.from))
altFormat: this.$t('date.altFormatLong'),
altInput: true, return !isNaN(d)
dateFormat: 'Y-m-d H:i', ? d
enableTime: true, : this.startDate
time_24hr: true, },
locale: { dateTo() {
firstDayOfWeek: this.$store.state.auth.settings.weekStart, const d = new Date(Number(this.$route.query.to))
},
} return !isNaN(d)
? d
: this.endDate
},
showNulls() {
return this.$route.query.showNulls === 'true'
},
showOverdue() {
return this.$route.query.showOverdue === 'true'
},
pageTitle() {
const title = this.showAll
? this.$t('task.show.titleCurrent')
: this.$t('task.show.fromuntil', {
from: this.format(this.dateFrom, 'PPP'),
until: this.format(this.dateTo, 'PPP'),
})
this.setTitle(title)
return title
},
tasksSorted() {
// 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.
return [...this.tasks].sort((a, b) => {
const sortByDueDate = b.dueDate - a.dueDate
return sortByDueDate === 0
? b.id - a.id
: sortByDueDate
})
},
hasTasks() {
return this.tasks && this.tasks.length > 0
}, },
...mapState({ ...mapState({
userAuthenticated: state => state.auth.authenticated, userAuthenticated: state => state.auth.authenticated,
@ -130,17 +132,35 @@ export default {
}), }),
}, },
methods: { methods: {
setDate() { setDate({dateFrom, dateTo}) {
this.$router.push({ this.$router.push({
name: this.$route.name, name: this.$route.name,
query: { query: {
from: +new Date(this.cStartDate), from: +new Date(dateFrom ?? this.dateFrom),
to: +new Date(this.cEndDate), to: +new Date(dateTo ?? this.dateTo),
showOverdue: this.showOverdue, showOverdue: this.showOverdue,
showNulls: this.showNulls, showNulls: this.showNulls,
}, },
}) })
}, },
setShowOverdue(show) {
this.$router.push({
name: this.$route.name,
query: {
...this.$route.query,
showOverdue: show,
},
})
},
setShowNulls(show) {
this.$router.push({
name: this.$route.name,
query: {
...this.$route.query,
showNulls: show,
},
})
},
async loadPendingTasks() { async loadPendingTasks() {
// Since this route is authentication only, users would get an error message if they access the page unauthenticated. // 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 // Since this component is mounted as the home page before unauthenticated users get redirected
@ -149,26 +169,6 @@ export default {
return return
} }
// Make sure all dates are date objects
if (typeof this.$route.query.from !== 'undefined' && typeof this.$route.query.to !== 'undefined') {
this.cStartDate = new Date(Number(this.$route.query.from))
this.cEndDate = new Date(Number(this.$route.query.to))
} else {
this.cStartDate = new Date(this.cStartDate)
this.cEndDate = new Date(this.cEndDate)
}
this.showOverdue = this.$route.query.showOverdue
this.showNulls = this.$route.query.showNulls
if (this.showAll) {
this.setTitle(this.$t('task.show.titleCurrent'))
} else {
this.setTitle(this.$t('task.show.titleDates', {
from: this.cStartDate.toLocaleDateString(),
to: this.cEndDate.toLocaleDateString(),
}))
}
const params = { const params = {
sort_by: ['due_date', 'id'], sort_by: ['due_date', 'id'],
order_by: ['desc', 'desc'], order_by: ['desc', 'desc'],
@ -178,41 +178,23 @@ export default {
filter_concat: 'and', filter_concat: 'and',
filter_include_nulls: this.showNulls, filter_include_nulls: this.showNulls,
} }
if (!this.showAll) { if (!this.showAll) {
if (this.showNulls) {
params.filter_by.push('start_date')
params.filter_value.push(this.cStartDate)
params.filter_comparator.push('greater')
params.filter_by.push('end_date')
params.filter_value.push(this.cEndDate)
params.filter_comparator.push('less')
}
params.filter_by.push('due_date') params.filter_by.push('due_date')
params.filter_value.push(this.cEndDate) params.filter_value.push(this.dateTo)
params.filter_comparator.push('less') params.filter_comparator.push('less')
// NOTE: Ideally we could also show tasks with a start or end date in the specified range, but the api
// is not capable (yet) of combining multiple filters with 'and' and 'or'.
if (!this.showOverdue) { 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.dateFrom)
params.filter_comparator.push('greater') params.filter_comparator.push('greater')
} }
} }
const tasks = await this.$store.dispatch('tasks/loadTasks', params) this.tasks = await this.$store.dispatch('tasks/loadTasks', params)
// FIXME: sort tasks in computed
// 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.
this.tasks = tasks.sort((a, b) => {
const sortByDueDate = b.dueDate - a.dueDate
return sortByDueDate === 0
? b.id - a.id
: sortByDueDate
})
}, },
// FIXME: this modification should happen in the store // FIXME: this modification should happen in the store
@ -257,18 +239,12 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
h3 { .show-tasks-options {
text-align: left; display: flex;
flex-direction: column;
&.nothing { > :deep(a) {
text-align: center; margin-right: .5rem;
margin-top: 3rem;
}
:deep(.input) {
width: 190px;
vertical-align: middle;
margin: .5rem 0;
} }
} }