mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
17 lines
613 B
TypeScript
17 lines
613 B
TypeScript
import type { Ref } from 'vue'
|
|
import { MessageToasterKey } from '@/symbols'
|
|
import { requireInjection } from '@/utils'
|
|
import type MessageToaster from '@/components/ui/message-toaster/MessageToaster.vue'
|
|
|
|
let toaster: Ref<InstanceType<typeof MessageToaster>>
|
|
|
|
export const useMessageToaster = () => {
|
|
toaster = toaster || requireInjection(MessageToasterKey)
|
|
|
|
return {
|
|
toastSuccess: toaster.value.success.bind(toaster.value),
|
|
toastInfo: toaster.value.info.bind(toaster.value),
|
|
toastWarning: toaster.value.warning.bind(toaster.value),
|
|
toastError: toaster.value.error.bind(toaster.value),
|
|
}
|
|
}
|