Anki/ts/domlib/surround/find-above.ts
Henrik Giesel 30bbbaf00b
Use eslint for sorting our imports (#1637)
* Make eslint sort our imports

* fix missing deps in eslint rule (dae)

Caught on Linux due to the stricter sandboxing

* Remove exports-last eslint rule (for now?)

* Adjust browserslist settings

- We use ResizeObserver which is not supported in browsers like KaiOS,
  Baidu or Android UC

* Raise minimum iOS version 13.4

- It's the first version that supports ResizeObserver

* Apply new eslint rules to sort imports
2022-02-04 18:36:34 +10:00

56 lines
1.4 KiB
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import { nodeIsElement } from "../../lib/dom";
import type { ElementMatcher, FoundMatch } from "./matcher";
export function findClosest(
node: Node,
base: Element,
matcher: ElementMatcher,
): FoundMatch | null {
let current: Node | Element | null = node;
while (current) {
if (nodeIsElement(current)) {
const matchType = matcher(current);
if (matchType) {
return {
element: current,
matchType,
};
}
}
current =
current === base || !current.parentElement ? null : current.parentElement;
}
return current;
}
export function findFarthest(
node: Node,
base: Element,
matcher: ElementMatcher,
): FoundMatch | null {
let found: FoundMatch | null = null;
let current: Node | Element | null = node;
while (current) {
if (nodeIsElement(current)) {
const matchType = matcher(current);
if (matchType) {
found = {
element: current,
matchType,
};
}
}
current =
current === base || !current.parentElement ? null : current.parentElement;
}
return found;
}