platform/packages/ui/src/components/notifications/actions.ts
Kristina 15c2aa802b
TSK-212: add notification on issue created (#2325)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2022-11-01 02:08:57 +07:00

35 lines
1.0 KiB
TypeScript

import { Writable } from 'svelte/store'
import { generateId } from '@hcengineering/core'
import { Notification } from './Notification'
import { NotificationPosition } from './NotificationPosition'
import { NotificationSeverity } from './NotificationSeverity'
export const addNotification = (notification: Notification, store: Writable<Notification[]>): void => {
if (notification === undefined || notification === null) {
return
}
const { update } = store
const newNotification = {
severity: NotificationSeverity.Info,
...notification,
id: generateId()
}
update((notifications: Notification[]) =>
[NotificationPosition.TopRight, NotificationPosition.TopLeft].includes(newNotification.position)
? [newNotification, ...notifications]
: [...notifications, newNotification]
)
}
export const removeNotification = (notificationId: string, { update }: Writable<Notification[]>): void => {
if (notificationId === '') {
return
}
update((notifications) => notifications.filter(({ id }) => id !== notificationId))
}