1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import { computed, onBeforeMount } from 'vue'
- import { isClient } from '@vueuse/core'
- import { useGetDerivedNamespace } from '../use-namespace'
- import { useIdInjection } from '../use-id'
- let cachedContainer: HTMLElement
- export const usePopperContainerId = () => {
- const namespace = useGetDerivedNamespace()
- const idInjection = useIdInjection()
- const id = computed(() => {
- return `${namespace.value}-popper-container-${idInjection.prefix}`
- })
- const selector = computed(() => `#${id.value}`)
- return {
- id,
- selector,
- }
- }
- const createContainer = (id: string) => {
- const container = document.createElement('div')
- container.id = id
- document.body.appendChild(container)
- return container
- }
- export const usePopperContainer = () => {
- const { id, selector } = usePopperContainerId()
- onBeforeMount(() => {
- if (!isClient) return
- // This is for bypassing the error that when under testing env, we often encounter
- // document.body.innerHTML = '' situation
- // for this we need to disable the caching since it's not really needed
- if (
- process.env.NODE_ENV === 'test' ||
- (!cachedContainer && !document.body.querySelector(selector.value))
- ) {
- cachedContainer = createContainer(id.value)
- }
- })
- return {
- id,
- selector,
- }
- }
|