54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
export interface Notification {
|
|
show: boolean
|
|
type: 'info' | 'error' | 'success' | 'warning'
|
|
text: string
|
|
time: Date
|
|
id: number
|
|
}
|
|
|
|
export const useNotificationStore = defineStore('notification', {
|
|
state: () => {
|
|
const notifications: Notification[] = []
|
|
return {
|
|
notifications,
|
|
notificationCount: 0,
|
|
}
|
|
},
|
|
actions: {
|
|
addNotification(text: string, type: Notification['type'] = 'info') {
|
|
this.notifications.push({
|
|
id: this.notificationCount++,
|
|
text,
|
|
type,
|
|
time: new Date(),
|
|
show: true,
|
|
})
|
|
},
|
|
delNotification(id: number) {
|
|
const index = this.notifications.findIndex((m) => m.id === id)
|
|
if (index !== -1) {
|
|
this.notifications.splice(index, 1)
|
|
}
|
|
},
|
|
},
|
|
})
|
|
|
|
export const Notify = {
|
|
info: (text: string) => useNotificationStore().addNotification(text, 'info'),
|
|
success: (text: string) =>
|
|
useNotificationStore().addNotification(text, 'success'),
|
|
warning: (text: string) =>
|
|
useNotificationStore().addNotification(text, 'warning'),
|
|
error: (val: unknown) => {
|
|
let text = ''
|
|
if (typeof val === 'string') {
|
|
text = val
|
|
} else if (val instanceof Error) {
|
|
text = val.message
|
|
} else {
|
|
text = JSON.stringify(val)
|
|
}
|
|
useNotificationStore().addNotification(text, 'error')
|
|
},
|
|
}
|