2021-02-09 04:38:04 +01:00
|
|
|
/* Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
|
2021-03-09 14:02:41 +01:00
|
|
|
import type { EditingArea } from "./editingArea";
|
2021-03-08 20:40:23 +01:00
|
|
|
|
2021-01-30 17:54:07 +01:00
|
|
|
export function nodeIsElement(node: Node): node is Element {
|
|
|
|
return node.nodeType === Node.ELEMENT_NODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const INLINE_TAGS = [
|
|
|
|
"A",
|
|
|
|
"ABBR",
|
|
|
|
"ACRONYM",
|
|
|
|
"AUDIO",
|
|
|
|
"B",
|
|
|
|
"BDI",
|
|
|
|
"BDO",
|
|
|
|
"BIG",
|
|
|
|
"BR",
|
|
|
|
"BUTTON",
|
|
|
|
"CANVAS",
|
|
|
|
"CITE",
|
|
|
|
"CODE",
|
|
|
|
"DATA",
|
|
|
|
"DATALIST",
|
|
|
|
"DEL",
|
|
|
|
"DFN",
|
|
|
|
"EM",
|
|
|
|
"EMBED",
|
|
|
|
"I",
|
|
|
|
"IFRAME",
|
|
|
|
"IMG",
|
|
|
|
"INPUT",
|
|
|
|
"INS",
|
|
|
|
"KBD",
|
|
|
|
"LABEL",
|
|
|
|
"MAP",
|
|
|
|
"MARK",
|
|
|
|
"METER",
|
|
|
|
"NOSCRIPT",
|
|
|
|
"OBJECT",
|
|
|
|
"OUTPUT",
|
|
|
|
"PICTURE",
|
|
|
|
"PROGRESS",
|
|
|
|
"Q",
|
|
|
|
"RUBY",
|
|
|
|
"S",
|
|
|
|
"SAMP",
|
|
|
|
"SCRIPT",
|
|
|
|
"SELECT",
|
|
|
|
"SLOT",
|
|
|
|
"SMALL",
|
|
|
|
"SPAN",
|
|
|
|
"STRONG",
|
|
|
|
"SUB",
|
|
|
|
"SUP",
|
|
|
|
"SVG",
|
|
|
|
"TEMPLATE",
|
|
|
|
"TEXTAREA",
|
|
|
|
"TIME",
|
|
|
|
"U",
|
|
|
|
"TT",
|
|
|
|
"VAR",
|
|
|
|
"VIDEO",
|
|
|
|
"WBR",
|
|
|
|
];
|
|
|
|
|
|
|
|
export function nodeIsInline(node: Node): boolean {
|
|
|
|
return !nodeIsElement(node) || INLINE_TAGS.includes(node.tagName);
|
|
|
|
}
|
2021-03-08 20:40:23 +01:00
|
|
|
|
|
|
|
export function caretToEnd(currentField: EditingArea): void {
|
|
|
|
const range = document.createRange();
|
|
|
|
range.selectNodeContents(currentField.editable);
|
|
|
|
range.collapse(false);
|
|
|
|
const selection = currentField.getSelection();
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(range);
|
|
|
|
}
|