2016-04-22 05:03:06 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2016-2022 Yomichan Authors
|
2016-04-22 05:03:06 +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
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-04-22 05:03:06 +00:00
|
|
|
*/
|
|
|
|
|
2020-06-21 20:07:51 +00:00
|
|
|
/* global
|
|
|
|
* DOMTextScanner
|
2020-10-21 00:54:26 +00:00
|
|
|
* DocumentUtil
|
2020-06-21 20:07:51 +00:00
|
|
|
*/
|
2016-04-22 05:03:06 +00:00
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* This class represents a text source that comes from text nodes in the document.
|
|
|
|
* Sometimes a temporary "imposter" element is created and used to store the text.
|
|
|
|
* This element is typically hidden from the page and removed after scanning has completed.
|
|
|
|
*/
|
2016-07-23 20:12:24 +00:00
|
|
|
class TextSourceRange {
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance of the class.
|
|
|
|
* @param {Range} range The selection range.
|
|
|
|
* @param {number} rangeStartOffset The `startOffset` of the range. This is somewhat redundant
|
|
|
|
* with the `range` parameter, but it is used when for when imposter elements are removed.
|
|
|
|
* @param {string} content The `toString()` value of the range. This is somewhat redundant
|
|
|
|
* with the `range` parameter, but it is used when for when imposter elements are removed.
|
|
|
|
* @param {?Element} imposterElement The temporary imposter element.
|
|
|
|
* @param {?Element} imposterSourceElement The source element which the imposter is imitating.
|
|
|
|
* Must not be `null` if imposterElement is specified.
|
|
|
|
* @param {?Rect[]} cachedRects A set of cached `DOMRect`s representing the rects of the text source,
|
|
|
|
* which can be used after the imposter element is removed from the page.
|
|
|
|
* Must not be `null` if imposterElement is specified.
|
|
|
|
* @param {?Rect} cachedSourceRect A cached `DOMRect` representing the rect of the `imposterSourceElement`,
|
|
|
|
* which can be used after the imposter element is removed from the page.
|
|
|
|
* Must not be `null` if imposterElement is specified.
|
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
constructor(range, rangeStartOffset, content, imposterElement, imposterSourceElement, cachedRects, cachedSourceRect) {
|
2020-10-21 00:54:26 +00:00
|
|
|
this._range = range;
|
2022-09-25 13:37:33 +00:00
|
|
|
this._rangeStartOffset = rangeStartOffset;
|
2020-10-21 00:54:26 +00:00
|
|
|
this._content = content;
|
2022-09-25 13:37:33 +00:00
|
|
|
this._imposterElement = imposterElement;
|
2020-10-21 00:54:26 +00:00
|
|
|
this._imposterSourceElement = imposterSourceElement;
|
2022-09-25 13:37:33 +00:00
|
|
|
this._cachedRects = cachedRects;
|
|
|
|
this._cachedSourceRect = cachedSourceRect;
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets the type name of this instance.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2021-09-27 23:07:28 +00:00
|
|
|
get type() {
|
|
|
|
return 'range';
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* The internal range object.
|
|
|
|
* @type {Range}
|
|
|
|
*/
|
2020-10-21 00:54:26 +00:00
|
|
|
get range() {
|
|
|
|
return this._range;
|
2020-08-02 22:59:35 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* The starting offset for the range.
|
|
|
|
* @type {Range}
|
|
|
|
*/
|
2020-10-21 00:54:26 +00:00
|
|
|
get rangeStartOffset() {
|
|
|
|
return this._rangeStartOffset;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* The source element that the imposter element is imitating, if present.
|
|
|
|
* @type {?Element}
|
|
|
|
*/
|
2020-10-21 00:54:26 +00:00
|
|
|
get imposterSourceElement() {
|
|
|
|
return this._imposterSourceElement;
|
2020-08-02 22:59:35 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Creates a clone of the instance.
|
|
|
|
* @returns {TextSourceRange} The new clone.
|
|
|
|
*/
|
2016-07-26 03:07:54 +00:00
|
|
|
clone() {
|
2022-09-25 13:37:33 +00:00
|
|
|
return new TextSourceRange(
|
|
|
|
this._range.cloneRange(),
|
|
|
|
this._rangeStartOffset,
|
|
|
|
this._content,
|
|
|
|
this._imposterElement,
|
|
|
|
this._imposterSourceElement,
|
|
|
|
this._cachedRects,
|
|
|
|
this._cachedSourceRect
|
|
|
|
);
|
2019-08-31 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Performs any cleanup that is necessary after the element has been used.
|
|
|
|
*/
|
2019-08-31 18:57:24 +00:00
|
|
|
cleanup() {
|
2022-09-25 13:37:33 +00:00
|
|
|
if (this._imposterElement !== null && this._imposterElement.parentNode !== null) {
|
|
|
|
this._imposterElement.parentNode.removeChild(this._imposterElement);
|
2019-08-31 18:57:24 +00:00
|
|
|
}
|
2016-07-26 03:07:54 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets the selected text of element, which is the `toString()` version of the range.
|
|
|
|
* @returns {string} The text content.
|
|
|
|
*/
|
2016-04-22 05:03:06 +00:00
|
|
|
text() {
|
2020-10-21 00:54:26 +00:00
|
|
|
return this._content;
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Moves the end offset of the text by a set amount of unicode codepoints.
|
|
|
|
* @param {number} length The maximum number of codepoints to move by.
|
|
|
|
* @param {boolean} fromEnd Whether to move the offset from the current end position (if `true`) or the start position (if `false`).
|
|
|
|
* @param {boolean} layoutAwareScan Whether or not HTML layout information should be used to generate
|
|
|
|
* the string content when scanning.
|
2022-09-28 00:17:59 +00:00
|
|
|
* @returns {number} The actual number of codepoints that were read.
|
2022-09-26 23:37:14 +00:00
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
setEndOffset(length, fromEnd, layoutAwareScan) {
|
|
|
|
let node;
|
|
|
|
let offset;
|
|
|
|
if (fromEnd) {
|
|
|
|
node = this._range.endContainer;
|
|
|
|
offset = this._range.endOffset;
|
|
|
|
} else {
|
|
|
|
node = this._range.startContainer;
|
|
|
|
offset = this._range.startOffset;
|
|
|
|
}
|
|
|
|
const state = new DOMTextScanner(node, offset, !layoutAwareScan, layoutAwareScan).seek(length);
|
2020-10-21 00:54:26 +00:00
|
|
|
this._range.setEnd(state.node, state.offset);
|
|
|
|
this._content = (fromEnd ? this._content + state.content : state.content);
|
2017-05-21 01:34:13 +00:00
|
|
|
return length - state.remainder;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Moves the start offset of the text by a set amount of unicode codepoints.
|
|
|
|
* @param {number} length The maximum number of codepoints to move by.
|
|
|
|
* @param {boolean} layoutAwareScan Whether or not HTML layout information should be used to generate
|
|
|
|
* the string content when scanning.
|
2022-09-28 00:17:59 +00:00
|
|
|
* @returns {number} The actual number of codepoints that were read.
|
2022-09-26 23:37:14 +00:00
|
|
|
*/
|
2020-06-21 20:07:51 +00:00
|
|
|
setStartOffset(length, layoutAwareScan) {
|
2020-10-21 00:54:26 +00:00
|
|
|
const state = new DOMTextScanner(this._range.startContainer, this._range.startOffset, !layoutAwareScan, layoutAwareScan).seek(-length);
|
|
|
|
this._range.setStart(state.node, state.offset);
|
|
|
|
this._rangeStartOffset = this._range.startOffset;
|
|
|
|
this._content = state.content + this._content;
|
2017-05-21 01:34:13 +00:00
|
|
|
return length - state.remainder;
|
2016-06-12 21:32:23 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets the rects that represent the position and bounds of the text source.
|
|
|
|
* @returns {DOMRect[]} The rects.
|
|
|
|
*/
|
2022-05-17 01:45:22 +00:00
|
|
|
getRects() {
|
2022-09-25 13:37:33 +00:00
|
|
|
if (this._isImposterDisconnected()) { return this._getCachedRects(); }
|
2022-09-21 01:06:39 +00:00
|
|
|
return DocumentUtil.convertMultipleRectZoomCoordinates(this._range.getClientRects(), this._range.startContainer);
|
2022-05-17 01:45:22 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets writing mode that is used for this element.
|
|
|
|
* See: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode.
|
|
|
|
* @returns {string} The rects.
|
|
|
|
*/
|
2019-08-31 15:51:31 +00:00
|
|
|
getWritingMode() {
|
2022-09-28 00:17:59 +00:00
|
|
|
let node = this._isImposterDisconnected() ? this._imposterSourceElement : this._range.startContainer;
|
|
|
|
if (node !== null && node.nodeType !== Node.ELEMENT_NODE) { node = node.parentElement; }
|
|
|
|
return DocumentUtil.getElementWritingMode(node);
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Selects the text source in the document.
|
|
|
|
*/
|
2016-04-24 18:04:24 +00:00
|
|
|
select() {
|
2022-09-25 13:37:33 +00:00
|
|
|
if (this._imposterElement !== null) { return; }
|
2016-04-23 17:10:34 +00:00
|
|
|
const selection = window.getSelection();
|
2016-04-24 18:31:55 +00:00
|
|
|
selection.removeAllRanges();
|
2020-10-21 00:54:26 +00:00
|
|
|
selection.addRange(this._range);
|
2016-04-23 17:10:34 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Deselects the text source in the document.
|
|
|
|
*/
|
2016-04-23 17:10:34 +00:00
|
|
|
deselect() {
|
2022-09-25 13:37:33 +00:00
|
|
|
if (this._imposterElement !== null) { return; }
|
2016-04-23 17:10:34 +00:00
|
|
|
const selection = window.getSelection();
|
2016-04-24 04:09:33 +00:00
|
|
|
selection.removeAllRanges();
|
2016-04-23 17:10:34 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether another text source has the same starting point.
|
|
|
|
* @param {TextSourceElement|TextSourceRange} other The other source to test.
|
|
|
|
* @returns {boolean} `true` if the starting points are equivalent, `false` otherwise.
|
|
|
|
* @throws {Error} An exception can be thrown if `Range.compareBoundaryPoints` fails,
|
|
|
|
* which shouldn't happen, but the handler is kept in case of unexpected errors.
|
|
|
|
*/
|
2020-10-21 00:54:26 +00:00
|
|
|
hasSameStart(other) {
|
2020-02-16 01:52:21 +00:00
|
|
|
if (!(
|
|
|
|
typeof other === 'object' &&
|
|
|
|
other !== null &&
|
|
|
|
other instanceof TextSourceRange
|
|
|
|
)) {
|
2020-01-25 16:18:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-10-21 00:54:26 +00:00
|
|
|
if (this._imposterSourceElement !== null) {
|
2020-01-25 16:18:18 +00:00
|
|
|
return (
|
2020-10-21 00:54:26 +00:00
|
|
|
this._imposterSourceElement === other.imposterSourceElement &&
|
|
|
|
this._rangeStartOffset === other.rangeStartOffset
|
2020-01-25 16:18:18 +00:00
|
|
|
);
|
|
|
|
} else {
|
2020-05-02 16:59:59 +00:00
|
|
|
try {
|
2020-10-21 00:54:26 +00:00
|
|
|
return this._range.compareBoundaryPoints(Range.START_TO_START, other.range) === 0;
|
2020-05-02 16:59:59 +00:00
|
|
|
} catch (e) {
|
|
|
|
if (e.name === 'WrongDocumentError') {
|
|
|
|
// This can happen with shadow DOMs if the ranges are in different documents.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
2020-01-25 16:18:18 +00:00
|
|
|
}
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets a list of the nodes in this text source's range.
|
|
|
|
* @returns {Node[]} The nodes in the range.
|
|
|
|
*/
|
2020-10-21 00:54:26 +00:00
|
|
|
getNodesInRange() {
|
|
|
|
return DocumentUtil.getNodesInRange(this._range);
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance for a given range.
|
|
|
|
* @param {Range} range The source range.
|
|
|
|
* @returns {TextSourceRange} A new instance of the class corresponding to the range.
|
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
static create(range) {
|
|
|
|
return new TextSourceRange(range, range.startOffset, range.toString(), null, null, null, null);
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance for a given range using an imposter element.
|
|
|
|
* @param {Range} range The source range.
|
|
|
|
* @param {Element} imposterElement The temporary imposter element.
|
|
|
|
* @param {Element} imposterSourceElement The source element which the imposter is imitating.
|
|
|
|
* @returns {TextSourceRange} A new instance of the class corresponding to the range.
|
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
static createFromImposter(range, imposterElement, imposterSourceElement) {
|
|
|
|
const cachedRects = DocumentUtil.convertMultipleRectZoomCoordinates(range.getClientRects(), range.startContainer);
|
|
|
|
const cachedSourceRect = DocumentUtil.convertRectZoomCoordinates(imposterSourceElement.getBoundingClientRect(), imposterSourceElement);
|
|
|
|
return new TextSourceRange(range, range.startOffset, range.toString(), imposterElement, imposterSourceElement, cachedRects, cachedSourceRect);
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Checks whether the imposter element has been removed, if the instance is using one.
|
|
|
|
* @returns {boolean} `true` if the instance has an imposter and it's no longer connected to the document, `false` otherwise.
|
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
_isImposterDisconnected() {
|
|
|
|
return this._imposterElement !== null && !this._imposterElement.isConnected;
|
|
|
|
}
|
|
|
|
|
2022-09-26 23:37:14 +00:00
|
|
|
/**
|
|
|
|
* Gets the cached rects for a disconnected imposter element.
|
|
|
|
* @returns {Rect[]} The rects for the element.
|
|
|
|
*/
|
2022-09-25 13:37:33 +00:00
|
|
|
_getCachedRects() {
|
|
|
|
const sourceRect = DocumentUtil.convertRectZoomCoordinates(this._imposterSourceElement.getBoundingClientRect(), this._imposterSourceElement);
|
|
|
|
return DocumentUtil.offsetDOMRects(
|
|
|
|
this._cachedRects,
|
|
|
|
sourceRect.left - this._cachedSourceRect.left,
|
|
|
|
sourceRect.top - this._cachedSourceRect.top
|
|
|
|
);
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|