2021-02-21 16:13:58 +01:00
|
|
|
import AbstractModel from '@/models/abstractModel'
|
|
|
|
import {parseDateOrNull} from '@/helpers/parseDateOrNull'
|
|
|
|
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
|
|
|
|
|
|
|
export const NOTIFICATION_NAMES = {
|
|
|
|
'TASK_COMMENT': 'task.comment',
|
|
|
|
'TASK_ASSIGNED': 'task.assigned',
|
|
|
|
'TASK_DELETED': 'task.deleted',
|
|
|
|
'LIST_CREATED': 'list.created',
|
|
|
|
'TEAM_MEMBER_ADDED': 'team.member.added',
|
|
|
|
} as const
|
|
|
|
|
|
|
|
interface Notification {
|
|
|
|
doer: UserModel
|
|
|
|
}
|
|
|
|
interface NotificationTask extends Notification {
|
|
|
|
task: TaskModel
|
|
|
|
comment: TaskCommentModel
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationAssigned extends Notification {
|
|
|
|
task: TaskModel
|
|
|
|
assignee: UserModel
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationDeleted extends Notification {
|
|
|
|
task: TaskModel
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationCreated extends Notification {
|
|
|
|
task: TaskModel
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationMemberAdded extends Notification {
|
|
|
|
member: UserModel
|
|
|
|
team: TeamModel
|
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
|
|
|
|
export default class NotificationModel extends AbstractModel {
|
2022-06-23 03:22:21 +02:00
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
notification: NotificationTask | NotificationAssigned | NotificationDeleted | NotificationCreated | NotificationMemberAdded
|
|
|
|
read: boolean
|
|
|
|
readAt: Date | null
|
|
|
|
|
|
|
|
created: Date
|
|
|
|
|
2021-02-21 16:13:58 +01:00
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
id: 0,
|
|
|
|
name: '',
|
|
|
|
notification: null,
|
|
|
|
read: false,
|
|
|
|
readAt: null,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 ''
|
|
|
|
}
|
|
|
|
}
|