We leave css:light, text:light, id:light, and similar to opt-out from the shadow dom piercing. The notable exception is xpath that is always light.
75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { SelectorEngine, SelectorRoot } from './selectorEngine';
|
|
|
|
export function createAttributeEngine(attribute: string, shadow: boolean): SelectorEngine {
|
|
const engine: SelectorEngine = {
|
|
create(root: SelectorRoot, target: Element): string | undefined {
|
|
const value = target.getAttribute(attribute);
|
|
if (!value)
|
|
return;
|
|
if (engine.query(root, value) === target)
|
|
return value;
|
|
},
|
|
|
|
query(root: SelectorRoot, selector: string): Element | undefined {
|
|
if (!shadow)
|
|
return root.querySelector(`[${attribute}=${JSON.stringify(selector)}]`) || undefined;
|
|
return queryShadowInternal(root, attribute, selector);
|
|
},
|
|
|
|
queryAll(root: SelectorRoot, selector: string): Element[] {
|
|
if (!shadow)
|
|
return Array.from(root.querySelectorAll(`[${attribute}=${JSON.stringify(selector)}]`));
|
|
const result: Element[] = [];
|
|
queryShadowAllInternal(root, attribute, selector, result);
|
|
return result;
|
|
}
|
|
};
|
|
return engine;
|
|
}
|
|
|
|
function queryShadowInternal(root: SelectorRoot, attribute: string, value: string): Element | undefined {
|
|
const single = root.querySelector(`[${attribute}=${JSON.stringify(value)}]`);
|
|
if (single)
|
|
return single;
|
|
const all = root.querySelectorAll('*');
|
|
for (let i = 0; i < all.length; i++) {
|
|
const shadowRoot = all[i].shadowRoot;
|
|
if (shadowRoot) {
|
|
const single = queryShadowInternal(shadowRoot, attribute, value);
|
|
if (single)
|
|
return single;
|
|
}
|
|
}
|
|
}
|
|
|
|
function queryShadowAllInternal(root: SelectorRoot, attribute: string, value: string, result: Element[]) {
|
|
const document = root instanceof Document ? root : root.ownerDocument!;
|
|
const walker = document.createTreeWalker(root, NodeFilter.SHOW_ELEMENT);
|
|
const shadowRoots = [];
|
|
while (walker.nextNode()) {
|
|
const element = walker.currentNode as Element;
|
|
if (element.getAttribute(attribute) === value)
|
|
result.push(element);
|
|
if (element.shadowRoot)
|
|
shadowRoots.push(element.shadowRoot);
|
|
}
|
|
for (const shadowRoot of shadowRoots)
|
|
queryShadowAllInternal(shadowRoot, attribute, value, result);
|
|
}
|