File

src/util/dom/dom.util.ts

Description

Stark specific DOM commands

Index

Methods

Methods

Static getElementsBySelector
getElementsBySelector(rootElement: Element, selector: string)

Search starting at the root element and return the set of elements matching the given selector.

Parameters :
Name Type Optional Description
rootElement Element No
  • HTML element that will be the base for search selector.
selector string No
  • CSS selector of the element(s) to be searched.
Returns : NodeListOf<Element>

The list of nodes that were found, otherwise it returns undefined.

Static hasClass
hasClass(element: Element, classname: string)

To check if an element has a certain class

Parameters :
Name Type Optional Description
element Element No
  • The element to be checked
classname string No
  • The classname being searched
Returns : boolean

True if the element has the requested class

Static searchParentElementByClass
searchParentElementByClass(element: Element, className: string)

Recursive function to look for the parent element with the specified class it will stop the recursion when it reaches the element

Parameters :
Name Type Optional Description
element Element No
  • HTML element whose parent will be searched
className string No
  • Class name of the parent element to be searched
Returns : Element | undefined

The searched element in case it was found, otherwise it returns undefined.

Static searchParentElementByClasses
searchParentElementByClasses(element: Element, classNames: string[])

Recursive function to look for the parent element with one of the specified classes it will stop the recursion when it reaches the element

Parameters :
Name Type Optional Description
element Element No
  • HTML element whose parent will be searched
classNames string[] No
  • Array containing the class names of the parent element to be searched
Returns : Element | undefined

The searched element in case it was found, otherwise it returns undefined.

Static searchParentElementById
searchParentElementById(element: Element, htmlId: string)

Recursive function to look for the parent element with the specified html id it will stop the recursion when it reaches the element

Parameters :
Name Type Optional Description
element Element No
  • HTML element whose parent will be searched.
htmlId string No
  • HTML id of the parent element to be searched.
Returns : Element | undefined

The searched element in case it was found, otherwise it returns undefined.

Static searchParentElementByTag
searchParentElementByTag(element: Element, tagName: string)

Recursive function to look for the parent element with the specified tag name it will stop the recursion when it reaches the element

Parameters :
Name Type Optional Description
element Element No
  • HTML element whose parent will be searched.
tagName string No
  • Tag name of the parent element to be searched.
Returns : Element | undefined

The searched element in case it was found, otherwise it returns undefined

export class StarkDOMUtil {
	/**
	 * Recursive function to look for the parent element with the specified tag name
	 * it will stop the recursion when it reaches the <body> element
	 * @param element - HTML element whose parent will be searched.
	 * @param tagName - Tag name of the parent element to be searched.
	 * @returns The searched element in case it was found, otherwise it returns undefined
	 */
	public static searchParentElementByTag(element: Element, tagName: string): Element | undefined {
		if (element.parentElement && element.parentElement.tagName === tagName.toUpperCase()) {
			return element.parentElement;
		} else if (element.parentElement && element.parentElement.tagName !== "BODY") {
			return StarkDOMUtil.searchParentElementByTag(element.parentElement, tagName);
		}

		return undefined;
	}

	/**
	 * Recursive function to look for the parent element with the specified class
	 * it will stop the recursion when it reaches the <body> element
	 * @param element - HTML element whose parent will be searched
	 * @param className - Class name of the parent element to be searched
	 * @returns The searched element in case it was found, otherwise it returns undefined.
	 */
	public static searchParentElementByClass(element: Element, className: string): Element | undefined {
		if (element.parentElement && StarkDOMUtil.hasClass(element.parentElement, className)) {
			return element.parentElement;
		} else if (element.parentElement && element.parentElement.tagName !== "BODY") {
			return StarkDOMUtil.searchParentElementByClass(element.parentElement, className);
		}

		return undefined;
	}

	/**
	 * Recursive function to look for the parent element with one of the specified classes
	 * it will stop the recursion when it reaches the <body> element
	 * @param element - HTML element whose parent will be searched
	 * @param classNames - Array containing the class names of the parent element to be searched
	 * @returns The searched element in case it was found, otherwise it returns undefined.
	 */
	public static searchParentElementByClasses(element: Element, classNames: string[]): Element | undefined {
		if (element.parentElement) {
			let parentElementHasClass = false;
			for (const className of classNames) {
				if (StarkDOMUtil.hasClass(element.parentElement, className)) {
					parentElementHasClass = true;
				}
			}
			if (parentElementHasClass) {
				return element.parentElement;
			} else if (element.parentElement.tagName !== "BODY") {
				return StarkDOMUtil.searchParentElementByClasses(element.parentElement, classNames);
			}
		}

		return undefined;
	}

	/**
	 * Recursive function to look for the parent element with the specified html id
	 * it will stop the recursion when it reaches the <body> element
	 * @param element - HTML element whose parent will be searched.
	 * @param htmlId - HTML id of the parent element to be searched.
	 * @returns The searched element in case it was found, otherwise it returns undefined.
	 */
	public static searchParentElementById(element: Element, htmlId: string): Element | undefined {
		if (element.parentElement && element.parentElement.id === htmlId) {
			return element.parentElement;
		} else if (element.parentElement && element.parentElement.tagName !== "BODY") {
			return StarkDOMUtil.searchParentElementById(element.parentElement, htmlId);
		}

		return undefined;
	}

	/**
	 * Search starting at the root element and return the set of elements matching the given selector.
	 * @param rootElement - HTML element that will be the base for search selector.
	 * @param selector - CSS selector of the element(s) to be searched.
	 * @returns The list of nodes that were found, otherwise it returns undefined.
	 */
	public static getElementsBySelector(rootElement: Element, selector: string): NodeListOf<Element> {
		return rootElement.querySelectorAll(selector);
	}

	/**
	 * To check if an element has a certain class
	 * @param element - The element to be checked
	 * @param classname - The classname being searched
	 * @returns True if the element has the requested class
	 */
	public static hasClass(element: Element, classname: string): boolean {
		return element.classList.contains(classname);
	}
}

results matching ""

    No results matching ""