Skip to content

Instantly share code, notes, and snippets.

@unrevised6419
Created November 19, 2024 11:49
Show Gist options
  • Save unrevised6419/f768aae2210fe94e11a74af6017d6202 to your computer and use it in GitHub Desktop.
Save unrevised6419/f768aae2210fe94e11a74af6017d6202 to your computer and use it in GitHub Desktop.
Vue Portal Provider that nests/recurse
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