mirror of
https://github.com/immich-app/immich.git
synced 2026-01-08 22:04:34 -05:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
export enum NotificationType {
|
|
Info = 'Info',
|
|
Error = 'Error',
|
|
Warning = 'Warning',
|
|
}
|
|
|
|
export type Notification = {
|
|
id: number;
|
|
type: NotificationType;
|
|
message: string;
|
|
/** The action to take when the notification is clicked */
|
|
action: NotificationAction;
|
|
/** Timeout in miliseconds */
|
|
timeout: number;
|
|
};
|
|
|
|
type DiscardAction = { type: 'discard' };
|
|
type NoopAction = { type: 'noop' };
|
|
type LinkAction = { type: 'link'; target: string };
|
|
export type NotificationAction = DiscardAction | NoopAction | LinkAction;
|
|
|
|
export type NotificationOptions = Partial<Exclude<Notification, 'id'>> & { message: string };
|
|
|
|
function createNotificationList() {
|
|
const notificationList = writable<Notification[]>([]);
|
|
let count = 1;
|
|
|
|
const show = (options: NotificationOptions) => {
|
|
notificationList.update((currentList) => {
|
|
currentList.push({
|
|
id: count++,
|
|
type: NotificationType.Info,
|
|
action: { type: 'discard' },
|
|
timeout: 3000,
|
|
...options,
|
|
});
|
|
|
|
return currentList;
|
|
});
|
|
};
|
|
|
|
const removeNotificationById = (id: number) => {
|
|
notificationList.update((currentList) => currentList.filter((n) => n.id !== id));
|
|
};
|
|
|
|
return {
|
|
show,
|
|
removeNotificationById,
|
|
notificationList,
|
|
};
|
|
}
|
|
|
|
export const notificationController = createNotificationList();
|