2022-08-14 12:15:09 +02:00
|
|
|
import AbstractModel, { type IAbstract } from '@/models/abstractModel'
|
2021-02-21 16:13:58 +01:00
|
|
|
import {parseDateOrNull} from '@/helpers/parseDateOrNull'
|
2022-07-21 00:42:36 +02:00
|
|
|
import UserModel, { type IUser } from '@/models/user'
|
|
|
|
import TaskModel, { type ITask } from '@/models/task'
|
|
|
|
import TaskCommentModel, { type ITaskComment } from '@/models/taskComment'
|
2022-08-14 12:15:45 +02:00
|
|
|
import ListModel, { type IList } from '@/models/list'
|
2022-07-21 00:42:36 +02:00
|
|
|
import TeamModel, { type ITeam } 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 {
|
2022-07-21 00:42:36 +02:00
|
|
|
doer: IUser
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
|
|
|
interface NotificationTask extends Notification {
|
2022-07-21 00:42:36 +02:00
|
|
|
task: ITask
|
|
|
|
comment: ITaskComment
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationAssigned extends Notification {
|
2022-07-21 00:42:36 +02:00
|
|
|
task: ITask
|
|
|
|
assignee: IUser
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationDeleted extends Notification {
|
2022-07-21 00:42:36 +02:00
|
|
|
task: ITask
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationCreated extends Notification {
|
2022-07-21 00:42:36 +02:00
|
|
|
task: ITask
|
2022-08-14 12:15:45 +02:00
|
|
|
list: IList
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NotificationMemberAdded extends Notification {
|
2022-07-21 00:42:36 +02:00
|
|
|
member: IUser
|
|
|
|
team: ITeam
|
2022-06-23 03:22:21 +02:00
|
|
|
}
|
2021-02-21 16:13:58 +01:00
|
|
|
|
2022-08-14 12:15:09 +02:00
|
|
|
export interface INotification extends IAbstract {
|
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
|
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 = ''
|
|
|
|
notification: NotificationTask | NotificationAssigned | NotificationDeleted | NotificationCreated | NotificationMemberAdded = null
|
|
|
|
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 ''
|
|
|
|
}
|
|
|
|
}
|