2020-08-09 17:27:21 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2016-2022 Yomichan Authors
|
2020-08-09 17:27:21 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global
|
|
|
|
* DOMTextScanner
|
|
|
|
* TextSourceElement
|
|
|
|
* TextSourceRange
|
|
|
|
*/
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* This class contains utility functions related to the HTML document.
|
|
|
|
*/
|
2020-08-09 17:27:21 +00:00
|
|
|
class DocumentUtil {
|
2022-09-24 21:17:10 +00:00
|
|
|
/**
|
|
|
|
* Options to configure how element detection is performed.
|
|
|
|
* @typedef {object} GetRangeFromPointOptions
|
|
|
|
* @property {boolean} deepContentScan Whether or deep content scanning should be performed. When deep content scanning is enabled,
|
|
|
|
* some transparent overlay elements will be ignored when looking for the element at the input position.
|
|
|
|
* @property {boolean} normalizeCssZoom Whether or not zoom coordinates should be normalized.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scans the document for text or elements with text information at the given coordinate.
|
|
|
|
* Coordinates are provided in [client space](https://developer.mozilla.org/en-US/docs/Web/CSS/CSSOM_View/Coordinate_systems).
|
|
|
|
* @callback GetRangeFromPointHandler
|
|
|
|
* @param {number} x The x coordinate to search at.
|
|
|
|
* @param {number} y The y coordinate to search at.
|
|
|
|
* @param {GetRangeFromPointOptions} options Options to configure how element detection is performed.
|
|
|
|
* @returns {?TextSourceRange|TextSourceElement} A range for the hovered text or element, or `null` if no applicable content was found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scans the document for text or elements with text information at the given coordinate.
|
|
|
|
* Coordinates are provided in [client space](https://developer.mozilla.org/en-US/docs/Web/CSS/CSSOM_View/Coordinate_systems).
|
|
|
|
* @param {number} x The x coordinate to search at.
|
|
|
|
* @param {number} y The y coordinate to search at.
|
|
|
|
* @param {GetRangeFromPointOptions} options Options to configure how element detection is performed.
|
|
|
|
* @returns {?TextSourceRange|TextSourceElement} A range for the hovered text or element, or `null` if no applicable content was found.
|
|
|
|
*/
|
|
|
|
static getRangeFromPoint(x, y, options) {
|
|
|
|
for (const handler of this._getRangeFromPointHandlers) {
|
|
|
|
const r = handler(x, y, options);
|
|
|
|
if (r !== null) { return r; }
|
|
|
|
}
|
|
|
|
|
|
|
|
const {deepContentScan, normalizeCssZoom} = options;
|
|
|
|
|
2020-08-09 17:27:21 +00:00
|
|
|
const elements = this._getElementsFromPoint(x, y, deepContentScan);
|
|
|
|
let imposter = null;
|
|
|
|
let imposterContainer = null;
|
|
|
|
let imposterSourceElement = null;
|
|
|
|
if (elements.length > 0) {
|
|
|
|
const element = elements[0];
|
|
|
|
switch (element.nodeName.toUpperCase()) {
|
|
|
|
case 'IMG':
|
|
|
|
case 'BUTTON':
|
2021-02-28 18:26:23 +00:00
|
|
|
case 'SELECT':
|
2022-09-25 13:37:33 +00:00
|
|
|
return TextSourceElement.create(element);
|
2020-08-09 17:27:21 +00:00
|
|
|
case 'INPUT':
|
2021-12-14 19:55:24 +00:00
|
|
|
if (element.type === 'text') {
|
|
|
|
imposterSourceElement = element;
|
|
|
|
[imposter, imposterContainer] = this._createImposter(element, false);
|
|
|
|
}
|
2020-08-09 17:27:21 +00:00
|
|
|
break;
|
|
|
|
case 'TEXTAREA':
|
|
|
|
imposterSourceElement = element;
|
|
|
|
[imposter, imposterContainer] = this._createImposter(element, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-21 01:06:39 +00:00
|
|
|
const range = this._caretRangeFromPointExt(x, y, deepContentScan ? elements : [], normalizeCssZoom);
|
2020-08-09 17:27:21 +00:00
|
|
|
if (range !== null) {
|
|
|
|
if (imposter !== null) {
|
|
|
|
this._setImposterStyle(imposterContainer.style, 'z-index', '-2147483646');
|
|
|
|
this._setImposterStyle(imposter.style, 'pointer-events', 'none');
|
2022-09-25 13:37:33 +00:00
|
|
|
return TextSourceRange.createFromImposter(range, imposterContainer, imposterSourceElement);
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
2022-09-25 13:37:33 +00:00
|
|
|
return TextSourceRange.create(range);
|
2020-08-09 17:27:21 +00:00
|
|
|
} else {
|
|
|
|
if (imposterContainer !== null) {
|
|
|
|
imposterContainer.parentNode.removeChild(imposterContainer);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 21:17:10 +00:00
|
|
|
/**
|
|
|
|
* Registers a custom handler for scanning for text or elements at the input position.
|
|
|
|
* @param {GetRangeFromPointHandler} handler The handler callback which will be invoked when calling `getRangeFromPoint`.
|
|
|
|
*/
|
|
|
|
static registerGetRangeFromPointHandler(handler) {
|
|
|
|
this._getRangeFromPointHandlers.push(handler);
|
|
|
|
}
|
|
|
|
|
2021-01-10 19:43:06 +00:00
|
|
|
/**
|
|
|
|
* Extract a sentence from a document.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {TextSourceRange|TextSourceElement} source The text source object, either `TextSourceRange` or `TextSourceElement`.
|
|
|
|
* @param {boolean} layoutAwareScan Whether or not layout-aware scan mode should be used.
|
|
|
|
* @param {number} extent The length of the sentence to extract.
|
|
|
|
* @param {boolean} terminateAtNewlines Whether or not a sentence should be terminated at newline characters.
|
|
|
|
* @param {Map<string, *[]>} terminatorMap A mapping of characters that terminate a sentence.
|
2021-01-10 19:43:06 +00:00
|
|
|
* Format:
|
|
|
|
* ```js
|
|
|
|
* new Map([ [character: string, [includeCharacterAtStart: boolean, includeCharacterAtEnd: boolean]], ... ])
|
|
|
|
* ```
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {Map<string, *[]>} forwardQuoteMap A mapping of quote characters that delimit a sentence.
|
2021-01-10 19:43:06 +00:00
|
|
|
* Format:
|
|
|
|
* ```js
|
|
|
|
* new Map([ [character: string, [otherCharacter: string, includeCharacterAtStart: boolean]], ... ])
|
|
|
|
* ```
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {Map<string, *[]>} backwardQuoteMap A mapping of quote characters that delimit a sentence,
|
2021-01-10 19:43:06 +00:00
|
|
|
* which is the inverse of forwardQuoteMap.
|
|
|
|
* Format:
|
|
|
|
* ```js
|
|
|
|
* new Map([ [character: string, [otherCharacter: string, includeCharacterAtEnd: boolean]], ... ])
|
|
|
|
* ```
|
2022-05-20 14:28:38 +00:00
|
|
|
* @returns {{sentence: string, offset: number}} The sentence and the offset to the original source.
|
2021-01-10 19:43:06 +00:00
|
|
|
*/
|
2022-09-24 20:05:19 +00:00
|
|
|
static extractSentence(source, layoutAwareScan, extent, terminateAtNewlines, terminatorMap, forwardQuoteMap, backwardQuoteMap) {
|
2021-01-10 00:02:51 +00:00
|
|
|
// Scan text
|
|
|
|
source = source.clone();
|
|
|
|
const startLength = source.setStartOffset(extent, layoutAwareScan);
|
2022-09-25 13:37:33 +00:00
|
|
|
const endLength = source.setEndOffset(extent * 2 - startLength, true, layoutAwareScan);
|
2021-01-10 00:02:51 +00:00
|
|
|
const text = source.text();
|
|
|
|
const textLength = text.length;
|
|
|
|
const textEndAnchor = textLength - endLength;
|
|
|
|
let pos1 = startLength;
|
|
|
|
let pos2 = textEndAnchor;
|
|
|
|
|
|
|
|
// Move backward
|
2020-08-09 17:27:21 +00:00
|
|
|
let quoteStack = [];
|
2021-01-10 00:02:51 +00:00
|
|
|
for (; pos1 > 0; --pos1) {
|
|
|
|
const c = text[pos1 - 1];
|
2021-05-16 19:24:38 +00:00
|
|
|
if (c === '\n' && terminateAtNewlines) { break; }
|
2020-08-09 17:27:21 +00:00
|
|
|
|
2021-01-10 04:10:55 +00:00
|
|
|
if (quoteStack.length === 0) {
|
|
|
|
const terminatorInfo = terminatorMap.get(c);
|
|
|
|
if (typeof terminatorInfo !== 'undefined') {
|
|
|
|
if (terminatorInfo[0]) { --pos1; }
|
|
|
|
break;
|
|
|
|
}
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
|
2021-01-10 04:10:55 +00:00
|
|
|
let quoteInfo = forwardQuoteMap.get(c);
|
|
|
|
if (typeof quoteInfo !== 'undefined') {
|
2021-01-10 00:02:51 +00:00
|
|
|
if (quoteStack.length === 0) {
|
2021-01-10 04:10:55 +00:00
|
|
|
if (quoteInfo[1]) { --pos1; }
|
2021-01-10 00:02:51 +00:00
|
|
|
break;
|
|
|
|
} else if (quoteStack[0] === c) {
|
|
|
|
quoteStack.pop();
|
2021-01-10 04:10:55 +00:00
|
|
|
continue;
|
2021-01-10 00:02:51 +00:00
|
|
|
}
|
2021-01-10 04:10:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
quoteInfo = backwardQuoteMap.get(c);
|
|
|
|
if (typeof quoteInfo !== 'undefined') {
|
|
|
|
quoteStack.unshift(quoteInfo[0]);
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-10 00:02:51 +00:00
|
|
|
// Move forward
|
2020-08-09 17:27:21 +00:00
|
|
|
quoteStack = [];
|
2021-01-10 00:02:51 +00:00
|
|
|
for (; pos2 < textLength; ++pos2) {
|
|
|
|
const c = text[pos2];
|
2021-05-16 19:24:38 +00:00
|
|
|
if (c === '\n' && terminateAtNewlines) { break; }
|
2020-08-09 17:27:21 +00:00
|
|
|
|
2021-01-10 04:10:55 +00:00
|
|
|
if (quoteStack.length === 0) {
|
|
|
|
const terminatorInfo = terminatorMap.get(c);
|
|
|
|
if (typeof terminatorInfo !== 'undefined') {
|
|
|
|
if (terminatorInfo[1]) { ++pos2; }
|
|
|
|
break;
|
|
|
|
}
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
|
2021-01-10 04:10:55 +00:00
|
|
|
let quoteInfo = backwardQuoteMap.get(c);
|
|
|
|
if (typeof quoteInfo !== 'undefined') {
|
2021-01-10 00:02:51 +00:00
|
|
|
if (quoteStack.length === 0) {
|
2021-01-10 04:10:55 +00:00
|
|
|
if (quoteInfo[1]) { ++pos2; }
|
2020-08-09 17:27:21 +00:00
|
|
|
break;
|
2021-01-10 00:02:51 +00:00
|
|
|
} else if (quoteStack[0] === c) {
|
|
|
|
quoteStack.pop();
|
2021-01-10 04:10:55 +00:00
|
|
|
continue;
|
2021-01-10 00:02:51 +00:00
|
|
|
}
|
2021-01-10 04:10:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
quoteInfo = forwardQuoteMap.get(c);
|
|
|
|
if (typeof quoteInfo !== 'undefined') {
|
|
|
|
quoteStack.unshift(quoteInfo[0]);
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-10 00:02:51 +00:00
|
|
|
// Trim whitespace
|
|
|
|
for (; pos1 < startLength && this._isWhitespace(text[pos1]); ++pos1) { /* NOP */ }
|
|
|
|
for (; pos2 > textEndAnchor && this._isWhitespace(text[pos2 - 1]); --pos2) { /* NOP */ }
|
2020-08-09 17:27:21 +00:00
|
|
|
|
2021-01-10 00:02:51 +00:00
|
|
|
// Result
|
2020-08-09 17:27:21 +00:00
|
|
|
return {
|
2021-01-10 00:02:51 +00:00
|
|
|
text: text.substring(pos1, pos2),
|
|
|
|
offset: startLength - pos1
|
2020-08-09 17:27:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-09-21 01:06:39 +00:00
|
|
|
/**
|
|
|
|
* Computes the scaling adjustment that is necessary for client space coordinates based on the
|
|
|
|
* CSS zoom level.
|
|
|
|
* @param {Node} node A node in the document.
|
|
|
|
* @returns {number} The scaling factor.
|
|
|
|
*/
|
|
|
|
static computeZoomScale(node) {
|
|
|
|
if (this._cssZoomSupported === null) {
|
|
|
|
this._cssZoomSupported = (typeof document.createElement('div').style.zoom === 'string');
|
|
|
|
}
|
|
|
|
if (!this._cssZoomSupported) { return 1; }
|
|
|
|
// documentElement must be excluded because the computer style of its zoom property is inconsistent.
|
|
|
|
// * If CSS `:root{zoom:X;}` is specified, the computed zoom will always report `X`.
|
|
|
|
// * If CSS `:root{zoom:X;}` is not specified, the computed zoom report the browser's zoom level.
|
|
|
|
// Therefor, if CSS root zoom is specified as a value other than 1, the adjusted {x, y} values
|
|
|
|
// would be incorrect, which is not new behaviour.
|
|
|
|
let scale = 1;
|
|
|
|
const {ELEMENT_NODE, DOCUMENT_FRAGMENT_NODE} = Node;
|
|
|
|
const {documentElement} = document;
|
|
|
|
for (; node !== null && node !== documentElement; node = node.parentNode) {
|
|
|
|
const {nodeType} = node;
|
|
|
|
if (nodeType === DOCUMENT_FRAGMENT_NODE) {
|
|
|
|
const {host} = node;
|
|
|
|
if (typeof host !== 'undefined') {
|
|
|
|
node = host;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
} else if (nodeType !== ELEMENT_NODE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let {zoom} = getComputedStyle(node);
|
|
|
|
if (typeof zoom !== 'string') { continue; }
|
|
|
|
zoom = Number.parseFloat(zoom);
|
|
|
|
if (!Number.isFinite(zoom) || zoom === 0) { continue; }
|
|
|
|
scale *= zoom;
|
|
|
|
}
|
|
|
|
return scale;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Converts a rect based on the CSS zoom scaling for a given node.
|
|
|
|
* @param {DOMRect} rect The rect to convert.
|
|
|
|
* @param {Node} node The node to compute the zoom from.
|
|
|
|
* @returns {DOMRect} The updated rect, or the same rect if no change is needed.
|
|
|
|
*/
|
2022-09-21 01:06:39 +00:00
|
|
|
static convertRectZoomCoordinates(rect, node) {
|
|
|
|
const scale = this.computeZoomScale(node);
|
|
|
|
return (scale === 1 ? rect : new DOMRect(rect.left * scale, rect.top * scale, rect.width * scale, rect.height * scale));
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Converts multiple rects based on the CSS zoom scaling for a given node.
|
|
|
|
* @param {DOMRect[]} rects The rects to convert.
|
|
|
|
* @param {Node} node The node to compute the zoom from.
|
|
|
|
* @returns {DOMRect[]} The updated rects, or the same rects array if no change is needed.
|
|
|
|
*/
|
2022-09-21 01:06:39 +00:00
|
|
|
static convertMultipleRectZoomCoordinates(rects, node) {
|
|
|
|
const scale = this.computeZoomScale(node);
|
|
|
|
if (scale === 1) { return rects; }
|
|
|
|
const results = [];
|
|
|
|
for (const rect of rects) {
|
|
|
|
results.push(new DOMRect(rect.left * scale, rect.top * scale, rect.width * scale, rect.height * scale));
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a given point is contained within a rect.
|
|
|
|
* @param {number} x The horizontal coordinate.
|
|
|
|
* @param {number} y The vertical coordinate.
|
|
|
|
* @param {DOMRect} rect The rect to check.
|
|
|
|
* @returns {boolean} `true` if the point is inside the rect, `false` otherwise.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static isPointInRect(x, y, rect) {
|
|
|
|
return (
|
|
|
|
x >= rect.left && x < rect.right &&
|
|
|
|
y >= rect.top && y < rect.bottom
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a given point is contained within any rect in a list.
|
|
|
|
* @param {number} x The horizontal coordinate.
|
|
|
|
* @param {number} y The vertical coordinate.
|
|
|
|
* @param {DOMRect[]} rects The rect to check.
|
|
|
|
* @returns {boolean} `true` if the point is inside any of the rects, `false` otherwise.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static isPointInAnyRect(x, y, rects) {
|
|
|
|
for (const rect of rects) {
|
|
|
|
if (this.isPointInRect(x, y, rect)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a given point is contained within a selection range.
|
|
|
|
* @param {number} x The horizontal coordinate.
|
|
|
|
* @param {number} y The vertical coordinate.
|
|
|
|
* @param {Selection} selection The selection to check.
|
|
|
|
* @returns {boolean} `true` if the point is inside the selection, `false` otherwise.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static isPointInSelection(x, y, selection) {
|
|
|
|
for (let i = 0; i < selection.rangeCount; ++i) {
|
|
|
|
const range = selection.getRangeAt(i);
|
|
|
|
if (this.isPointInAnyRect(x, y, range.getClientRects())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets an array of the active modifier keys.
|
|
|
|
* @param {KeyboardEvent|MouseEvent|TouchEvent} event The event to check.
|
|
|
|
* @returns {string[]} An array of modifiers.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static getActiveModifiers(event) {
|
2020-11-09 03:19:54 +00:00
|
|
|
const modifiers = [];
|
|
|
|
if (event.altKey) { modifiers.push('alt'); }
|
|
|
|
if (event.ctrlKey) { modifiers.push('ctrl'); }
|
|
|
|
if (event.metaKey) { modifiers.push('meta'); }
|
|
|
|
if (event.shiftKey) { modifiers.push('shift'); }
|
2020-08-10 01:07:11 +00:00
|
|
|
return modifiers;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets an array of the active modifier keys and buttons.
|
|
|
|
* @param {KeyboardEvent|MouseEvent|TouchEvent} event The event to check.
|
|
|
|
* @returns {string[]} An array of modifiers and buttons.
|
|
|
|
*/
|
2020-09-09 20:59:03 +00:00
|
|
|
static getActiveModifiersAndButtons(event) {
|
|
|
|
const modifiers = this.getActiveModifiers(event);
|
|
|
|
this._getActiveButtons(event, modifiers);
|
|
|
|
return modifiers;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets an array of the active buttons.
|
|
|
|
* @param {KeyboardEvent|MouseEvent|TouchEvent} event The event to check.
|
|
|
|
* @returns {string[]} An array of modifiers and buttons.
|
|
|
|
*/
|
2020-09-09 20:59:03 +00:00
|
|
|
static getActiveButtons(event) {
|
2020-11-09 03:19:54 +00:00
|
|
|
const buttons = [];
|
2020-09-09 20:59:03 +00:00
|
|
|
this._getActiveButtons(event, buttons);
|
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Adds a fullscreen change event listener. This function handles all of the browser-specific variants.
|
|
|
|
* @param {Function} onFullscreenChanged The event callback.
|
|
|
|
* @param {?EventListenerCollection} eventListenerCollection An optional `EventListenerCollection` to add the registration to.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static addFullscreenChangeEventListener(onFullscreenChanged, eventListenerCollection=null) {
|
|
|
|
const target = document;
|
|
|
|
const options = false;
|
|
|
|
const fullscreenEventNames = [
|
|
|
|
'fullscreenchange',
|
|
|
|
'MSFullscreenChange',
|
|
|
|
'mozfullscreenchange',
|
|
|
|
'webkitfullscreenchange'
|
|
|
|
];
|
|
|
|
for (const eventName of fullscreenEventNames) {
|
|
|
|
if (eventListenerCollection === null) {
|
|
|
|
target.addEventListener(eventName, onFullscreenChanged, options);
|
|
|
|
} else {
|
|
|
|
eventListenerCollection.addEventListener(target, eventName, onFullscreenChanged, options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Returns the current fullscreen element. This function handles all of the browser-specific variants.
|
|
|
|
* @returns {?Element} The current fullscreen element, or `null` if the window is not fullscreen.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static getFullscreenElement() {
|
|
|
|
return (
|
|
|
|
document.fullscreenElement ||
|
|
|
|
document.msFullscreenElement ||
|
|
|
|
document.mozFullScreenElement ||
|
|
|
|
document.webkitFullscreenElement ||
|
|
|
|
null
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets all of the nodes within a `Range`.
|
|
|
|
* @param {Range} range The range to check.
|
|
|
|
* @returns {Node[]} The list of nodes.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static getNodesInRange(range) {
|
|
|
|
const end = range.endContainer;
|
|
|
|
const nodes = [];
|
|
|
|
for (let node = range.startContainer; node !== null; node = this.getNextNode(node)) {
|
|
|
|
nodes.push(node);
|
|
|
|
if (node === end) { break; }
|
|
|
|
}
|
|
|
|
return nodes;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets the next node after a specified node. This traverses the DOM in its logical order.
|
|
|
|
* @param {Node} node The node to start at.
|
|
|
|
* @returns {?Node} The next node, or `null` if there is no next node.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static getNextNode(node) {
|
|
|
|
let next = node.firstChild;
|
|
|
|
if (next === null) {
|
|
|
|
while (true) {
|
|
|
|
next = node.nextSibling;
|
|
|
|
if (next !== null) { break; }
|
|
|
|
|
|
|
|
next = node.parentNode;
|
|
|
|
if (next === null) { break; }
|
|
|
|
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether any node in a list of nodes matches a selector.
|
|
|
|
* @param {Node[]} nodes The list of ndoes to check.
|
|
|
|
* @param {string} selector The selector to test.
|
|
|
|
* @returns {boolean} `true` if any element node matches the selector, `false` otherwise.
|
|
|
|
*/
|
2020-08-10 01:07:11 +00:00
|
|
|
static anyNodeMatchesSelector(nodes, selector) {
|
|
|
|
const ELEMENT_NODE = Node.ELEMENT_NODE;
|
|
|
|
for (let node of nodes) {
|
|
|
|
for (; node !== null; node = node.parentNode) {
|
|
|
|
if (node.nodeType !== ELEMENT_NODE) { continue; }
|
|
|
|
if (node.matches(selector)) { return true; }
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether every node in a list of nodes matches a selector.
|
|
|
|
* @param {Node[]} nodes The list of ndoes to check.
|
|
|
|
* @param {string} selector The selector to test.
|
|
|
|
* @returns {boolean} `true` if every element node matches the selector, `false` otherwise.
|
|
|
|
*/
|
2020-11-24 01:31:48 +00:00
|
|
|
static everyNodeMatchesSelector(nodes, selector) {
|
|
|
|
const ELEMENT_NODE = Node.ELEMENT_NODE;
|
|
|
|
for (let node of nodes) {
|
|
|
|
while (true) {
|
|
|
|
if (node === null) { return false; }
|
|
|
|
if (node.nodeType === ELEMENT_NODE && node.matches(selector)) { break; }
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether the meta key is supported in the browser on the specified operating system.
|
|
|
|
* @param {string} os The operating system to check.
|
|
|
|
* @param {string} browser The browser to check.
|
|
|
|
* @returns {boolean} `true` if supported, `false` otherwise.
|
|
|
|
*/
|
2020-09-08 14:53:41 +00:00
|
|
|
static isMetaKeySupported(os, browser) {
|
|
|
|
return !(browser === 'firefox' || browser === 'firefox-mobile') || os === 'mac';
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether an element on the page that can accept input is focused.
|
|
|
|
* @returns {boolean} `true` if an input element is focused, `false` otherwise.
|
|
|
|
*/
|
2021-09-26 22:14:00 +00:00
|
|
|
static isInputElementFocused() {
|
|
|
|
const element = document.activeElement;
|
|
|
|
if (element === null) { return false; }
|
|
|
|
const type = element.nodeName.toUpperCase();
|
|
|
|
switch (type) {
|
|
|
|
case 'INPUT':
|
|
|
|
case 'TEXTAREA':
|
|
|
|
case 'SELECT':
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return element.isContentEditable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-25 13:37:33 +00:00
|
|
|
/**
|
|
|
|
* Offsets an array of DOMRects by a given amount.
|
|
|
|
* @param {DOMRect[]} rects The DOMRects to offset.
|
|
|
|
* @param {number} x The horizontal offset amount.
|
|
|
|
* @param {number} y The vertical offset amount.
|
|
|
|
* @returns {DOMRect} The DOMRects with the offset applied.
|
|
|
|
*/
|
|
|
|
static offsetDOMRects(rects, x, y) {
|
|
|
|
const results = [];
|
|
|
|
for (const rect of rects) {
|
|
|
|
results.push(new DOMRect(rect.left + x, rect.top + y, rect.width, rect.height));
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the parent writing mode of an element.
|
|
|
|
* See: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode.
|
|
|
|
* @param {Element} element The HTML element to check.
|
|
|
|
* @returns {string} The writing mode.
|
|
|
|
*/
|
|
|
|
static getElementWritingMode(element) {
|
|
|
|
if (element !== null) {
|
|
|
|
const {writingMode} = getComputedStyle(element);
|
|
|
|
if (typeof writingMode === 'string') {
|
|
|
|
return this.normalizeWritingMode(writingMode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 'horizontal-tb';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalizes a CSS writing mode value by converting non-standard and deprecated values
|
|
|
|
* into their corresponding standard vaules.
|
|
|
|
* @param {string} writingMode The writing mode to normalize.
|
|
|
|
* @returns {string} The normalized writing mode.
|
|
|
|
*/
|
|
|
|
static normalizeWritingMode(writingMode) {
|
|
|
|
switch (writingMode) {
|
|
|
|
case 'lr':
|
|
|
|
case 'lr-tb':
|
|
|
|
case 'rl':
|
|
|
|
return 'horizontal-tb';
|
|
|
|
case 'tb':
|
|
|
|
return 'vertical-lr';
|
|
|
|
case 'tb-rl':
|
|
|
|
return 'vertical-rl';
|
|
|
|
default:
|
|
|
|
return writingMode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-28 00:17:59 +00:00
|
|
|
/**
|
|
|
|
* Converts a value from an element to a number.
|
|
|
|
* @param {string} value A string representation of a number.
|
|
|
|
* @param {object} constraints An object which might contain `min`, `max`, and `step` fields which are used to constrain the value.
|
|
|
|
* @returns {number} The parsed and constrained number.
|
|
|
|
*/
|
|
|
|
static convertElementValueToNumber(value, constraints) {
|
|
|
|
value = parseFloat(value);
|
|
|
|
if (!Number.isFinite(value)) { value = 0; }
|
|
|
|
|
|
|
|
let {min, max, step} = constraints;
|
|
|
|
min = this._convertToNumberOrNull(min);
|
|
|
|
max = this._convertToNumberOrNull(max);
|
|
|
|
step = this._convertToNumberOrNull(step);
|
|
|
|
if (typeof min === 'number') { value = Math.max(value, min); }
|
|
|
|
if (typeof max === 'number') { value = Math.min(value, max); }
|
|
|
|
if (typeof step === 'number' && step !== 0) { value = Math.round(value / step) * step; }
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2021-09-26 22:14:00 +00:00
|
|
|
// Private
|
|
|
|
|
2020-11-09 03:19:54 +00:00
|
|
|
static _getActiveButtons(event, array) {
|
2020-09-13 17:43:38 +00:00
|
|
|
let {buttons} = event;
|
|
|
|
if (typeof buttons === 'number' && buttons > 0) {
|
2020-09-09 20:59:03 +00:00
|
|
|
for (let i = 0; i < 6; ++i) {
|
|
|
|
const buttonFlag = (1 << i);
|
|
|
|
if ((buttons & buttonFlag) !== 0) {
|
2020-11-09 03:19:54 +00:00
|
|
|
array.push(`mouse${i}`);
|
2020-09-13 17:43:38 +00:00
|
|
|
buttons &= ~buttonFlag;
|
|
|
|
if (buttons === 0) { break; }
|
2020-09-09 20:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _setImposterStyle(style, propertyName, value) {
|
2020-08-09 17:27:21 +00:00
|
|
|
style.setProperty(propertyName, value, 'important');
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _createImposter(element, isTextarea) {
|
2020-08-09 17:27:21 +00:00
|
|
|
const body = document.body;
|
|
|
|
if (body === null) { return [null, null]; }
|
|
|
|
|
|
|
|
const elementStyle = window.getComputedStyle(element);
|
|
|
|
const elementRect = element.getBoundingClientRect();
|
|
|
|
const documentRect = document.documentElement.getBoundingClientRect();
|
|
|
|
let left = elementRect.left - documentRect.left;
|
|
|
|
let top = elementRect.top - documentRect.top;
|
|
|
|
|
|
|
|
// Container
|
|
|
|
const container = document.createElement('div');
|
|
|
|
const containerStyle = container.style;
|
|
|
|
this._setImposterStyle(containerStyle, 'all', 'initial');
|
|
|
|
this._setImposterStyle(containerStyle, 'position', 'absolute');
|
|
|
|
this._setImposterStyle(containerStyle, 'left', '0');
|
|
|
|
this._setImposterStyle(containerStyle, 'top', '0');
|
|
|
|
this._setImposterStyle(containerStyle, 'width', `${documentRect.width}px`);
|
|
|
|
this._setImposterStyle(containerStyle, 'height', `${documentRect.height}px`);
|
|
|
|
this._setImposterStyle(containerStyle, 'overflow', 'hidden');
|
|
|
|
this._setImposterStyle(containerStyle, 'opacity', '0');
|
|
|
|
this._setImposterStyle(containerStyle, 'pointer-events', 'none');
|
|
|
|
this._setImposterStyle(containerStyle, 'z-index', '2147483646');
|
|
|
|
|
|
|
|
// Imposter
|
|
|
|
const imposter = document.createElement('div');
|
|
|
|
const imposterStyle = imposter.style;
|
|
|
|
|
|
|
|
let value = element.value;
|
|
|
|
if (value.endsWith('\n')) { value += '\n'; }
|
|
|
|
imposter.textContent = value;
|
|
|
|
|
|
|
|
for (let i = 0, ii = elementStyle.length; i < ii; ++i) {
|
|
|
|
const property = elementStyle[i];
|
|
|
|
this._setImposterStyle(imposterStyle, property, elementStyle.getPropertyValue(property));
|
|
|
|
}
|
|
|
|
this._setImposterStyle(imposterStyle, 'position', 'absolute');
|
|
|
|
this._setImposterStyle(imposterStyle, 'top', `${top}px`);
|
|
|
|
this._setImposterStyle(imposterStyle, 'left', `${left}px`);
|
|
|
|
this._setImposterStyle(imposterStyle, 'margin', '0');
|
|
|
|
this._setImposterStyle(imposterStyle, 'pointer-events', 'auto');
|
|
|
|
|
|
|
|
if (isTextarea) {
|
|
|
|
if (elementStyle.overflow === 'visible') {
|
|
|
|
this._setImposterStyle(imposterStyle, 'overflow', 'auto');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._setImposterStyle(imposterStyle, 'overflow', 'hidden');
|
|
|
|
this._setImposterStyle(imposterStyle, 'white-space', 'nowrap');
|
|
|
|
this._setImposterStyle(imposterStyle, 'line-height', elementStyle.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
container.appendChild(imposter);
|
|
|
|
body.appendChild(container);
|
|
|
|
|
|
|
|
// Adjust size
|
|
|
|
const imposterRect = imposter.getBoundingClientRect();
|
|
|
|
if (imposterRect.width !== elementRect.width || imposterRect.height !== elementRect.height) {
|
|
|
|
const width = parseFloat(elementStyle.width) + (elementRect.width - imposterRect.width);
|
|
|
|
const height = parseFloat(elementStyle.height) + (elementRect.height - imposterRect.height);
|
|
|
|
this._setImposterStyle(imposterStyle, 'width', `${width}px`);
|
|
|
|
this._setImposterStyle(imposterStyle, 'height', `${height}px`);
|
|
|
|
}
|
2021-10-01 01:05:34 +00:00
|
|
|
if (imposterRect.left !== elementRect.left || imposterRect.top !== elementRect.top) {
|
2020-08-09 17:27:21 +00:00
|
|
|
left += (elementRect.left - imposterRect.left);
|
|
|
|
top += (elementRect.top - imposterRect.top);
|
|
|
|
this._setImposterStyle(imposterStyle, 'left', `${left}px`);
|
|
|
|
this._setImposterStyle(imposterStyle, 'top', `${top}px`);
|
|
|
|
}
|
|
|
|
|
|
|
|
imposter.scrollTop = element.scrollTop;
|
|
|
|
imposter.scrollLeft = element.scrollLeft;
|
|
|
|
|
|
|
|
return [imposter, container];
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _getElementsFromPoint(x, y, all) {
|
2020-08-09 17:27:21 +00:00
|
|
|
if (all) {
|
|
|
|
// document.elementsFromPoint can return duplicates which must be removed.
|
|
|
|
const elements = document.elementsFromPoint(x, y);
|
|
|
|
return elements.filter((e, i) => elements.indexOf(e) === i);
|
|
|
|
}
|
|
|
|
|
|
|
|
const e = document.elementFromPoint(x, y);
|
|
|
|
return e !== null ? [e] : [];
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _isPointInRange(x, y, range, normalizeCssZoom) {
|
2020-08-09 17:27:21 +00:00
|
|
|
// Require a text node to start
|
2022-08-20 15:20:23 +00:00
|
|
|
const {startContainer} = range;
|
|
|
|
if (startContainer.nodeType !== Node.TEXT_NODE) {
|
2020-08-09 17:27:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-20 15:20:23 +00:00
|
|
|
// Convert CSS zoom coordinates
|
2022-09-21 01:06:39 +00:00
|
|
|
if (normalizeCssZoom) {
|
2022-09-24 20:05:19 +00:00
|
|
|
const scale = this.computeZoomScale(startContainer);
|
2022-09-21 01:06:39 +00:00
|
|
|
x /= scale;
|
|
|
|
y /= scale;
|
2022-08-20 15:20:23 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 17:27:21 +00:00
|
|
|
// Scan forward
|
|
|
|
const nodePre = range.endContainer;
|
|
|
|
const offsetPre = range.endOffset;
|
|
|
|
try {
|
2022-08-20 15:20:23 +00:00
|
|
|
const {node, offset, content} = new DOMTextScanner(nodePre, offsetPre, true, false).seek(1);
|
2020-08-09 17:27:21 +00:00
|
|
|
range.setEnd(node, offset);
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
if (!this._isWhitespace(content) && this.isPointInAnyRect(x, y, range.getClientRects())) {
|
2020-08-09 17:27:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
range.setEnd(nodePre, offsetPre);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan backward
|
2022-08-20 15:20:23 +00:00
|
|
|
const {node, offset, content} = new DOMTextScanner(startContainer, range.startOffset, true, false).seek(-1);
|
2020-08-09 17:27:21 +00:00
|
|
|
range.setStart(node, offset);
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
if (!this._isWhitespace(content) && this.isPointInAnyRect(x, y, range.getClientRects())) {
|
2020-08-09 17:27:21 +00:00
|
|
|
// This purposefully leaves the starting offset as modified and sets the range length to 0.
|
|
|
|
range.setEnd(node, offset);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// No match
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _isWhitespace(string) {
|
2020-08-09 17:27:21 +00:00
|
|
|
return string.trim().length === 0;
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _caretRangeFromPoint(x, y) {
|
2020-08-09 17:27:21 +00:00
|
|
|
if (typeof document.caretRangeFromPoint === 'function') {
|
|
|
|
// Chrome, Edge
|
|
|
|
return document.caretRangeFromPoint(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof document.caretPositionFromPoint === 'function') {
|
|
|
|
// Firefox
|
|
|
|
return this._caretPositionFromPoint(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No support
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _caretPositionFromPoint(x, y) {
|
2020-08-09 17:27:21 +00:00
|
|
|
const position = document.caretPositionFromPoint(x, y);
|
|
|
|
if (position === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const node = position.offsetNode;
|
|
|
|
if (node === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-02-23 22:43:52 +00:00
|
|
|
let offset = 0;
|
|
|
|
const {nodeType} = node;
|
|
|
|
switch (nodeType) {
|
|
|
|
case Node.TEXT_NODE:
|
|
|
|
offset = position.offset;
|
|
|
|
break;
|
|
|
|
case Node.ELEMENT_NODE:
|
|
|
|
// Elements with user-select: all will return the element
|
|
|
|
// instead of a text point inside the element.
|
|
|
|
if (this._isElementUserSelectAll(node)) {
|
|
|
|
return this._caretPositionFromPointNormalizeStyles(x, y, node);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-08-09 17:27:21 +00:00
|
|
|
try {
|
2021-02-23 22:43:52 +00:00
|
|
|
const range = document.createRange();
|
2020-08-09 17:27:21 +00:00
|
|
|
range.setStart(node, offset);
|
|
|
|
range.setEnd(node, offset);
|
2021-02-23 22:43:52 +00:00
|
|
|
return range;
|
2020-08-09 17:27:21 +00:00
|
|
|
} catch (e) {
|
|
|
|
// Firefox throws new DOMException("The operation is insecure.")
|
|
|
|
// when trying to select a node from within a ShadowRoot.
|
|
|
|
return null;
|
|
|
|
}
|
2021-02-23 22:43:52 +00:00
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _caretPositionFromPointNormalizeStyles(x, y, nextElement) {
|
2021-02-23 22:43:52 +00:00
|
|
|
const previousStyles = new Map();
|
|
|
|
try {
|
|
|
|
while (true) {
|
|
|
|
this._recordPreviousStyle(previousStyles, nextElement);
|
|
|
|
nextElement.style.setProperty('user-select', 'text', 'important');
|
|
|
|
|
|
|
|
const position = document.caretPositionFromPoint(x, y);
|
|
|
|
if (position === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const node = position.offsetNode;
|
|
|
|
if (node === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let offset = 0;
|
|
|
|
const {nodeType} = node;
|
|
|
|
switch (nodeType) {
|
|
|
|
case Node.TEXT_NODE:
|
|
|
|
offset = position.offset;
|
|
|
|
break;
|
|
|
|
case Node.ELEMENT_NODE:
|
|
|
|
// Elements with user-select: all will return the element
|
|
|
|
// instead of a text point inside the element.
|
|
|
|
if (this._isElementUserSelectAll(node)) {
|
|
|
|
if (previousStyles.has(node)) {
|
|
|
|
// Recursive
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
nextElement = node;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const range = document.createRange();
|
|
|
|
range.setStart(node, offset);
|
|
|
|
range.setEnd(node, offset);
|
|
|
|
return range;
|
|
|
|
} catch (e) {
|
|
|
|
// Firefox throws new DOMException("The operation is insecure.")
|
|
|
|
// when trying to select a node from within a ShadowRoot.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
this._revertStyles(previousStyles);
|
|
|
|
}
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _caretRangeFromPointExt(x, y, elements, normalizeCssZoom) {
|
2021-02-23 22:43:52 +00:00
|
|
|
let previousStyles = null;
|
2020-08-09 17:27:21 +00:00
|
|
|
try {
|
|
|
|
let i = 0;
|
|
|
|
let startContinerPre = null;
|
|
|
|
while (true) {
|
|
|
|
const range = this._caretRangeFromPoint(x, y);
|
|
|
|
if (range === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const startContainer = range.startContainer;
|
|
|
|
if (startContinerPre !== startContainer) {
|
2022-09-21 01:06:39 +00:00
|
|
|
if (this._isPointInRange(x, y, range, normalizeCssZoom)) {
|
2020-08-09 17:27:21 +00:00
|
|
|
return range;
|
|
|
|
}
|
|
|
|
startContinerPre = startContainer;
|
|
|
|
}
|
|
|
|
|
2021-03-11 01:26:53 +00:00
|
|
|
if (previousStyles === null) { previousStyles = new Map(); }
|
2021-02-23 22:43:52 +00:00
|
|
|
i = this._disableTransparentElement(elements, i, previousStyles);
|
2020-08-09 17:27:21 +00:00
|
|
|
if (i < 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} finally {
|
2021-02-23 22:43:52 +00:00
|
|
|
if (previousStyles !== null && previousStyles.size > 0) {
|
|
|
|
this._revertStyles(previousStyles);
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _disableTransparentElement(elements, i, previousStyles) {
|
2020-08-09 17:27:21 +00:00
|
|
|
while (true) {
|
|
|
|
if (i >= elements.length) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const element = elements[i++];
|
|
|
|
if (this._isElementTransparent(element)) {
|
2021-02-23 22:43:52 +00:00
|
|
|
this._recordPreviousStyle(previousStyles, element);
|
2020-08-09 17:27:21 +00:00
|
|
|
element.style.setProperty('pointer-events', 'none', 'important');
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _recordPreviousStyle(previousStyles, element) {
|
2021-02-23 22:43:52 +00:00
|
|
|
if (previousStyles.has(element)) { return; }
|
|
|
|
const style = element.hasAttribute('style') ? element.getAttribute('style') : null;
|
|
|
|
previousStyles.set(element, style);
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _revertStyles(previousStyles) {
|
2021-02-23 22:43:52 +00:00
|
|
|
for (const [element, style] of previousStyles.entries()) {
|
2020-08-09 17:27:21 +00:00
|
|
|
if (style === null) {
|
|
|
|
element.removeAttribute('style');
|
|
|
|
} else {
|
|
|
|
element.setAttribute('style', style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _isElementTransparent(element) {
|
2020-08-09 17:27:21 +00:00
|
|
|
if (
|
|
|
|
element === document.body ||
|
|
|
|
element === document.documentElement
|
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const style = window.getComputedStyle(element);
|
|
|
|
return (
|
|
|
|
parseFloat(style.opacity) <= 0 ||
|
|
|
|
style.visibility === 'hidden' ||
|
|
|
|
(style.backgroundImage === 'none' && this._isColorTransparent(style.backgroundColor))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _isColorTransparent(cssColor) {
|
2020-08-09 17:27:21 +00:00
|
|
|
return this._transparentColorPattern.test(cssColor);
|
|
|
|
}
|
2021-02-23 22:43:52 +00:00
|
|
|
|
2022-09-24 20:05:19 +00:00
|
|
|
static _isElementUserSelectAll(element) {
|
2021-02-23 22:43:52 +00:00
|
|
|
return getComputedStyle(element).userSelect === 'all';
|
|
|
|
}
|
2022-09-28 00:17:59 +00:00
|
|
|
|
|
|
|
static _convertToNumberOrNull(value) {
|
|
|
|
if (typeof value !== 'number') {
|
|
|
|
if (typeof value !== 'string' || value.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
value = parseFloat(value);
|
|
|
|
}
|
|
|
|
return !Number.isNaN(value) ? value : null;
|
|
|
|
}
|
2020-08-09 17:27:21 +00:00
|
|
|
}
|
2022-09-21 01:06:39 +00:00
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
2022-09-24 20:05:19 +00:00
|
|
|
DocumentUtil._transparentColorPattern = /rgba\s*\([^)]*,\s*0(?:\.0+)?\s*\)/;
|
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
2022-09-21 01:06:39 +00:00
|
|
|
DocumentUtil._cssZoomSupported = null;
|
2022-09-24 21:17:10 +00:00
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
|
|
DocumentUtil._getRangeFromPointHandlers = [];
|