Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
105 lines
3.9 KiB
JavaScript
105 lines
3.9 KiB
JavaScript
/**
|
|
* Find all elements matching the query. If not in XML mode, the query will ignore
|
|
* the contents of `<template>` elements.
|
|
*
|
|
* @param query - Function that returns true if the element matches the query.
|
|
* @param elems - Nodes to query. If a node is an element, its children will be queried.
|
|
* @param options - Options for querying the document.
|
|
* @returns All matching elements.
|
|
*/
|
|
export function findAll(query, elems, options) {
|
|
const { adapter, xmlMode = false } = options;
|
|
const result = [];
|
|
/** Stack of the arrays we are looking at. */
|
|
const nodeStack = [elems];
|
|
/** Stack of the indices within the arrays. */
|
|
const indexStack = [0];
|
|
for (;;) {
|
|
// First, check if the current array has any more elements to look at.
|
|
if (indexStack[0] >= nodeStack[0].length) {
|
|
// If we have no more arrays to look at, we are done.
|
|
if (nodeStack.length === 1) {
|
|
return result;
|
|
}
|
|
nodeStack.shift();
|
|
indexStack.shift();
|
|
// Loop back to the start to continue with the next array.
|
|
continue;
|
|
}
|
|
const elem = nodeStack[0][indexStack[0]++];
|
|
if (!adapter.isTag(elem))
|
|
continue;
|
|
if (query(elem))
|
|
result.push(elem);
|
|
if (xmlMode || adapter.getName(elem) !== "template") {
|
|
/*
|
|
* Add the children to the stack. We are depth-first, so this is
|
|
* the next array we look at.
|
|
*/
|
|
const children = adapter.getChildren(elem);
|
|
if (children.length > 0) {
|
|
nodeStack.unshift(children);
|
|
indexStack.unshift(0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Find the first element matching the query. If not in XML mode, the query will ignore
|
|
* the contents of `<template>` elements.
|
|
*
|
|
* @param query - Function that returns true if the element matches the query.
|
|
* @param elems - Nodes to query. If a node is an element, its children will be queried.
|
|
* @param options - Options for querying the document.
|
|
* @returns The first matching element, or null if there was no match.
|
|
*/
|
|
export function findOne(query, elems, options) {
|
|
const { adapter, xmlMode = false } = options;
|
|
/** Stack of the arrays we are looking at. */
|
|
const nodeStack = [elems];
|
|
/** Stack of the indices within the arrays. */
|
|
const indexStack = [0];
|
|
for (;;) {
|
|
// First, check if the current array has any more elements to look at.
|
|
if (indexStack[0] >= nodeStack[0].length) {
|
|
// If we have no more arrays to look at, we are done.
|
|
if (nodeStack.length === 1) {
|
|
return null;
|
|
}
|
|
nodeStack.shift();
|
|
indexStack.shift();
|
|
// Loop back to the start to continue with the next array.
|
|
continue;
|
|
}
|
|
const elem = nodeStack[0][indexStack[0]++];
|
|
if (!adapter.isTag(elem))
|
|
continue;
|
|
if (query(elem))
|
|
return elem;
|
|
if (xmlMode || adapter.getName(elem) !== "template") {
|
|
/*
|
|
* Add the children to the stack. We are depth-first, so this is
|
|
* the next array we look at.
|
|
*/
|
|
const children = adapter.getChildren(elem);
|
|
if (children.length > 0) {
|
|
nodeStack.unshift(children);
|
|
indexStack.unshift(0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
export function getNextSiblings(elem, adapter) {
|
|
const siblings = adapter.getSiblings(elem);
|
|
if (siblings.length <= 1)
|
|
return [];
|
|
const elemIndex = siblings.indexOf(elem);
|
|
if (elemIndex < 0 || elemIndex === siblings.length - 1)
|
|
return [];
|
|
return siblings.slice(elemIndex + 1).filter(adapter.isTag);
|
|
}
|
|
export function getElementParent(node, adapter) {
|
|
const parent = adapter.getParent(node);
|
|
return parent != null && adapter.isTag(parent) ? parent : null;
|
|
}
|
|
//# sourceMappingURL=querying.js.map
|