Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | import { ref } from "vue";
export type NotificationType = "success" | "error" | "info" | "warning";
export interface Notification {
id: number;
message: string;
type: NotificationType;
duration: number;
}
const notifications = ref<Notification[]>([]);
let notificationId = 0;
export function useNotifications() {
function showNotification(
message: string,
type: NotificationType = "success",
duration = 2500,
): void {
const id = ++notificationId;
const notification: Notification = {
id,
message,
type,
duration,
};
notifications.value.push(notification);
// Auto-remove after duration
setTimeout(() => {
removeNotification(id);
}, duration);
}
function removeNotification(id: number): void {
notifications.value = notifications.value.filter((n) => n.id !== id);
}
return {
notifications,
showNotification,
removeNotification,
};
}
|