2016-04-22 05:03:06 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2016-2020 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
|
|
|
*/
|
|
|
|
|
2019-08-14 19:54:42 +00:00
|
|
|
// \u200c (Zero-width non-joiner) appears on Google Docs from Chrome 76 onwards
|
2019-08-15 12:28:30 +00:00
|
|
|
const IGNORE_TEXT_PATTERN = /\u200c/;
|
2019-08-14 19:54:42 +00:00
|
|
|
|
2016-04-22 05:03:06 +00:00
|
|
|
|
2017-08-16 03:04:15 +00:00
|
|
|
/*
|
|
|
|
* TextSourceRange
|
|
|
|
*/
|
|
|
|
|
2016-07-23 20:12:24 +00:00
|
|
|
class TextSourceRange {
|
2020-01-25 16:18:18 +00:00
|
|
|
constructor(range, content, imposterContainer, imposterSourceElement) {
|
2017-05-23 04:07:25 +00:00
|
|
|
this.range = range;
|
2020-01-25 16:18:18 +00:00
|
|
|
this.rangeStartOffset = range.startOffset;
|
2017-05-23 04:07:25 +00:00
|
|
|
this.content = content;
|
2019-09-01 20:06:22 +00:00
|
|
|
this.imposterContainer = imposterContainer;
|
2020-01-25 16:18:18 +00:00
|
|
|
this.imposterSourceElement = imposterSourceElement;
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2016-07-26 03:07:54 +00:00
|
|
|
clone() {
|
2020-01-25 16:18:18 +00:00
|
|
|
return new TextSourceRange(this.range.cloneRange(), this.content, this.imposterContainer, this.imposterSourceElement);
|
2019-08-31 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup() {
|
2019-09-01 20:06:22 +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() {
|
2019-08-15 12:28:30 +00:00
|
|
|
return this.content;
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:34:32 +00:00
|
|
|
setEndOffset(length, fromEnd=false) {
|
|
|
|
const state = (
|
|
|
|
fromEnd ?
|
|
|
|
TextSourceRange.seekForward(this.range.endContainer, this.range.endOffset, length) :
|
|
|
|
TextSourceRange.seekForward(this.range.startContainer, this.range.startOffset, length)
|
|
|
|
);
|
2017-05-23 04:07:25 +00:00
|
|
|
this.range.setEnd(state.node, state.offset);
|
2020-05-06 23:34:32 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
setStartOffset(length) {
|
2017-05-23 04:07:25 +00:00
|
|
|
const state = TextSourceRange.seekBackward(this.range.startContainer, this.range.startOffset, length);
|
|
|
|
this.range.setStart(state.node, state.offset);
|
2020-01-25 16:18:18 +00:00
|
|
|
this.rangeStartOffset = this.range.startOffset;
|
2020-05-10 01:09:23 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-04-24 18:04:24 +00:00
|
|
|
getRect() {
|
2017-05-23 04:07:25 +00:00
|
|
|
return this.range.getBoundingClientRect();
|
2016-04-24 18:04:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 15:51:31 +00:00
|
|
|
getWritingMode() {
|
|
|
|
return TextSourceRange.getElementWritingMode(TextSourceRange.getParentElement(this.range.startContainer));
|
|
|
|
}
|
|
|
|
|
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();
|
2017-05-23 04:07:25 +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
|
|
|
}
|
|
|
|
|
2016-07-23 20:06:09 +00:00
|
|
|
equals(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;
|
|
|
|
}
|
|
|
|
if (this.imposterSourceElement !== null) {
|
|
|
|
return (
|
|
|
|
this.imposterSourceElement === other.imposterSourceElement &&
|
|
|
|
this.rangeStartOffset === other.rangeStartOffset
|
|
|
|
);
|
|
|
|
} else {
|
2020-05-02 16:59:59 +00:00
|
|
|
try {
|
|
|
|
return this.range.compareBoundaryPoints(Range.START_TO_START, other.range) === 0;
|
|
|
|
} 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
|
|
|
}
|
|
|
|
|
2017-05-21 01:15:51 +00:00
|
|
|
static shouldEnter(node) {
|
2019-09-28 03:14:21 +00:00
|
|
|
switch (node.nodeName.toUpperCase()) {
|
|
|
|
case 'RT':
|
|
|
|
case 'SCRIPT':
|
|
|
|
case 'STYLE':
|
|
|
|
return false;
|
2017-05-22 05:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const style = window.getComputedStyle(node);
|
2019-09-28 03:14:52 +00:00
|
|
|
return !(
|
2017-05-22 05:44:22 +00:00
|
|
|
style.visibility === 'hidden' ||
|
|
|
|
style.display === 'none' ||
|
2020-05-02 17:04:17 +00:00
|
|
|
parseFloat(style.fontSize) === 0
|
|
|
|
);
|
2017-05-21 01:15:51 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
static getRubyElement(node) {
|
|
|
|
node = TextSourceRange.getParentElement(node);
|
2019-11-25 19:21:19 +00:00
|
|
|
if (node !== null && node.nodeName.toUpperCase() === 'RT') {
|
2019-09-28 14:07:52 +00:00
|
|
|
node = node.parentNode;
|
2019-11-25 19:21:19 +00:00
|
|
|
return (node !== null && node.nodeName.toUpperCase() === 'RUBY') ? node : null;
|
2019-09-28 14:07:52 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-05-21 01:15:51 +00:00
|
|
|
static seekForward(node, offset, length) {
|
|
|
|
const state = {node, offset, remainder: length, content: ''};
|
2019-11-09 00:24:33 +00:00
|
|
|
if (length <= 0) {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
const TEXT_NODE = Node.TEXT_NODE;
|
|
|
|
const ELEMENT_NODE = Node.ELEMENT_NODE;
|
|
|
|
let resetOffset = false;
|
|
|
|
|
|
|
|
const ruby = TextSourceRange.getRubyElement(node);
|
|
|
|
if (ruby !== null) {
|
|
|
|
node = ruby;
|
|
|
|
resetOffset = true;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
2016-06-13 03:48:21 +00:00
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
while (node !== null) {
|
|
|
|
let visitChildren = true;
|
|
|
|
const nodeType = node.nodeType;
|
|
|
|
|
|
|
|
if (nodeType === TEXT_NODE) {
|
|
|
|
state.node = node;
|
|
|
|
if (TextSourceRange.seekForwardTextNode(state, resetOffset)) {
|
|
|
|
break;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
2019-09-28 14:07:52 +00:00
|
|
|
resetOffset = true;
|
|
|
|
} else if (nodeType === ELEMENT_NODE) {
|
|
|
|
visitChildren = TextSourceRange.shouldEnter(node);
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
2019-09-28 14:07:52 +00:00
|
|
|
|
|
|
|
node = TextSourceRange.getNextNode(node, visitChildren);
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
|
|
|
|
2016-07-25 04:18:17 +00:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
static seekForwardTextNode(state, resetOffset) {
|
|
|
|
const nodeValue = state.node.nodeValue;
|
|
|
|
const nodeValueLength = nodeValue.length;
|
|
|
|
let content = state.content;
|
|
|
|
let offset = resetOffset ? 0 : state.offset;
|
|
|
|
let remainder = state.remainder;
|
|
|
|
let result = false;
|
|
|
|
|
|
|
|
for (; offset < nodeValueLength; ++offset) {
|
|
|
|
const c = nodeValue[offset];
|
|
|
|
if (!IGNORE_TEXT_PATTERN.test(c)) {
|
|
|
|
content += c;
|
|
|
|
if (--remainder <= 0) {
|
|
|
|
result = true;
|
|
|
|
++offset;
|
2016-07-25 04:18:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
state.offset = offset;
|
|
|
|
state.content = content;
|
|
|
|
state.remainder = remainder;
|
|
|
|
return result;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 01:15:51 +00:00
|
|
|
static seekBackward(node, offset, length) {
|
|
|
|
const state = {node, offset, remainder: length, content: ''};
|
2019-11-09 00:24:33 +00:00
|
|
|
if (length <= 0) {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
const TEXT_NODE = Node.TEXT_NODE;
|
|
|
|
const ELEMENT_NODE = Node.ELEMENT_NODE;
|
|
|
|
let resetOffset = false;
|
|
|
|
|
|
|
|
const ruby = TextSourceRange.getRubyElement(node);
|
|
|
|
if (ruby !== null) {
|
|
|
|
node = ruby;
|
|
|
|
resetOffset = true;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
while (node !== null) {
|
|
|
|
let visitChildren = true;
|
|
|
|
const nodeType = node.nodeType;
|
|
|
|
|
|
|
|
if (nodeType === TEXT_NODE) {
|
|
|
|
state.node = node;
|
|
|
|
if (TextSourceRange.seekBackwardTextNode(state, resetOffset)) {
|
|
|
|
break;
|
2016-07-25 04:18:17 +00:00
|
|
|
}
|
2019-09-28 14:07:52 +00:00
|
|
|
resetOffset = true;
|
|
|
|
} else if (nodeType === ELEMENT_NODE) {
|
|
|
|
visitChildren = TextSourceRange.shouldEnter(node);
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
2019-09-28 14:07:52 +00:00
|
|
|
|
|
|
|
node = TextSourceRange.getPreviousNode(node, visitChildren);
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
|
|
|
|
2016-07-25 04:18:17 +00:00
|
|
|
return state;
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
static seekBackwardTextNode(state, resetOffset) {
|
|
|
|
const nodeValue = state.node.nodeValue;
|
|
|
|
let content = state.content;
|
|
|
|
let offset = resetOffset ? nodeValue.length : state.offset;
|
|
|
|
let remainder = state.remainder;
|
|
|
|
let result = false;
|
|
|
|
|
|
|
|
for (; offset > 0; --offset) {
|
|
|
|
const c = nodeValue[offset - 1];
|
|
|
|
if (!IGNORE_TEXT_PATTERN.test(c)) {
|
|
|
|
content = c + content;
|
|
|
|
if (--remainder <= 0) {
|
|
|
|
result = true;
|
|
|
|
--offset;
|
2016-06-13 03:48:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
state.offset = offset;
|
|
|
|
state.content = content;
|
|
|
|
state.remainder = remainder;
|
|
|
|
return result;
|
2016-06-13 03:48:21 +00:00
|
|
|
}
|
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
|
|
|
}
|
2019-09-01 14:28:50 +00:00
|
|
|
|
|
|
|
static getNodesInRange(range) {
|
|
|
|
const end = range.endContainer;
|
|
|
|
const nodes = [];
|
2019-09-28 14:07:52 +00:00
|
|
|
for (let node = range.startContainer; node !== null; node = TextSourceRange.getNextNode(node, true)) {
|
2019-09-01 14:28:50 +00:00
|
|
|
nodes.push(node);
|
|
|
|
if (node === end) { break; }
|
|
|
|
}
|
|
|
|
return nodes;
|
|
|
|
}
|
|
|
|
|
2019-09-28 14:07:52 +00:00
|
|
|
static getNextNode(node, visitChildren) {
|
|
|
|
let next = visitChildren ? node.firstChild : null;
|
2019-09-01 14:28:50 +00:00
|
|
|
if (next === null) {
|
|
|
|
while (true) {
|
|
|
|
next = node.nextSibling;
|
|
|
|
if (next !== null) { break; }
|
|
|
|
|
|
|
|
next = node.parentNode;
|
2019-09-28 03:37:10 +00:00
|
|
|
if (next === null) { break; }
|
2019-09-01 14:28:50 +00:00
|
|
|
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return next;
|
|
|
|
}
|
2019-09-28 14:07:52 +00:00
|
|
|
|
|
|
|
static getPreviousNode(node, visitChildren) {
|
|
|
|
let next = visitChildren ? node.lastChild : null;
|
|
|
|
if (next === null) {
|
|
|
|
while (true) {
|
|
|
|
next = node.previousSibling;
|
|
|
|
if (next !== null) { break; }
|
|
|
|
|
|
|
|
next = node.parentNode;
|
|
|
|
if (next === null) { break; }
|
|
|
|
|
|
|
|
node = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return next;
|
|
|
|
}
|
2019-09-01 14:28:50 +00:00
|
|
|
|
|
|
|
static anyNodeMatchesSelector(nodeList, selector) {
|
|
|
|
for (const node of nodeList) {
|
|
|
|
if (TextSourceRange.nodeMatchesSelector(node, selector)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nodeMatchesSelector(node, selector) {
|
|
|
|
for (; node !== null; node = node.parentNode) {
|
|
|
|
if (node.nodeType === Node.ELEMENT_NODE) {
|
|
|
|
return node.matches(selector);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-22 05:03:06 +00:00
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
|
|
|
|
|
2017-08-16 03:04:15 +00:00
|
|
|
/*
|
|
|
|
* TextSourceElement
|
|
|
|
*/
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
class TextSourceElement {
|
2020-05-10 18:06:25 +00:00
|
|
|
constructor(element, fullContent=null, startOffset=0, endOffset=0) {
|
|
|
|
this._element = element;
|
|
|
|
this._fullContent = (typeof fullContent === 'string' ? fullContent : TextSourceElement.getElementContent(element));
|
|
|
|
this._startOffset = startOffset;
|
|
|
|
this._endOffset = endOffset;
|
|
|
|
this._content = this._fullContent.substring(this._startOffset, this._endOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
get element() {
|
|
|
|
return this._element;
|
|
|
|
}
|
|
|
|
|
|
|
|
get fullContent() {
|
|
|
|
return this._fullContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
get startOffset() {
|
|
|
|
return this._startOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
get endOffset() {
|
|
|
|
return this._endOffset;
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
clone() {
|
2020-05-10 18:06:25 +00:00
|
|
|
return new TextSourceElement(this._element, this._fullContent, this._startOffset, this._endOffset);
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 18:57:24 +00:00
|
|
|
cleanup() {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
text() {
|
2020-05-10 18:06:25 +00:00
|
|
|
return this._content;
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:06:25 +00:00
|
|
|
setEndOffset(length, fromEnd=false) {
|
|
|
|
if (fromEnd) {
|
|
|
|
const delta = Math.min(this._fullContent.length - this._endOffset, length);
|
|
|
|
this._endOffset += delta;
|
|
|
|
this._content = this._fullContent.substring(this._startOffset, this._endOffset);
|
|
|
|
return delta;
|
|
|
|
} else {
|
|
|
|
const delta = Math.min(this._fullContent.length - this._startOffset, length);
|
|
|
|
this._endOffset = this._startOffset + delta;
|
|
|
|
this._content = this._fullContent.substring(this._startOffset, this._endOffset);
|
|
|
|
return delta;
|
2019-08-15 12:28:30 +00:00
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:06:25 +00:00
|
|
|
setStartOffset(length) {
|
|
|
|
const delta = Math.min(this._startOffset, length);
|
|
|
|
this._startOffset -= delta;
|
|
|
|
this._content = this._fullContent.substring(this._startOffset, this._endOffset);
|
|
|
|
return delta;
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getRect() {
|
2020-05-10 18:06:25 +00:00
|
|
|
return this._element.getBoundingClientRect();
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 15:51:31 +00:00
|
|
|
getWritingMode() {
|
|
|
|
return 'horizontal-tb';
|
|
|
|
}
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
select() {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
|
|
|
|
deselect() {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
|
|
|
|
equals(other) {
|
2020-02-16 01:52:21 +00:00
|
|
|
return (
|
|
|
|
typeof other === 'object' &&
|
|
|
|
other !== null &&
|
|
|
|
other instanceof TextSourceElement &&
|
2020-05-10 18:06:25 +00:00
|
|
|
this._element === other.element &&
|
|
|
|
this._fullContent === other.fullContent &&
|
|
|
|
this._startOffset === other.startOffset &&
|
|
|
|
this._endOffset === other.endOffset
|
2020-02-16 01:52:21 +00:00
|
|
|
);
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|
2020-05-10 18:06:25 +00:00
|
|
|
|
|
|
|
static getElementContent(element) {
|
|
|
|
let content;
|
|
|
|
switch (element.nodeName.toUpperCase()) {
|
|
|
|
case 'BUTTON':
|
|
|
|
content = element.textContent;
|
|
|
|
break;
|
|
|
|
case 'IMG':
|
|
|
|
content = element.getAttribute('alt') || '';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
content = `${element.value}`;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove zero-width non-joiner
|
|
|
|
content = content.replace(/\u200c/g, '');
|
|
|
|
|
|
|
|
return content;
|
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|