blob: e540d5c1d687a81469e0a8e96392ca002bade9ba [file] [log] [blame]
/**
* @license
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 { ownerDocument } from '../scope';
import { product } from './cartesian';
import { RangeSelector, Selector } from '../../../selector/src/types';
import { DomMatcher, DomScope } from '../types';
export function makeCreateRangeSelectorMatcher(
createMatcher: <T extends Selector>(selector: T) => DomMatcher
): (selector: RangeSelector) => DomMatcher {
return function createRangeSelectorMatcher(selector: RangeSelector) {
const startMatcher = createMatcher(selector.startSelector);
const endMatcher = createMatcher(selector.endSelector);
return async function* matchAll(scope: DomScope) {
const document = ownerDocument(scope);
const startMatches = startMatcher(scope);
const endMatches = endMatcher(scope);
const pairs = product(startMatches, endMatches);
for await (let [start, end] of pairs) {
const result = document.createRange();
result.setStart(start.endContainer, start.endOffset);
result.setEnd(end.startContainer, end.startOffset);
if (!result.collapsed) yield result;
}
};
};
}