element-plus
Version: 
A Component Library for Vue3.0
30 lines (27 loc) • 752 B
JavaScript
import isServer from './isServer';
const globalNodes = [];
let target = isServer ? void 0 : document.body;
function createGlobalNode(id) {
    const el = document.createElement('div');
    if (id !== void 0) {
        el.id = id;
    }
    target.appendChild(el);
    globalNodes.push(el);
    return el;
}
function removeGlobalNode(el) {
    globalNodes.splice(globalNodes.indexOf(el), 1);
    el.remove();
}
function changeGlobalNodesTarget(el) {
    if (el !== target) {
        target = el;
        globalNodes.forEach(el => {
            if (el.contains(target) === false) {
                target.appendChild(el);
            }
        });
    }
}
export { changeGlobalNodesTarget, createGlobalNode, removeGlobalNode };