2022-01-24 02:43:09 +01:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
import DropdownItem from "../../components/DropdownItem.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import DropdownMenu from "../../components/DropdownMenu.svelte";
|
2022-01-24 02:43:09 +01:00
|
|
|
import { withButton } from "../../components/helpers";
|
2022-02-04 09:36:34 +01:00
|
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
|
|
import Shortcut from "../../components/Shortcut.svelte";
|
|
|
|
import WithDropdown from "../../components/WithDropdown.svelte";
|
|
|
|
import * as tr from "../../lib/ftl";
|
2022-01-24 02:43:09 +01:00
|
|
|
import { getPlatformString } from "../../lib/shortcuts";
|
|
|
|
import { wrapInternal } from "../../lib/wrap";
|
2022-02-03 05:52:11 +01:00
|
|
|
import { context as noteEditorContext } from "../NoteEditor.svelte";
|
2022-01-24 02:43:09 +01:00
|
|
|
import type { RichTextInputAPI } from "../rich-text-input";
|
2022-02-03 05:52:11 +01:00
|
|
|
import { editingInputIsRichText } from "../rich-text-input";
|
2022-02-04 09:36:34 +01:00
|
|
|
import { functionIcon } from "./icons";
|
2022-01-24 02:43:09 +01:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
const { focusedInput } = noteEditorContext.get();
|
|
|
|
$: richTextAPI = $focusedInput as RichTextInputAPI;
|
2022-01-24 02:43:09 +01:00
|
|
|
|
|
|
|
async function surround(front: string, back: string): Promise<void> {
|
|
|
|
const element = await richTextAPI.element;
|
|
|
|
wrapInternal(element, front, back, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onMathjaxInline(): void {
|
|
|
|
surround("<anki-mathjax focusonmount>", "</anki-mathjax>");
|
|
|
|
}
|
|
|
|
|
|
|
|
function onMathjaxBlock(): void {
|
|
|
|
surround('<anki-mathjax block="true" focusonmount>', "</anki-matjax>");
|
|
|
|
}
|
|
|
|
|
|
|
|
function onMathjaxChemistry(): void {
|
|
|
|
surround("<anki-mathjax focusonmount>\\ce{", "}</anki-mathjax>");
|
|
|
|
}
|
|
|
|
|
|
|
|
function onLatex(): void {
|
|
|
|
surround("[latex]", "[/latex]");
|
|
|
|
}
|
|
|
|
|
|
|
|
function onLatexEquation(): void {
|
|
|
|
surround("[$]", "[/$]");
|
|
|
|
}
|
|
|
|
|
|
|
|
function onLatexMathEnv(): void {
|
|
|
|
surround("[$$]", "[/$$]");
|
|
|
|
}
|
|
|
|
|
|
|
|
type LatexItem = [() => void, string, string];
|
|
|
|
|
|
|
|
const dropdownItems: LatexItem[] = [
|
|
|
|
[onMathjaxInline, "Control+M, M", tr.editingMathjaxInline()],
|
|
|
|
[onMathjaxBlock, "Control+M, E", tr.editingMathjaxBlock()],
|
|
|
|
[onMathjaxChemistry, "Control+M, C", tr.editingMathjaxChemistry()],
|
|
|
|
[onLatex, "Control+T, T", tr.editingLatex()],
|
|
|
|
[onLatexEquation, "Control+T, E", tr.editingLatexEquation()],
|
|
|
|
[onLatexMathEnv, "Control+T, M", tr.editingLatexMathEnv()],
|
|
|
|
];
|
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
$: disabled = !editingInputIsRichText($focusedInput);
|
2022-01-24 02:43:09 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<WithDropdown let:createDropdown>
|
|
|
|
<IconButton {disabled} on:mount={withButton(createDropdown)}>
|
|
|
|
{@html functionIcon}
|
|
|
|
</IconButton>
|
|
|
|
|
|
|
|
<DropdownMenu>
|
|
|
|
{#each dropdownItems as [callback, keyCombination, label]}
|
|
|
|
<DropdownItem on:click={callback}>
|
|
|
|
{label}
|
|
|
|
<span class="ps-1 float-end">{getPlatformString(keyCombination)}</span>
|
|
|
|
</DropdownItem>
|
|
|
|
<Shortcut {keyCombination} on:action={callback} />
|
|
|
|
{/each}
|
|
|
|
</DropdownMenu>
|
|
|
|
</WithDropdown>
|