koel/resources/assets/js/composables/useOverlay.ts
2024-07-06 17:45:01 +02:00

13 lines
426 B
TypeScript

import { Ref } from 'vue'
import { requireInjection } from '@/utils'
import { OverlayKey } from '@/symbols'
import Overlay from '@/components/ui/Overlay.vue'
export const useOverlay = (overlay?: Ref<InstanceType<typeof Overlay>> | null) => {
overlay = overlay || requireInjection(OverlayKey)
return {
showOverlay: overlay.value.show.bind(overlay.value),
hideOverlay: overlay.value.hide.bind(overlay.value)
}
}