43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { writable, derived, type Writable } from 'svelte/store';
|
|
|
|
type StateType = 'info' | 'success' | 'warning' | 'error';
|
|
|
|
type State = {
|
|
id: string;
|
|
type: StateType;
|
|
message: string;
|
|
};
|
|
|
|
function createNotificationStore() {
|
|
const state: State[] = [];
|
|
const notifications = writable(state);
|
|
const { subscribe } = notifications;
|
|
|
|
function send(message: string, type: StateType = 'info', timeout: number) {
|
|
const id = generateId();
|
|
setTimeout(() => {
|
|
notifications.update((state) => {
|
|
return state.filter((n) => n.id !== id);
|
|
});
|
|
}, timeout);
|
|
notifications.update((state) => {
|
|
return [...state, { id, type, message }];
|
|
});
|
|
}
|
|
|
|
return {
|
|
subscribe,
|
|
send,
|
|
error: (msg: string, timeout: number) => send(msg, 'error', timeout),
|
|
warning: (msg: string, timeout: number) => send(msg, 'warning', timeout),
|
|
info: (msg: string, timeout: number) => send(msg, 'info', timeout),
|
|
success: (msg: string, timeout: number) => send(msg, 'success', timeout)
|
|
};
|
|
}
|
|
|
|
function generateId() {
|
|
return '_' + Math.random().toString(36).substr(2, 9);
|
|
}
|
|
|
|
export const notifications = createNotificationStore();
|