"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const DOMException_js_1 = __importDefault(require("../exception/DOMException.cjs")); const PropertySymbol = __importStar(require("../PropertySymbol.cjs")); const SelectorCombinatorEnum_js_1 = __importDefault(require("./SelectorCombinatorEnum.cjs")); /** * Selector item. */ class SelectorItem { /** * Constructor. * * @param [options] Options. * @param [options.combinator] Combinator. * @param [options.tagName] Tag name. * @param [options.id] ID. * @param [options.classNames] Class names. * @param [options.attributes] Attributes. * @param [options.pseudos] Pseudos. * @param [options.isPseudoElement] Is pseudo element. */ constructor(options) { this.tagName = options?.tagName || null; this.id = options?.id || null; this.classNames = options?.classNames || null; this.attributes = options?.attributes || null; this.pseudos = options?.pseudos || null; this.isPseudoElement = options?.isPseudoElement || false; this.combinator = options?.combinator || SelectorCombinatorEnum_js_1.default.descendant; } /** * Matches a selector against an element. * * @param element HTML element. * @returns Result. */ match(element) { let priorityWeight = 0; if (this.isPseudoElement) { return null; } // Tag name match if (this.tagName) { if (this.tagName !== '*' && this.tagName !== element[PropertySymbol.tagName].toUpperCase()) { return null; } priorityWeight += 1; } // ID Match if (this.id) { if (this.id !== element.id) { return null; } priorityWeight += 100; } // Class match if (this.classNames) { const result = this.matchClass(element); if (!result) { return null; } priorityWeight += result.priorityWeight; } // Attribute match if (this.attributes) { const result = this.matchAttributes(element); if (!result) { return null; } priorityWeight += result.priorityWeight; } // Pseudo match if (this.pseudos && !this.matchPsuedo(element)) { return null; } return { priorityWeight }; } /** * Matches a psuedo selector. * * @param element Element. * @returns Result. */ matchPsuedo(element) { const parent = element[PropertySymbol.parentNode]; const parentChildren = element[PropertySymbol.parentNode] ? element[PropertySymbol.parentNode][PropertySymbol.children] : []; if (!this.pseudos) { return true; } for (const psuedo of this.pseudos) { // Validation switch (psuedo.name) { case 'not': case 'nth-child': case 'nth-of-type': case 'nth-last-child': case 'nth-last-of-type': if (!psuedo.arguments) { throw new DOMException_js_1.default(`The selector "${this.getSelectorString()}" is not valid.`); } break; } // Check if parent exists if (!parent) { switch (psuedo.name) { case 'first-child': case 'last-child': case 'only-child': case 'first-of-type': case 'last-of-type': case 'only-of-type': case 'nth-child': case 'nth-of-type': case 'nth-last-child': case 'nth-last-of-type': return false; } } switch (psuedo.name) { case 'first-child': return parentChildren[0] === element; case 'last-child': return parentChildren.length && parentChildren[parentChildren.length - 1] === element; case 'only-child': return parentChildren.length === 1 && parentChildren[0] === element; case 'first-of-type': for (const child of parentChildren) { if (child[PropertySymbol.tagName] === element[PropertySymbol.tagName]) { return child === element; } } return false; case 'last-of-type': for (let i = parentChildren.length - 1; i >= 0; i--) { const child = parentChildren[i]; if (child[PropertySymbol.tagName] === element[PropertySymbol.tagName]) { return child === element; } } return false; case 'only-of-type': let isFound = false; for (const child of parentChildren) { if (child[PropertySymbol.tagName] === element[PropertySymbol.tagName]) { if (isFound || child !== element) { return false; } isFound = true; } } return isFound; case 'checked': return (element[PropertySymbol.tagName] === 'INPUT' && element.checked); case 'empty': return !element[PropertySymbol.children].length; case 'root': return element[PropertySymbol.tagName] === 'HTML'; case 'not': return !psuedo.selectorItem.match(element); case 'nth-child': const nthChildIndex = psuedo.selectorItem ? parentChildren.filter((child) => psuedo.selectorItem.match(child)).indexOf(element) : parentChildren.indexOf(element); return nthChildIndex !== -1 && psuedo.nthFunction(nthChildIndex + 1); case 'nth-of-type': if (!element[PropertySymbol.parentNode]) { return false; } const nthOfTypeIndex = parentChildren .filter((child) => child[PropertySymbol.tagName] === element[PropertySymbol.tagName]) .indexOf(element); return nthOfTypeIndex !== -1 && psuedo.nthFunction(nthOfTypeIndex + 1); case 'nth-last-child': const nthLastChildIndex = psuedo.selectorItem ? parentChildren .filter((child) => psuedo.selectorItem.match(child)) .reverse() .indexOf(element) : parentChildren.reverse().indexOf(element); return nthLastChildIndex !== -1 && psuedo.nthFunction(nthLastChildIndex + 1); case 'nth-last-of-type': const nthLastOfTypeIndex = parentChildren .filter((child) => child[PropertySymbol.tagName] === element[PropertySymbol.tagName]) .reverse() .indexOf(element); return nthLastOfTypeIndex !== -1 && psuedo.nthFunction(nthLastOfTypeIndex + 1); } } return true; } /** * Matches attribute. * * @param element Element. * @returns Result. */ matchAttributes(element) { if (!this.attributes) { return null; } let priorityWeight = 0; for (const attribute of this.attributes) { const elementAttribute = element[PropertySymbol.attributes].getNamedItem(attribute.name); if (!elementAttribute) { return null; } priorityWeight += 10; if (attribute.value !== null && (elementAttribute[PropertySymbol.value] === null || (attribute.regExp && !attribute.regExp.test(elementAttribute[PropertySymbol.value])) || (!attribute.regExp && attribute.value !== elementAttribute[PropertySymbol.value]))) { return null; } } return { priorityWeight }; } /** * Matches class. * * @param element Element. * @returns Result. */ matchClass(element) { if (!this.classNames) { return null; } const classList = element.className.split(' '); let priorityWeight = 0; for (const className of this.classNames) { if (!classList.includes(className)) { return null; } priorityWeight += 10; } return { priorityWeight }; } /** * Returns the selector string. * * @returns Selector string. */ getSelectorString() { return `${this.tagName || ''}${this.id ? `#${this.id}` : ''}${this.classNames ? `.${this.classNames.join('.')}` : ''}${this.attributes ? this.attributes .map((attribute) => `[${attribute.name}${attribute.value ? `${attribute.operator || ''}="${attribute.value}"` : ''}]`) .join('') : ''}${this.pseudos ? this.pseudos .map((pseudo) => `:${pseudo.name}${pseudo.arguments ? `(${pseudo.arguments})` : ''}`) .join('') : ''}`; } } exports.default = SelectorItem; //# sourceMappingURL=SelectorItem.cjs.map