Fix Datetime Handling (#168)
Fix task filters Fix null dates Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/168
This commit is contained in:
parent
d586e15c56
commit
cd588caa02
5 changed files with 32 additions and 31 deletions
|
@ -78,8 +78,8 @@
|
|||
this.wunderlistCode = this.$route.query.code
|
||||
this.migrationService.getStatus()
|
||||
.then(r => {
|
||||
if(r.time_unix) {
|
||||
this.lastMigrationDate = new Date(r.time_unix)
|
||||
if(r.time) {
|
||||
this.lastMigrationDate = new Date(r.time)
|
||||
return
|
||||
}
|
||||
this.migrate()
|
||||
|
|
|
@ -14,9 +14,9 @@ export default class TaskModel extends AbstractModel {
|
|||
this.listId = Number(this.listId)
|
||||
|
||||
// Make date objects from timestamps
|
||||
this.dueDate = this.dueDate ? new Date(this.dueDate) : null
|
||||
this.startDate = this.startDate ? new Date(this.startDate) : null
|
||||
this.endDate = this.endDate ? new Date(this.endDate) : null
|
||||
this.dueDate = this.dueDate && !this.dueDate.startsWith('0001') ? new Date(this.dueDate) : null
|
||||
this.startDate = this.startDate && !this.startDate.startsWith('0001') ? new Date(this.startDate) : null
|
||||
this.endDate = this.endDate && !this.endDate.startsWith('0001') ? new Date(this.endDate) : null
|
||||
|
||||
// Cancel all scheduled notifications for this task to be sure to only have available notifications
|
||||
this.cancelScheduledNotifications()
|
||||
|
@ -52,7 +52,7 @@ export default class TaskModel extends AbstractModel {
|
|||
}
|
||||
|
||||
// Make all subtasks to task models
|
||||
Object.keys(this.relatedTasks).forEach(relationKind => {
|
||||
Object.keys(this.relatedTasks).forEach(relationKind => {
|
||||
this.relatedTasks[relationKind] = this.relatedTasks[relationKind].map(t => {
|
||||
return new TaskModel(t)
|
||||
})
|
||||
|
@ -64,7 +64,7 @@ export default class TaskModel extends AbstractModel {
|
|||
})
|
||||
|
||||
// Set the task identifier to empty if the list does not have one
|
||||
if(this.identifier === `-${this.index}`) {
|
||||
if (this.identifier === `-${this.index}`) {
|
||||
this.identifier = ''
|
||||
}
|
||||
|
||||
|
@ -157,7 +157,7 @@ export default class TaskModel extends AbstractModel {
|
|||
|
||||
async scheduleNotification(date) {
|
||||
|
||||
if(date < new Date()) {
|
||||
if (date < new Date()) {
|
||||
console.debug('Date is in the past, not scheduling a notification. Date is ', date)
|
||||
return
|
||||
}
|
||||
|
@ -199,12 +199,12 @@ export default class TaskModel extends AbstractModel {
|
|||
},
|
||||
],
|
||||
})
|
||||
.then(() => {
|
||||
console.debug('Notification scheduled for ' + date)
|
||||
})
|
||||
.catch(e => {
|
||||
console.debug('Error scheduling notification', e)
|
||||
})
|
||||
.then(() => {
|
||||
console.debug('Notification scheduled for ' + date)
|
||||
})
|
||||
.catch(e => {
|
||||
console.debug('Error scheduling notification', e)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -68,15 +68,15 @@
|
|||
</th>
|
||||
<th v-if="activeColumns.dueDate">
|
||||
Due Date
|
||||
<sort :order="sortBy.due_date_unix" @click="sort('due_date_unix')"/>
|
||||
<sort :order="sortBy.due_date" @click="sort('due_date')"/>
|
||||
</th>
|
||||
<th v-if="activeColumns.startDate">
|
||||
Start Date
|
||||
<sort :order="sortBy.start_date_unix" @click="sort('start_date_unix')"/>
|
||||
<sort :order="sortBy.start_date" @click="sort('start_date')"/>
|
||||
</th>
|
||||
<th v-if="activeColumns.endDate">
|
||||
End Date
|
||||
<sort :order="sortBy.end_date_unix" @click="sort('end_date_unix')"/>
|
||||
<sort :order="sortBy.end_date" @click="sort('end_date')"/>
|
||||
</th>
|
||||
<th v-if="activeColumns.percentDone">
|
||||
% Done
|
||||
|
|
|
@ -57,24 +57,25 @@
|
|||
}
|
||||
|
||||
const params = {
|
||||
sort_by: ['due_date_unix', 'id'],
|
||||
sort_by: ['due_date', 'id'],
|
||||
order_by: ['desc', 'desc'],
|
||||
filter_by: ['done'],
|
||||
filter_value: [false],
|
||||
filter_comparator: ['equals'],
|
||||
filter_concat: 'and',
|
||||
filter_include_nulls: true,
|
||||
}
|
||||
if (!this.showAll) {
|
||||
params.filter_by.push('start_date')
|
||||
params.filter_value.push(Math.round(+this.startDate / 1000))
|
||||
params.filter_value.push(this.startDate)
|
||||
params.filter_comparator.push('greater')
|
||||
|
||||
params.filter_by.push('end_date')
|
||||
params.filter_value.push(Math.round(+this.endDate / 1000))
|
||||
params.filter_value.push(this.endDate)
|
||||
params.filter_comparator.push('less')
|
||||
|
||||
params.filter_by.push('due_date')
|
||||
params.filter_value.push(Math.round(+this.endDate / 1000))
|
||||
params.filter_value.push(this.endDate)
|
||||
params.filter_comparator.push('less')
|
||||
}
|
||||
|
||||
|
|
|
@ -460,9 +460,9 @@
|
|||
},
|
||||
setActiveFields() {
|
||||
|
||||
this.dueDate = +new Date(this.task.dueDate) === 0 ? null : this.task.dueDate
|
||||
this.task.startDate = +new Date(this.task.startDate) === 0 ? null : this.task.startDate
|
||||
this.task.endDate = +new Date(this.task.endDate) === 0 ? null : this.task.endDate
|
||||
this.dueDate = this.task.dueDate ? this.task.dueDate : null
|
||||
this.task.startDate = this.task.startDate ? this.task.startDate : null
|
||||
this.task.endDate = this.task.endDate ? this.task.endDate : null
|
||||
|
||||
// Set all active fields based on values in the model
|
||||
this.activeFields.assignees = this.task.assignees.length > 0
|
||||
|
|
Loading…
Reference in a new issue