element-plus/packages/utils/vue/global-node.ts
三咲智子 6503e55277
refactor(utils): migrate utils (#5949)
* refactor(utils-v2): migrate utils

* refactor(utils-v2): migrate utils

* refactor(utils-v2): migrate utils

* refactor(utils): remove

* refactor(utils): rename

* refactor(utils): move EVENT_CODE to constants

* refactor: remove generic
2022-02-11 11:03:15 +08:00

33 lines
704 B
TypeScript

import { isClient } from '@vueuse/core'
const globalNodes: HTMLElement[] = []
let target: HTMLElement = !isClient ? (undefined as any) : document.body
export function createGlobalNode(id?: string) {
const el = document.createElement('div')
if (id !== undefined) {
el.setAttribute('id', id)
}
target.appendChild(el)
globalNodes.push(el)
return el
}
export function removeGlobalNode(el: HTMLElement) {
globalNodes.splice(globalNodes.indexOf(el), 1)
el.remove()
}
export function changeGlobalNodesTarget(el: HTMLElement) {
if (el === target) return
target = el
globalNodes.forEach((el) => {
if (el.contains(target) === false) {
target.appendChild(el)
}
})
}