Created
November 19, 2024 11:49
-
-
Save unrevised6419/f768aae2210fe94e11a74af6017d6202 to your computer and use it in GitHub Desktop.
Vue Portal Provider that nests/recurse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
inject, | |
provide, | |
type InjectionKey, | |
type SlotsType, | |
type ComputedRef, | |
computed, | |
toRef, | |
defineComponent, | |
} from 'vue'; | |
export const PortalProviderInjectionKey: InjectionKey< | |
ComputedRef<HTMLElement> | |
> = Symbol('PortalProviderInjectionKey'); | |
export const PortalProvider = defineComponent({ | |
props: { | |
to: { | |
type: Object as () => HTMLElement, | |
default: undefined, | |
}, | |
}, | |
slots: Object as SlotsType<{ default: void }>, | |
setup(props, context) { | |
const providedPortalTo = usePortalProvider(); | |
const propsPortalTo = toRef(props, 'to'); | |
const value = computed(() => propsPortalTo.value ?? providedPortalTo.value); | |
provide(PortalProviderInjectionKey, value); | |
return () => context.slots.default(); | |
}, | |
}); | |
export function usePortalProvider() { | |
return inject( | |
PortalProviderInjectionKey, | |
computed(() => document.body), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment