anki/ts/editor/mathjax-overlay/MathjaxEditor.svelte
Henrik Giesel b6fb64fde1
Implement cloze buttons in Mathjax editor (#1860)
* Introduce RichTextClozeButtons

* Implement cloze buttons in Mathjax editor
2022-05-13 13:04:20 +10:00

120 lines
3.5 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 type CodeMirrorLib from "codemirror";
import { createEventDispatcher, onMount } from "svelte";
import type { Writable } from "svelte/store";
import * as tr from "../../lib/ftl";
import { noop } from "../../lib/functional";
import { getPlatformString } from "../../lib/shortcuts";
import { baseOptions, focusAndSetCaret, latex } from "../code-mirror";
import type { CodeMirrorAPI } from "../CodeMirror.svelte";
import CodeMirror from "../CodeMirror.svelte";
export let code: Writable<string>;
export let acceptShortcut: string;
export let newlineShortcut: string;
const configuration = {
...Object.assign({}, baseOptions, {
extraKeys: {
...(baseOptions.extraKeys as CodeMirrorLib.KeyMap),
[acceptShortcut]: noop,
[newlineShortcut]: noop,
},
}),
placeholder: tr.editingMathjaxPlaceholder({
accept: getPlatformString(acceptShortcut),
newline: getPlatformString(newlineShortcut),
}),
mode: latex,
};
/* These are not reactive, but only operate on initialization */
export let position: CodeMirrorLib.Position | undefined = undefined;
export let selectAll: boolean;
const dispatch = createEventDispatcher();
let codeMirror = {} as CodeMirrorAPI;
onMount(async () => {
const editor = await codeMirror.editor;
focusAndSetCaret(editor, position);
if (selectAll) {
editor.execCommand("selectAll");
}
let direction: "start" | "end" | undefined = undefined;
editor.on(
"keydown",
(_instance: CodeMirrorLib.Editor, event: KeyboardEvent): void => {
if (event.key === "ArrowLeft") {
direction = "start";
} else if (event.key === "ArrowRight") {
direction = "end";
}
},
);
editor.on(
"beforeSelectionChange",
(
instance: CodeMirrorLib.Editor,
obj: CodeMirrorLib.EditorSelectionChange,
): void => {
const { anchor } = obj.ranges[0];
if (anchor["hitSide"]) {
if (instance.getValue().length === 0) {
if (direction) {
dispatch(`moveout${direction}`);
}
} else if (anchor.line === 0 && anchor.ch === 0) {
dispatch("moveoutstart");
} else {
dispatch("moveoutend");
}
}
direction = undefined;
},
);
});
</script>
<div class="mathjax-editor">
<CodeMirror
{code}
{configuration}
bind:api={codeMirror}
on:change={({ detail: mathjaxText }) => code.set(mathjaxText)}
on:blur
/>
</div>
<slot editor={codeMirror} />
<style lang="scss">
.mathjax-editor {
:global(.CodeMirror) {
max-width: 28rem;
min-width: 14rem;
margin-bottom: 0.25rem;
}
:global(.CodeMirror-placeholder) {
font-family: sans-serif;
font-size: 55%;
text-align: center;
color: var(--slightly-grey-text);
}
}
</style>