88217c5e7d
* Implement a first version of WithFloating and Portal * Add outside slot for Portal * Execute computePosition from WithFloating * Set up a first example of new WithFloating with the Latex menu * Use autoUpdate in WithFloating * Create sveltelib/position * Add event-store * Use event-store in close-on-click * Implement subscribeToUpdates * Introduce sass/elevation * Split close-on-click to closing-click and subscribe-trigger * Have closing-* stores return a symbol - This way they act more of an EventEmitter than a store * Allow passing show store * Remove styling on float on updatePosition removal * Implement a nice border for dropdowns * Apply different border and box-shadow to Popover in dark/light theme * Fix Ctrl+Shift+T not working * Satisfy formatters and tests * Add copyright header * move copyright header to top (dae)
96 lines
3.1 KiB
Svelte
96 lines
3.1 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 { writable } from "svelte/store";
|
|
|
|
import DropdownItem from "../../components/DropdownItem.svelte";
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
import Popover from "../../components/Popover.svelte";
|
|
import Shortcut from "../../components/Shortcut.svelte";
|
|
import WithFloating from "../../components/WithFloating.svelte";
|
|
import * as tr from "../../lib/ftl";
|
|
import { getPlatformString } from "../../lib/shortcuts";
|
|
import { wrapInternal } from "../../lib/wrap";
|
|
import { context as noteEditorContext } from "../NoteEditor.svelte";
|
|
import type { RichTextInputAPI } from "../rich-text-input";
|
|
import { editingInputIsRichText } from "../rich-text-input";
|
|
import { functionIcon } from "./icons";
|
|
|
|
const { focusedInput } = noteEditorContext.get();
|
|
$: richTextAPI = $focusedInput as RichTextInputAPI;
|
|
|
|
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()],
|
|
];
|
|
|
|
$: disabled = !editingInputIsRichText($focusedInput);
|
|
|
|
const showDropdown = writable(false);
|
|
|
|
$: if (disabled) {
|
|
$showDropdown = false;
|
|
}
|
|
</script>
|
|
|
|
<WithFloating show={showDropdown} closeOnInsideClick let:toggle>
|
|
<IconButton slot="reference" {disabled} on:click={toggle}>
|
|
{@html functionIcon}
|
|
</IconButton>
|
|
|
|
<Popover slot="floating">
|
|
{#each dropdownItems as [callback, keyCombination, label]}
|
|
<DropdownItem on:click={callback}>
|
|
{label}
|
|
<span class="ms-auto ps-2 shortcut"
|
|
>{getPlatformString(keyCombination)}</span
|
|
>
|
|
</DropdownItem>
|
|
<Shortcut {keyCombination} on:action={callback} />
|
|
{/each}
|
|
</Popover>
|
|
</WithFloating>
|
|
|
|
<style lang="scss">
|
|
.shortcut {
|
|
font: Verdana;
|
|
}
|
|
</style>
|