// Copyright: Ankitects Pty Ltd and contributors // License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html /* eslint @typescript-eslint/no-non-null-assertion: "off", */ import { updateActiveButtons } from "./toolbar"; import { EditingArea } from "./editing-area"; import { nodeIsElement } from "./helpers"; import { triggerChangeTimer } from "./change-timer"; import { registerShortcut } from "lib/shortcuts"; export function onInput(event: Event): void { // make sure IME changes get saved triggerChangeTimer(event.currentTarget as EditingArea); updateActiveButtons(event); } export function onKey(evt: KeyboardEvent): void { const currentField = evt.currentTarget as EditingArea; // esc clears focus, allowing dialog to close if (evt.code === "Escape") { return currentField.blur(); } // prefer
instead of
if (evt.code === "Enter") { return currentField.onEnter(evt); } // // fix Ctrl+right/left handling in RTL fields if (currentField.isRightToLeft()) { const selection = currentField.getSelection(); const granularity = evt.ctrlKey ? "word" : "character"; const alter = evt.shiftKey ? "extend" : "move"; switch (evt.code) { case "ArrowRight": selection.modify(alter, "right", granularity); evt.preventDefault(); return; case "ArrowLeft": selection.modify(alter, "left", granularity); evt.preventDefault(); return; } } triggerChangeTimer(currentField); } function updateFocus(evt: FocusEvent) { const newFocusTarget = evt.target; if (newFocusTarget instanceof EditingArea) { newFocusTarget.caretToEnd(); updateActiveButtons(evt); } } registerShortcut( () => document.addEventListener("focusin", updateFocus, { once: true }), "Shift?+Tab" ); export function onKeyUp(evt: KeyboardEvent): void { const currentField = evt.currentTarget as EditingArea; // Avoid div element on remove if (evt.code === "Enter" || evt.code === "Backspace") { const anchor = currentField.getSelection().anchorNode as Node; if ( nodeIsElement(anchor) && anchor.tagName === "DIV" && !(anchor instanceof EditingArea) && anchor.childElementCount === 1 && anchor.children[0].tagName === "BR" ) { anchor.replaceWith(anchor.children[0]); } } }