happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
225 lines (204 loc) • 7.3 kB
text/typescript
import NodeTypeEnum from '../node/NodeTypeEnum.js';
import * as PropertySymbol from '../../PropertySymbol.js';
import Element from './Element.js';
import Node from '../node/Node.js';
import HTMLCollection from './HTMLCollection.js';
import Document from '../document/Document.js';
import DocumentFragment from '../document-fragment/DocumentFragment.js';
import HTMLElement from '../html-element/HTMLElement.js';
import NodeUtility from '../node/NodeUtility.js';
import DOMException from '../../exception/DOMException.js';
import DOMExceptionNameEnum from '../../exception/DOMExceptionNameEnum.js';
const NAMED_ITEM_ATTRIBUTES = ['id', 'name'];
/**
* Element utility.
*/
export default class ElementUtility {
/**
* Handles appending a child element to the "children" property.
*
* @param ancestorNode Ancestor node.
* @param node Node to append.
* @param [options] Options.
* @param [options.disableAncestorValidation] Disables validation for checking if the node is an ancestor of the ancestorNode.
* @returns Appended node.
*/
public static appendChild(
ancestorNode: Element | Document | DocumentFragment,
node: Node,
options?: { disableAncestorValidation?: boolean }
): Node {
if (node[PropertySymbol.nodeType] === NodeTypeEnum.elementNode && node !== ancestorNode) {
if (
!options?.disableAncestorValidation &&
NodeUtility.isInclusiveAncestor(node, ancestorNode)
) {
throw new DOMException(
"Failed to execute 'appendChild' on 'Node': The new node is a parent of the node to insert to.",
DOMExceptionNameEnum.domException
);
}
if (node[PropertySymbol.parentNode]) {
const parentNodeChildren = <HTMLCollection<HTMLElement>>(
(<Element>node[PropertySymbol.parentNode])[PropertySymbol.children]
);
if (parentNodeChildren) {
const index = parentNodeChildren.indexOf(<HTMLElement>node);
if (index !== -1) {
for (const attributeName of NAMED_ITEM_ATTRIBUTES) {
const attribute = (<Element>node)[PropertySymbol.attributes].getNamedItem(
attributeName
);
if (attribute) {
parentNodeChildren[PropertySymbol.removeNamedItem](
<HTMLElement>node,
attribute[PropertySymbol.value]
);
}
}
parentNodeChildren.splice(index, 1);
}
}
}
const ancestorNodeChildren = <HTMLCollection<HTMLElement>>(
(<Element>ancestorNode)[PropertySymbol.children]
);
for (const attributeName of NAMED_ITEM_ATTRIBUTES) {
const attribute = (<Element>node)[PropertySymbol.attributes].getNamedItem(attributeName);
if (attribute) {
ancestorNodeChildren[PropertySymbol.appendNamedItem](
<HTMLElement>node,
attribute[PropertySymbol.value]
);
}
}
ancestorNodeChildren.push(<Element>node);
NodeUtility.appendChild(ancestorNode, node, { disableAncestorValidation: true });
} else {
NodeUtility.appendChild(ancestorNode, node, options);
}
return node;
}
/**
* Handles removing a child element from the "children" property.
*
* @param ancestorNode Ancestor node.
* @param node Node.
* @returns Removed node.
*/
public static removeChild(ancestorNode: Element | Document | DocumentFragment, node: Node): Node {
if (node[PropertySymbol.nodeType] === NodeTypeEnum.elementNode) {
const ancestorNodeChildren = <HTMLCollection<HTMLElement>>(
(<Element>ancestorNode)[PropertySymbol.children]
);
const index = ancestorNodeChildren.indexOf(<Element>node);
if (index !== -1) {
for (const attributeName of NAMED_ITEM_ATTRIBUTES) {
const attribute = (<Element>node)[PropertySymbol.attributes].getNamedItem(attributeName);
if (attribute) {
ancestorNodeChildren[PropertySymbol.removeNamedItem](
<HTMLElement>node,
attribute[PropertySymbol.value]
);
}
}
ancestorNodeChildren.splice(index, 1);
}
}
NodeUtility.removeChild(ancestorNode, node);
return node;
}
/**
*
* Handles inserting a child element to the "children" property.
*
* @param ancestorNode Ancestor node.
* @param newNode Node to insert.
* @param referenceNode Node to insert before.
* @param [options] Options.
* @param [options.disableAncestorValidation] Disables validation for checking if the node is an ancestor of the ancestorNode.
* @returns Inserted node.
*/
public static insertBefore(
ancestorNode: Element | Document | DocumentFragment,
newNode: Node,
referenceNode: Node | null,
options?: { disableAncestorValidation?: boolean }
): Node {
// NodeUtility.insertBefore() will call appendChild() for the scenario where "referenceNode" is "null" or "undefined"
if (newNode[PropertySymbol.nodeType] === NodeTypeEnum.elementNode && referenceNode) {
if (
!options?.disableAncestorValidation &&
NodeUtility.isInclusiveAncestor(newNode, ancestorNode)
) {
throw new DOMException(
"Failed to execute 'insertBefore' on 'Node': The new node is a parent of the node to insert to.",
DOMExceptionNameEnum.domException
);
}
if (newNode[PropertySymbol.parentNode]) {
const parentNodeChildren = <HTMLCollection<HTMLElement>>(
(<Element>newNode[PropertySymbol.parentNode])[PropertySymbol.children]
);
if (parentNodeChildren) {
const index = parentNodeChildren.indexOf(<HTMLElement>newNode);
if (index !== -1) {
for (const attributeName of NAMED_ITEM_ATTRIBUTES) {
const attribute = (<Element>newNode)[PropertySymbol.attributes].getNamedItem(
attributeName
);
if (attribute) {
parentNodeChildren[PropertySymbol.removeNamedItem](
<HTMLElement>newNode,
attribute[PropertySymbol.value]
);
}
}
parentNodeChildren.splice(index, 1);
}
}
const parentChildNodes = (<Element>ancestorNode)[PropertySymbol.childNodes];
if (parentChildNodes) {
const index = parentChildNodes.indexOf(newNode);
if (index !== -1) {
parentChildNodes.splice(index, 1);
}
}
}
const ancestorNodeChildren = <HTMLCollection<HTMLElement>>(
(<Element>ancestorNode)[PropertySymbol.children]
);
if (referenceNode[PropertySymbol.nodeType] === NodeTypeEnum.elementNode) {
const index = ancestorNodeChildren.indexOf(<Element>referenceNode);
if (index !== -1) {
ancestorNodeChildren.splice(index, 0, <Element>newNode);
}
} else {
ancestorNodeChildren.length = 0;
for (const node of (<Element>ancestorNode)[PropertySymbol.childNodes]) {
if (node === referenceNode) {
ancestorNodeChildren.push(<Element>newNode);
}
if (node[PropertySymbol.nodeType] === NodeTypeEnum.elementNode) {
ancestorNodeChildren.push(<Element>node);
}
}
}
for (const attributeName of NAMED_ITEM_ATTRIBUTES) {
const attribute = (<Element>newNode)[PropertySymbol.attributes].getNamedItem(attributeName);
if (attribute) {
ancestorNodeChildren[PropertySymbol.appendNamedItem](
<HTMLElement>newNode,
attribute[PropertySymbol.value]
);
}
}
NodeUtility.insertBefore(ancestorNode, newNode, referenceNode, {
disableAncestorValidation: true
});
} else {
NodeUtility.insertBefore(ancestorNode, newNode, referenceNode, options);
}
return newNode;
}
}