anki/ts/editor/PlainTextBadge.svelte
Henrik Giesel c9bd39c6a2
Several editor fixes (#1478)
* Declare toolbar api via modifiable property

* Fix addon buttons

* Assign editing areas in a synchronous way

* Restore the Tab shortcut that moves the caret to end

- moveCaretToEnd is called twice now: The moveCaretToEnd calls in
  *TextInput causes the caret to be moved to the end when switching back
  from the window and back.
- To fix this, I will need the code for saving and restoring locations
  from #1377

* Restore selections in the PlainTextInput

* Improve type safety of destroyable

- clearable-array was renamed to destroyable
2021-11-05 11:29:02 +10:00

51 lines
1.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 Badge from "../components/Badge.svelte";
import * as tr from "../lib/ftl";
import { onMount } from "svelte";
import { htmlOn, htmlOff } from "./icons";
import { getEditorField } from "./EditorField.svelte";
import { registerShortcut, getPlatformString } from "../lib/shortcuts";
const editorField = getEditorField();
const keyCombination = "Control+Shift+X";
export let off = false;
$: icon = off ? htmlOff : htmlOn;
function toggle() {
off = !off;
}
function shortcut(element: HTMLElement): void {
registerShortcut(toggle, keyCombination, element);
}
onMount(() => editorField.element.then(shortcut));
</script>
<span class:highlighted={!off} on:click|stopPropagation={toggle}>
<Badge
tooltip="{tr.editingHtmlEditor()} ({getPlatformString(keyCombination)})"
iconSize={80}>{@html icon}</Badge
>
</span>
<style lang="scss">
span {
opacity: 0.4;
&.highlighted {
opacity: 1;
}
&:hover {
opacity: 0.8;
}
}
</style>