summaryrefslogtreecommitdiff
path: root/ext/js/dom
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2022-09-24 17:17:10 -0400
committerGitHub <noreply@github.com>2022-09-24 17:17:10 -0400
commitda52caa15247f82377e5d914306de1713ed63cea (patch)
treea39414edebc7c614c7810733378e6a7c2275803d /ext/js/dom
parent115c3ce3d74188bb33d73f33f7546d05d6acbee8 (diff)
DocumentUtil extensibility (#2234)
* Update DocumentUtil.getRangeFromPoint to be extensible * Add documentation
Diffstat (limited to 'ext/js/dom')
-rw-r--r--ext/js/dom/document-util.js45
1 files changed, 44 insertions, 1 deletions
diff --git a/ext/js/dom/document-util.js b/ext/js/dom/document-util.js
index 53297084..76f551c7 100644
--- a/ext/js/dom/document-util.js
+++ b/ext/js/dom/document-util.js
@@ -22,7 +22,40 @@
*/
class DocumentUtil {
- static getRangeFromPoint(x, y, {deepContentScan, normalizeCssZoom}) {
+ /**
+ * 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;
+
const elements = this._getElementsFromPoint(x, y, deepContentScan);
let imposter = null;
let imposterContainer = null;
@@ -63,6 +96,14 @@ class DocumentUtil {
}
/**
+ * 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);
+ }
+
+ /**
* Extract a sentence from a document.
* @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.
@@ -724,3 +765,5 @@ class DocumentUtil {
DocumentUtil._transparentColorPattern = /rgba\s*\([^)]*,\s*0(?:\.0+)?\s*\)/;
// eslint-disable-next-line no-underscore-dangle
DocumentUtil._cssZoomSupported = null;
+// eslint-disable-next-line no-underscore-dangle
+DocumentUtil._getRangeFromPointHandlers = [];