anki/ts/editor/UnderlineButton.svelte
Henrik Giesel 97b28398ea
Fix some issues with new surround buttons (#1505)
* Add a store to indicate whether input trigger is active

Button state is then indicated by: caretIsInBold XOR boldTriggerActive

* Fix surrounding where normalization is tripped up by empty text nodes

* Add failing test for unsurrounding

* Fix failing test

* prohibitOverlapse does not need to be active, if aboveEnd is null

* Reinsert Italic and Underline button

* Refactor find-adjacent to use sum types

* Simplify return value of normalizeAdjacent
2021-11-24 10:33:14 +10:00

75 lines
2.2 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import * as tr from "../lib/ftl";
import IconButton from "../components/IconButton.svelte";
import Shortcut from "../components/Shortcut.svelte";
import WithState from "../components/WithState.svelte";
import { MatchResult } from "../domlib/surround";
import { getPlatformString } from "../lib/shortcuts";
import { getSurrounder } from "./surround";
import { underlineIcon } from "./icons";
import { getNoteEditor } from "./OldEditorAdapter.svelte";
import type { RichTextInputAPI } from "./RichTextInput.svelte";
function matchUnderline(element: Element): Exclude<MatchResult, MatchResult.ALONG> {
if (!(element instanceof HTMLElement) && !(element instanceof SVGElement)) {
return MatchResult.NO_MATCH;
}
if (element.tagName === "U") {
return MatchResult.MATCH;
}
return MatchResult.NO_MATCH;
}
const { focusInRichText, activeInput } = getNoteEditor();
$: input = $activeInput;
$: disabled = !$focusInRichText;
$: surrounder = disabled ? null : getSurrounder(input as RichTextInputAPI);
function updateStateFromActiveInput(): Promise<boolean> {
return !input || input.name === "plain-text"
? Promise.resolve(false)
: surrounder!.isSurrounded(matchUnderline);
}
const element = document.createElement("u");
function makeUnderline(): void {
surrounder!.surroundCommand(element, matchUnderline);
}
const keyCombination = "Control+U";
</script>
<WithState
key="underline"
update={updateStateFromActiveInput}
let:state={active}
let:updateState
>
<IconButton
tooltip="{tr.editingUnderlineText()} ({getPlatformString(keyCombination)})"
{active}
{disabled}
on:click={(event) => {
makeUnderline();
updateState(event);
}}
>
{@html underlineIcon}
</IconButton>
<Shortcut
{keyCombination}
on:action={(event) => {
makeUnderline();
updateState(event);
}}
/>
</WithState>