2020-09-05 22:16:17 +02:00
|
|
|
import AbstractModel from './abstractModel'
|
2019-03-02 11:25:10 +01:00
|
|
|
import UserModel from './user'
|
2019-11-24 14:16:24 +01:00
|
|
|
import LabelModel from './label'
|
|
|
|
import AttachmentModel from './attachment'
|
2021-09-10 16:21:33 +02:00
|
|
|
import {REPEAT_MODE_DEFAULT} from './constants/taskRepeatModes'
|
2021-04-14 10:24:07 +02:00
|
|
|
|
2021-02-14 20:18:51 +01:00
|
|
|
import SubscriptionModel from '@/models/subscription'
|
2021-02-21 16:13:58 +01:00
|
|
|
import {parseDateOrNull} from '@/helpers/parseDateOrNull'
|
2020-12-08 15:43:51 +01:00
|
|
|
|
2021-11-22 20:03:27 +01:00
|
|
|
const SUPPORTS_TRIGGERED_NOTIFICATION = 'Notification' in window && 'showTrigger' in Notification.prototype
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
export default class TaskModel extends AbstractModel {
|
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
2019-11-24 14:16:24 +01:00
|
|
|
|
|
|
|
this.id = Number(this.id)
|
2021-09-10 14:57:59 +02:00
|
|
|
this.title = this.title?.trim()
|
2020-04-12 23:54:46 +02:00
|
|
|
this.listId = Number(this.listId)
|
2020-04-14 22:46:27 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
// Make date objects from timestamps
|
2021-02-21 16:13:58 +01:00
|
|
|
this.dueDate = parseDateOrNull(this.dueDate)
|
|
|
|
this.startDate = parseDateOrNull(this.startDate)
|
|
|
|
this.endDate = parseDateOrNull(this.endDate)
|
|
|
|
this.doneAt = parseDateOrNull(this.doneAt)
|
2019-03-02 11:25:10 +01:00
|
|
|
|
2021-10-11 19:37:20 +02:00
|
|
|
this.reminderDates = this.reminderDates.map(d => new Date(d))
|
2020-02-08 18:28:17 +01:00
|
|
|
// Cancel all scheduled notifications for this task to be sure to only have available notifications
|
2021-10-11 19:37:20 +02:00
|
|
|
this.cancelScheduledNotifications().then(() => {
|
|
|
|
// Every time we see a reminder, we schedule a notification for it
|
|
|
|
this.reminderDates.forEach(d => this.scheduleNotification(d))
|
|
|
|
})
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
// Parse the repeat after into something usable
|
|
|
|
this.parseRepeatAfter()
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
// Parse the assignees into user models
|
|
|
|
this.assignees = this.assignees.map(a => {
|
|
|
|
return new UserModel(a)
|
|
|
|
})
|
|
|
|
this.createdBy = new UserModel(this.createdBy)
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2019-03-07 20:48:40 +01:00
|
|
|
this.labels = this.labels.map(l => {
|
|
|
|
return new LabelModel(l)
|
|
|
|
})
|
2021-07-26 10:55:19 +02:00
|
|
|
.sort((f, s) => f.title > s.title ? 1 : -1)
|
2019-04-30 22:18:06 +02:00
|
|
|
|
2021-04-18 19:16:53 +02:00
|
|
|
if (this.hexColor !== '' && this.hexColor.substring(0, 1) !== '#') {
|
2019-04-30 22:18:06 +02:00
|
|
|
this.hexColor = '#' + this.hexColor
|
|
|
|
}
|
2019-10-28 22:45:37 +01:00
|
|
|
|
|
|
|
// Make all subtasks to task models
|
2020-06-27 19:04:30 +02:00
|
|
|
Object.keys(this.relatedTasks).forEach(relationKind => {
|
2020-04-12 23:54:46 +02:00
|
|
|
this.relatedTasks[relationKind] = this.relatedTasks[relationKind].map(t => {
|
2019-10-28 22:45:37 +01:00
|
|
|
return new TaskModel(t)
|
|
|
|
})
|
|
|
|
})
|
2019-11-24 14:16:24 +01:00
|
|
|
|
|
|
|
// Make all attachments to attachment models
|
|
|
|
this.attachments = this.attachments.map(a => {
|
|
|
|
return new AttachmentModel(a)
|
|
|
|
})
|
2020-02-08 14:16:06 +01:00
|
|
|
|
2020-05-16 13:14:57 +02:00
|
|
|
// Set the task identifier to empty if the list does not have one
|
2020-06-27 19:04:30 +02:00
|
|
|
if (this.identifier === `-${this.index}`) {
|
2020-05-16 13:14:57 +02:00
|
|
|
this.identifier = ''
|
|
|
|
}
|
|
|
|
|
2021-02-21 16:13:58 +01:00
|
|
|
if (typeof this.subscription !== 'undefined' && this.subscription !== null) {
|
2021-02-14 20:18:51 +01:00
|
|
|
this.subscription = new SubscriptionModel(this.subscription)
|
|
|
|
}
|
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
this.created = new Date(this.created)
|
|
|
|
this.updated = new Date(this.updated)
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
id: 0,
|
2020-09-04 22:01:02 +02:00
|
|
|
title: '',
|
2019-03-02 11:25:10 +01:00
|
|
|
description: '',
|
|
|
|
done: false,
|
2020-11-28 15:52:15 +01:00
|
|
|
doneAt: null,
|
2019-03-02 11:25:10 +01:00
|
|
|
priority: 0,
|
|
|
|
labels: [],
|
|
|
|
assignees: [],
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
dueDate: 0,
|
|
|
|
startDate: 0,
|
|
|
|
endDate: 0,
|
|
|
|
repeatAfter: 0,
|
2020-06-14 14:43:01 +02:00
|
|
|
repeatFromCurrentDate: false,
|
2021-04-14 10:24:07 +02:00
|
|
|
repeatMode: REPEAT_MODE_DEFAULT,
|
2019-03-02 11:25:10 +01:00
|
|
|
reminderDates: [],
|
2020-04-17 12:19:53 +02:00
|
|
|
parentTaskId: 0,
|
2019-04-30 22:18:06 +02:00
|
|
|
hexColor: '',
|
2019-10-19 18:27:31 +02:00
|
|
|
percentDone: 0,
|
2020-04-12 23:54:46 +02:00
|
|
|
relatedTasks: {},
|
2019-11-24 14:16:24 +01:00
|
|
|
attachments: [],
|
2020-05-16 13:14:57 +02:00
|
|
|
identifier: '',
|
|
|
|
index: 0,
|
2020-09-05 22:16:17 +02:00
|
|
|
isFavorite: false,
|
2021-02-14 20:18:51 +01:00
|
|
|
subscription: null,
|
2021-10-31 12:56:32 +01:00
|
|
|
|
2021-07-28 21:56:29 +02:00
|
|
|
position: 0,
|
|
|
|
kanbanPosition: 0,
|
2019-04-30 22:18:06 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
createdBy: UserModel,
|
2020-02-08 14:16:06 +01:00
|
|
|
created: null,
|
|
|
|
updated: null,
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2020-04-12 23:54:46 +02:00
|
|
|
listId: 0, // Meta, only used when creating a new task
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2021-02-21 16:13:58 +01:00
|
|
|
getTextIdentifier() {
|
2021-04-14 10:24:07 +02:00
|
|
|
if (this.identifier === '') {
|
2021-02-21 16:13:58 +01:00
|
|
|
return `#${this.index}`
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.identifier
|
|
|
|
}
|
|
|
|
|
2021-04-18 19:16:53 +02:00
|
|
|
getHexColor() {
|
|
|
|
if (this.hexColor === '') {
|
|
|
|
return `#${this.defaultColor}`
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.hexColor
|
|
|
|
}
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
/////////////////
|
|
|
|
// Helper functions
|
|
|
|
///////////////
|
2020-06-27 19:04:30 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
/**
|
|
|
|
* Parses the "repeat after x seconds" from the task into a usable js object inside the task.
|
|
|
|
* This function should only be called from the constructor.
|
|
|
|
*/
|
|
|
|
parseRepeatAfter() {
|
|
|
|
let repeatAfterHours = (this.repeatAfter / 60) / 60
|
|
|
|
this.repeatAfter = {type: 'hours', amount: repeatAfterHours}
|
|
|
|
|
|
|
|
// if its dividable by 24, its something with days, otherwise hours
|
|
|
|
if (repeatAfterHours % 24 === 0) {
|
|
|
|
let repeatAfterDays = repeatAfterHours / 24
|
|
|
|
if (repeatAfterDays % 7 === 0) {
|
|
|
|
this.repeatAfter.type = 'weeks'
|
|
|
|
this.repeatAfter.amount = repeatAfterDays / 7
|
|
|
|
} else if (repeatAfterDays % 30 === 0) {
|
|
|
|
this.repeatAfter.type = 'months'
|
|
|
|
this.repeatAfter.amount = repeatAfterDays / 30
|
|
|
|
} else if (repeatAfterDays % 365 === 0) {
|
|
|
|
this.repeatAfter.type = 'years'
|
|
|
|
this.repeatAfter.amount = repeatAfterDays / 365
|
|
|
|
} else {
|
|
|
|
this.repeatAfter.type = 'days'
|
|
|
|
this.repeatAfter.amount = repeatAfterDays
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-30 22:18:06 +02:00
|
|
|
|
2020-02-08 18:28:17 +01:00
|
|
|
async cancelScheduledNotifications() {
|
2021-11-22 20:03:27 +01:00
|
|
|
if (!SUPPORTS_TRIGGERED_NOTIFICATION) {
|
2020-02-09 13:12:54 +01:00
|
|
|
console.debug('This browser does not support triggered notifications')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-03 14:30:26 +02:00
|
|
|
if (typeof navigator.serviceWorker === 'undefined') {
|
|
|
|
console.debug('Service Worker not available')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-08 18:28:17 +01:00
|
|
|
const registration = await navigator.serviceWorker.getRegistration()
|
|
|
|
if (typeof registration === 'undefined') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get all scheduled notifications for this task and cancel them
|
|
|
|
const scheduledNotifications = await registration.getNotifications({
|
|
|
|
tag: `vikunja-task-${this.id}`,
|
|
|
|
includeTriggered: true,
|
|
|
|
})
|
|
|
|
console.debug('Already scheduled notifications:', scheduledNotifications)
|
|
|
|
scheduledNotifications.forEach(n => n.close())
|
|
|
|
}
|
|
|
|
|
|
|
|
async scheduleNotification(date) {
|
2020-10-03 14:30:26 +02:00
|
|
|
if (typeof navigator.serviceWorker === 'undefined') {
|
|
|
|
console.debug('Service Worker not available')
|
|
|
|
return
|
|
|
|
}
|
2020-03-01 17:13:25 +01:00
|
|
|
|
2020-06-27 19:04:30 +02:00
|
|
|
if (date < new Date()) {
|
2020-03-01 17:13:25 +01:00
|
|
|
console.debug('Date is in the past, not scheduling a notification. Date is ', date)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-22 20:03:27 +01:00
|
|
|
if (!SUPPORTS_TRIGGERED_NOTIFICATION) {
|
2020-02-08 18:28:17 +01:00
|
|
|
console.debug('This browser does not support triggered notifications')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:16:17 +02:00
|
|
|
const {state} = await navigator.permissions.request({name: 'notifications'})
|
2020-02-08 18:28:17 +01:00
|
|
|
if (state !== 'granted') {
|
|
|
|
console.debug('Notification permission not granted, not showing notifications')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const registration = await navigator.serviceWorker.getRegistration()
|
|
|
|
if (typeof registration === 'undefined') {
|
2020-03-01 17:13:25 +01:00
|
|
|
console.error('No service worker registration available')
|
2020-02-08 18:28:17 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the actual notification
|
2021-10-11 19:37:20 +02:00
|
|
|
try {
|
|
|
|
registration.showNotification('Vikunja Reminder', {
|
|
|
|
tag: `vikunja-task-${this.id}`, // Group notifications by task id so we're only showing one notification per task
|
|
|
|
body: this.title,
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
showTrigger: new TimestampTrigger(date),
|
|
|
|
badge: '/images/icons/badge-monochrome.png',
|
|
|
|
icon: '/images/icons/android-chrome-512x512.png',
|
|
|
|
data: {taskId: this.id},
|
|
|
|
actions: [
|
|
|
|
{
|
|
|
|
action: 'show-task',
|
|
|
|
title: 'Show task',
|
|
|
|
},
|
|
|
|
],
|
2020-06-27 19:04:30 +02:00
|
|
|
})
|
2021-10-11 19:37:20 +02:00
|
|
|
console.debug('Notification scheduled for ' + date)
|
2021-10-31 12:56:32 +01:00
|
|
|
} catch (e) {
|
2021-10-11 19:37:20 +02:00
|
|
|
throw new Error('Error scheduling notification', e)
|
|
|
|
}
|
2020-02-08 18:28:17 +01:00
|
|
|
}
|
2020-04-04 18:26:35 +02:00
|
|
|
}
|
|
|
|
|