2016-04-22 05:03:06 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2016-2021 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
|
|
|
|
2016-07-23 20:12:24 +00:00
|
|
|
class TextSourceRange {
|
2020-01-25 16:18:18 +00:00
|
|
|
constructor(range, content, imposterContainer, imposterSourceElement) {
|
2020-10-21 00:54:26 +00:00
|
|
|
this._range = range;
|
|
|
|
this._rangeStartOffset = range.startOffset;
|
|
|
|
this._content = content;
|
|
|
|
this._imposterContainer = imposterContainer;
|
|
|
|
this._imposterSourceElement = imposterSourceElement;
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 00:54:26 +00:00
|
|
|
get range() {
|
|
|
|
return this._range;
|
2020-08-02 22:59:35 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 00:54:26 +00:00
|
|
|
get rangeStartOffset() {
|
|
|
|
return this._rangeStartOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
get imposterSourceElement() {
|
|
|
|
return this._imposterSourceElement;
|
2020-08-02 22:59:35 +00:00
|
|
|
}
|
|
|
|
|
2021-01-17 02:50:50 +00:00
|
|
|
get isConnected() {
|
|
|
|
return (
|
|
|
|
this._range.startContainer.isConnected &&
|
|
|
|
this._range.endContainer.isConnected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-26 03:07:54 +00:00
|
|
|
clone() {
|
2020-10-21 00:54:26 +00:00
|
|
|
return new TextSourceRange(this._range.cloneRange(), this._content, this._imposterContainer, this._imposterSourceElement);
|
2019-08-31 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup() {
|
2020-10-21 00:54:26 +00:00
|
|
|
if (this._imposterContainer !== null && this._imposterContainer.parentNode !== null) {
|
|
|
|
this._imposterContainer.parentNode.removeChild(this._imposterContainer);
|
2019-08-31 18:57:24 +00:00
|
|
|
}
|
2016-07-26 03:07:54 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-06-21 20:07:51 +00:00
|
|
|
setEndOffset(length, layoutAwareScan, fromEnd=false) {
|
2020-05-06 23:34:32 +00:00
|
|
|
const state = (
|
|
|
|
fromEnd ?
|
2020-10-21 00:54:26 +00:00
|
|
|
new DOMTextScanner(this._range.endContainer, this._range.endOffset, !layoutAwareScan, layoutAwareScan).seek(length) :
|
|
|
|
new DOMTextScanner(this._range.startContainer, this._range.startOffset, !layoutAwareScan, layoutAwareScan).seek(length)
|
2020-05-06 23:34:32 +00:00
|
|
|
);
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-01-17 02:50:50 +00:00
|
|
|
collapse(toStart) {
|
|
|
|
this._range.collapse(toStart);
|
|
|
|
this._content = '';
|
|
|
|
}
|
|
|
|
|
2016-04-24 18:04:24 +00:00
|
|
|
getRect() {
|
2020-10-21 00:54:26 +00:00
|
|
|
return this._range.getBoundingClientRect();
|
2016-04-24 18:04:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 15:51:31 +00:00
|
|
|
getWritingMode() {
|
2020-10-21 00:54:26 +00:00
|
|
|
return TextSourceRange.getElementWritingMode(TextSourceRange.getParentElement(this._range.startContainer));
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
|
|
|
|
2016-04-24 18:04:24 +00:00
|
|
|
select() {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
deselect() {
|
|
|
|
const selection = window.getSelection();
|
2016-04-24 04:09:33 +00:00
|
|
|
selection.removeAllRanges();
|
2016-04-23 17:10:34 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-10-21 00:54:26 +00:00
|
|
|
getNodesInRange() {
|
|
|
|
return DocumentUtil.getNodesInRange(this._range);
|
|
|
|
}
|
|
|
|
|
2019-08-31 15:51:31 +00:00
|
|
|
static getParentElement(node) {
|
|
|
|
while (node !== null && node.nodeType !== Node.ELEMENT_NODE) {
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static getElementWritingMode(element) {
|
2019-10-13 20:43:26 +00:00
|
|
|
if (element !== null) {
|
|
|
|
const style = window.getComputedStyle(element);
|
|
|
|
const writingMode = style.writingMode;
|
|
|
|
if (typeof writingMode === 'string') {
|
2019-10-16 20:49:40 +00:00
|
|
|
return TextSourceRange.normalizeWritingMode(writingMode);
|
2019-10-13 20:43:26 +00:00
|
|
|
}
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
2019-10-13 20:43:26 +00:00
|
|
|
return 'horizontal-tb';
|
|
|
|
}
|
2019-08-31 15:51:31 +00:00
|
|
|
|
2019-10-13 20:43:26 +00:00
|
|
|
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;
|
|
|
|
}
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|