2022-08-04 20:57:43 +02:00
|
|
|
import AbstractModel from './abstractModel'
|
2021-02-21 16:13:58 +01:00
|
|
|
import {parseDateOrNull} from '@/helpers/parseDateOrNull'
|
2022-08-04 20:57:43 +02:00
|
|
|
import UserModel from '@/models/user'
|
|
|
|
import TaskModel from '@/models/task'
|
|
|
|
import TaskCommentModel from '@/models/taskComment'
|
|
|
|
import ListModel from '@/models/list'
|
|
|
|
import TeamModel from '@/models/team'
|
2022-06-23 03:22:21 +02:00
|
|
|
|
2022-08-04 20:57:43 +02:00
|
|
|
import {NOTIFICATION_NAMES, type INotification} from '@/modelTypes/INotification'
|
2022-07-21 00:42:36 +02:00
|
|
|
|
|
|
|
export default class NotificationModel extends AbstractModel implements INotification {
|
2022-08-14 12:15:45 +02:00
|
|
|
id = 0
|
|
|
|
name = ''
|
2022-08-04 20:57:43 +02:00
|
|
|
notification: INotification['notification'] = null
|
2022-08-14 12:15:45 +02:00
|
|
|
read = false
|
|
|
|
readAt: Date | null = null
|
2022-07-21 00:42:36 +02:00
|
|
|
|
|
|
|
created: Date
|
2022-06-23 03:22:21 +02:00
|
|
|
|
2022-08-14 12:15:45 +02:00
|
|
|
constructor(data: Partial<INotification>) {
|
|
|
|
super()
|
|
|
|
this.assignData(data)
|
2021-02-21 16:13:58 +01:00
|
|
|
|
|
|
|
switch (this.name) {
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_COMMENT:
|
|
|
|
this.notification = {
|
|
|
|
doer: new UserModel(this.notification.doer),
|
|
|
|
task: new TaskModel(this.notification.task),
|
|
|
|
comment: new TaskCommentModel(this.notification.comment),
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
break
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_ASSIGNED:
|
|
|
|
this.notification = {
|
|
|
|
doer: new UserModel(this.notification.doer),
|
|
|
|
task: new TaskModel(this.notification.task),
|
|
|
|
assignee: new UserModel(this.notification.assignee),
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
break
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_DELETED:
|
|
|
|
this.notification = {
|
|
|
|
doer: new UserModel(this.notification.doer),
|
|
|
|
task: new TaskModel(this.notification.task),
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
break
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.LIST_CREATED:
|
|
|
|
this.notification = {
|
|
|
|
doer: new UserModel(this.notification.doer),
|
|
|
|
list: new ListModel(this.notification.list),
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
break
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TEAM_MEMBER_ADDED:
|
|
|
|
this.notification = {
|
|
|
|
doer: new UserModel(this.notification.doer),
|
|
|
|
member: new UserModel(this.notification.member),
|
|
|
|
team: new TeamModel(this.notification.team),
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
this.created = new Date(this.created)
|
|
|
|
this.readAt = parseDateOrNull(this.readAt)
|
|
|
|
}
|
|
|
|
|
|
|
|
toText(user = null) {
|
|
|
|
let who = ''
|
|
|
|
|
|
|
|
switch (this.name) {
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_COMMENT:
|
2021-02-21 16:13:58 +01:00
|
|
|
return `commented on ${this.notification.task.getTextIdentifier()}`
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_ASSIGNED:
|
2021-02-21 16:13:58 +01:00
|
|
|
who = `${this.notification.assignee.getDisplayName()}`
|
|
|
|
|
|
|
|
if (user !== null && user.id === this.notification.assignee.id) {
|
|
|
|
who = 'you'
|
|
|
|
}
|
|
|
|
|
|
|
|
return `assigned ${who} to ${this.notification.task.getTextIdentifier()}`
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TASK_DELETED:
|
2021-02-21 16:13:58 +01:00
|
|
|
return `deleted ${this.notification.task.getTextIdentifier()}`
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.LIST_CREATED:
|
2021-02-21 16:13:58 +01:00
|
|
|
return `created ${this.notification.list.title}`
|
2022-06-23 03:22:21 +02:00
|
|
|
case NOTIFICATION_NAMES.TEAM_MEMBER_ADDED:
|
2021-02-21 16:13:58 +01:00
|
|
|
who = `${this.notification.member.getDisplayName()}`
|
|
|
|
|
2021-02-23 18:16:13 +01:00
|
|
|
if (user !== null && user.id === this.notification.member.id) {
|
2021-02-21 16:13:58 +01:00
|
|
|
who = 'you'
|
|
|
|
}
|
|
|
|
|
2021-02-23 19:17:45 +01:00
|
|
|
return `added ${who} to the ${this.notification.team.name} team`
|
2021-02-21 16:13:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
}
|