2019-05-13 18:42:00 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
2019-05-22 17:16:32 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-05-13 18:42:00 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-06-29 15:11:58 +03:00
|
|
|
import { CARET_NODE_CHAR, isCaretNode } from "./render";
|
2019-09-03 16:58:50 +03:00
|
|
|
import DocumentOffset from "./offset";
|
2019-06-20 15:44:18 +03:00
|
|
|
|
2020-07-15 11:45:45 +03:00
|
|
|
type Predicate = (node: Node) => boolean;
|
|
|
|
type Callback = (node: Node) => void;
|
|
|
|
|
|
|
|
export function walkDOMDepthFirst(rootNode: Node, enterNodeCallback: Predicate, leaveNodeCallback: Callback) {
|
2019-05-29 15:27:36 +03:00
|
|
|
let node = rootNode.firstChild;
|
|
|
|
while (node && node !== rootNode) {
|
2019-10-13 14:10:11 +03:00
|
|
|
const shouldDescend = enterNodeCallback(node);
|
|
|
|
if (shouldDescend && node.firstChild) {
|
2019-05-13 18:42:00 +03:00
|
|
|
node = node.firstChild;
|
|
|
|
} else if (node.nextSibling) {
|
|
|
|
node = node.nextSibling;
|
|
|
|
} else {
|
2019-05-29 15:27:36 +03:00
|
|
|
while (!node.nextSibling && node !== rootNode) {
|
2019-05-13 18:42:00 +03:00
|
|
|
node = node.parentElement;
|
2019-05-29 15:27:36 +03:00
|
|
|
if (node !== rootNode) {
|
2019-05-13 18:42:00 +03:00
|
|
|
leaveNodeCallback(node);
|
|
|
|
}
|
|
|
|
}
|
2019-05-29 15:27:36 +03:00
|
|
|
if (node !== rootNode) {
|
2019-05-13 18:42:00 +03:00
|
|
|
node = node.nextSibling;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:45:45 +03:00
|
|
|
export function getCaretOffsetAndText(editor: HTMLDivElement, sel: Selection) {
|
2021-06-29 15:11:58 +03:00
|
|
|
const { offset, text } = getSelectionOffsetAndText(editor, sel.focusNode, sel.focusOffset);
|
|
|
|
return { caret: offset, text };
|
2019-09-03 16:58:50 +03:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:45:45 +03:00
|
|
|
function tryReduceSelectionToTextNode(selectionNode: Node, selectionOffset: number) {
|
2019-09-04 16:58:59 +03:00
|
|
|
// if selectionNode is an element, the selected location comes after the selectionOffset-th child node,
|
|
|
|
// which can point past any childNode, in which case, the end of selectionNode is selected.
|
|
|
|
// we try to simplify this to point at a text node with the offset being
|
|
|
|
// a character offset within the text node
|
|
|
|
// Also see https://developer.mozilla.org/en-US/docs/Web/API/Selection
|
|
|
|
while (selectionNode && selectionNode.nodeType === Node.ELEMENT_NODE) {
|
|
|
|
const childNodeCount = selectionNode.childNodes.length;
|
|
|
|
if (childNodeCount) {
|
|
|
|
if (selectionOffset >= childNodeCount) {
|
|
|
|
selectionNode = selectionNode.lastChild;
|
|
|
|
if (selectionNode.nodeType === Node.TEXT_NODE) {
|
|
|
|
selectionOffset = selectionNode.textContent.length;
|
|
|
|
} else {
|
|
|
|
// this will select the last child node in the next iteration
|
|
|
|
selectionOffset = Number.MAX_SAFE_INTEGER;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
selectionNode = selectionNode.childNodes[selectionOffset];
|
|
|
|
// this will select the first child node in the next iteration
|
|
|
|
selectionOffset = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// here node won't be a text node,
|
|
|
|
// but characterOffset should be 0,
|
|
|
|
// this happens under some circumstances
|
|
|
|
// when the editor is empty.
|
|
|
|
// In this case characterOffset=0 is the right thing to do
|
|
|
|
break;
|
|
|
|
}
|
2019-06-20 15:44:18 +03:00
|
|
|
}
|
2019-09-04 16:58:59 +03:00
|
|
|
return {
|
|
|
|
node: selectionNode,
|
|
|
|
characterOffset: selectionOffset,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-07-15 11:45:45 +03:00
|
|
|
function getSelectionOffsetAndText(editor: HTMLDivElement, selectionNode: Node, selectionOffset: number) {
|
2021-06-29 15:11:58 +03:00
|
|
|
const { node, characterOffset } = tryReduceSelectionToTextNode(selectionNode, selectionOffset);
|
|
|
|
const { text, offsetToNode } = getTextAndOffsetToNode(editor, node);
|
2019-09-04 16:58:59 +03:00
|
|
|
const offset = getCaret(node, offsetToNode, characterOffset);
|
2021-06-29 15:11:58 +03:00
|
|
|
return { offset, text };
|
2019-06-20 15:44:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// gets the caret position details, ignoring and adjusting to
|
|
|
|
// the ZWS if you're typing in a caret node
|
2020-07-15 11:45:45 +03:00
|
|
|
function getCaret(node: Node, offsetToNode: number, offsetWithinNode: number) {
|
2019-10-10 17:39:41 +03:00
|
|
|
// if no node is selected, return an offset at the start
|
|
|
|
if (!node) {
|
|
|
|
return new DocumentOffset(0, false);
|
|
|
|
}
|
2019-09-03 16:58:50 +03:00
|
|
|
let atNodeEnd = offsetWithinNode === node.textContent.length;
|
|
|
|
if (node.nodeType === Node.TEXT_NODE && isCaretNode(node.parentElement)) {
|
|
|
|
const zwsIdx = node.nodeValue.indexOf(CARET_NODE_CHAR);
|
|
|
|
if (zwsIdx !== -1 && zwsIdx < offsetWithinNode) {
|
|
|
|
offsetWithinNode -= 1;
|
2019-06-20 15:44:18 +03:00
|
|
|
}
|
|
|
|
// if typing in a caret node, you're either typing before or after the ZWS.
|
|
|
|
// In both cases, you should be considered at node end because the ZWS is
|
|
|
|
// not included in the text here, and once the model is updated and rerendered,
|
|
|
|
// that caret node will be removed.
|
|
|
|
atNodeEnd = true;
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
2019-09-03 16:58:50 +03:00
|
|
|
return new DocumentOffset(offsetToNode + offsetWithinNode, atNodeEnd);
|
2019-06-20 15:44:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// gets the text of the editor as a string,
|
2019-09-03 16:58:50 +03:00
|
|
|
// and the offset in characters where the selectionNode starts in that string
|
2019-06-20 15:44:18 +03:00
|
|
|
// all ZWS from caret nodes are filtered out
|
2020-07-15 11:45:45 +03:00
|
|
|
function getTextAndOffsetToNode(editor: HTMLDivElement, selectionNode: Node) {
|
2019-09-03 16:58:50 +03:00
|
|
|
let offsetToNode = 0;
|
2019-09-04 16:58:13 +03:00
|
|
|
let foundNode = false;
|
2019-06-20 15:44:18 +03:00
|
|
|
let text = "";
|
2019-05-13 18:42:00 +03:00
|
|
|
|
|
|
|
function enterNodeCallback(node) {
|
2019-09-04 16:58:13 +03:00
|
|
|
if (!foundNode) {
|
2019-09-03 16:58:50 +03:00
|
|
|
if (node === selectionNode) {
|
2019-09-04 16:58:13 +03:00
|
|
|
foundNode = true;
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-29 13:50:23 +03:00
|
|
|
// usually newlines are entered as new DIV elements,
|
|
|
|
// but for example while pasting in some browsers, they are still
|
|
|
|
// converted to BRs, so also take these into account when they
|
|
|
|
// are not the last element in the DIV.
|
|
|
|
if (node.tagName === "BR" && node.nextSibling) {
|
2019-09-04 16:58:13 +03:00
|
|
|
if (!foundNode) {
|
|
|
|
offsetToNode += 1;
|
|
|
|
}
|
2019-08-29 13:50:23 +03:00
|
|
|
text += "\n";
|
|
|
|
}
|
2019-06-20 15:44:18 +03:00
|
|
|
const nodeText = node.nodeType === Node.TEXT_NODE && getTextNodeValue(node);
|
2019-05-13 18:42:00 +03:00
|
|
|
if (nodeText) {
|
2019-09-04 16:58:13 +03:00
|
|
|
if (!foundNode) {
|
2019-09-03 16:58:50 +03:00
|
|
|
offsetToNode += nodeText.length;
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
|
|
|
text += nodeText;
|
|
|
|
}
|
2019-05-29 15:27:36 +03:00
|
|
|
return true;
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function leaveNodeCallback(node) {
|
|
|
|
// if this is not the last DIV (which are only used as line containers atm)
|
|
|
|
// we don't just check if there is a nextSibling because sometimes the caret ends up
|
|
|
|
// after the last DIV and it creates a newline if you type then,
|
|
|
|
// whereas you just want it to be appended to the current line
|
|
|
|
if (node.tagName === "DIV" && node.nextSibling && node.nextSibling.tagName === "DIV") {
|
|
|
|
text += "\n";
|
2019-09-04 16:58:13 +03:00
|
|
|
if (!foundNode) {
|
2019-09-03 16:58:50 +03:00
|
|
|
offsetToNode += 1;
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
walkDOMDepthFirst(editor, enterNodeCallback, leaveNodeCallback);
|
|
|
|
|
2021-06-29 15:11:58 +03:00
|
|
|
return { text, offsetToNode };
|
2019-06-20 15:44:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// get text value of text node, ignoring ZWS if it's a caret node
|
|
|
|
function getTextNodeValue(node) {
|
|
|
|
const nodeText = node.nodeValue;
|
|
|
|
// filter out ZWS for caret nodes
|
|
|
|
if (isCaretNode(node.parentElement)) {
|
|
|
|
// typed in the caret node, so there is now something more in it than the ZWS
|
|
|
|
// so filter out the ZWS, and take the typed text into account
|
|
|
|
if (nodeText.length !== 1) {
|
2019-06-21 17:37:29 +03:00
|
|
|
return nodeText.replace(CARET_NODE_CHAR, "");
|
2019-06-20 15:44:18 +03:00
|
|
|
} else {
|
|
|
|
// only contains ZWS, which is ignored, so return emtpy string
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return nodeText;
|
|
|
|
}
|
2019-05-13 18:42:00 +03:00
|
|
|
}
|
2019-09-04 13:37:27 +03:00
|
|
|
|
|
|
|
export function getRangeForSelection(editor, model, selection) {
|
|
|
|
const focusOffset = getSelectionOffsetAndText(
|
|
|
|
editor,
|
|
|
|
selection.focusNode,
|
|
|
|
selection.focusOffset,
|
|
|
|
).offset;
|
|
|
|
const anchorOffset = getSelectionOffsetAndText(
|
|
|
|
editor,
|
|
|
|
selection.anchorNode,
|
|
|
|
selection.anchorOffset,
|
|
|
|
).offset;
|
|
|
|
const focusPosition = focusOffset.asPosition(model);
|
|
|
|
const anchorPosition = anchorOffset.asPosition(model);
|
|
|
|
return model.startRange(focusPosition, anchorPosition);
|
|
|
|
}
|