68fa661b53
* Move up MathjaxOverlay to be initialized only once * Move ImageOverlay to NoteEditor root * Move Symbols Overlay to NoteEditor root * Refactor image overlay to not require second mutation observer * Use elevation + overflow:hidden in Editorfield * Make it possible to show input next to each other again * Set handle background color to code bg * Make Collapsible unmount the component * Simplify how decorated elements are mounted * Set RichTextInput background to frame-bg again * Strip out FocusTrap code * Revert "Make Collapsible unmount the component" This reverts commit 52722065ea199fa57ae750fa34bf47ee1c5aab3c. * Allow clicking on label container to unfocus field * Fix mathjax overlay resetting too its api too soon * Allow scrolling on overlays * Set focus-border border-color in focused field * Fix background color of fields * Add back grid-gap removed it during merge to see if margin-top would behave any differently - which is not the case. * Fix double border issue within Collapsible.svelte * Format * Edit appearance of focused fields a bit * Remove unused properties * Include elevation in button_mixins_lib * Give label-container a background color Co-authored-by: Henrik Giesel <hengiesel@gmail.com>
123 lines
3.7 KiB
Svelte
123 lines
3.7 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 ButtonGroup from "../../components/ButtonGroup.svelte";
|
|
import ButtonGroupItem, {
|
|
createProps,
|
|
setSlotHostContext,
|
|
updatePropsList,
|
|
} from "../../components/ButtonGroupItem.svelte";
|
|
import DynamicallySlottable from "../../components/DynamicallySlottable.svelte";
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
import Shortcut from "../../components/Shortcut.svelte";
|
|
import { bridgeCommand } from "../../lib/bridgecommand";
|
|
import * as tr from "../../lib/ftl";
|
|
import { promiseWithResolver } from "../../lib/promise";
|
|
import { registerPackage } from "../../lib/runtime-require";
|
|
import { getPlatformString } from "../../lib/shortcuts";
|
|
import { context } from "../NoteEditor.svelte";
|
|
import { setFormat } from "../old-editor-adapter";
|
|
import { editingInputIsRichText, RichTextInputAPI } from "../rich-text-input";
|
|
import { micIcon, paperclipIcon } from "./icons";
|
|
import LatexButton from "./LatexButton.svelte";
|
|
|
|
const { focusedInput } = context.get();
|
|
|
|
const attachmentCombination = "F3";
|
|
|
|
let mediaPromise: Promise<string>;
|
|
let resolve: (media: string) => void;
|
|
|
|
function resolveMedia(media: string): void {
|
|
resolve?.(media);
|
|
}
|
|
|
|
function attachMediaOnFocus(): void {
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
|
|
[mediaPromise, resolve] = promiseWithResolver<string>();
|
|
($focusedInput as RichTextInputAPI).editable.focusHandler.focus.on(
|
|
async () => setFormat("inserthtml", await mediaPromise),
|
|
{ once: true },
|
|
);
|
|
|
|
bridgeCommand("attach");
|
|
}
|
|
|
|
registerPackage("anki/TemplateButtons", {
|
|
resolveMedia,
|
|
});
|
|
|
|
const recordCombination = "F5";
|
|
|
|
function attachRecordingOnFocus(): void {
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
|
|
[mediaPromise, resolve] = promiseWithResolver<string>();
|
|
($focusedInput as RichTextInputAPI).editable.focusHandler.focus.on(
|
|
async () => setFormat("inserthtml", await mediaPromise),
|
|
{ once: true },
|
|
);
|
|
|
|
bridgeCommand("record");
|
|
}
|
|
|
|
$: disabled = !$focusedInput || !editingInputIsRichText($focusedInput);
|
|
|
|
export let api = {};
|
|
</script>
|
|
|
|
<ButtonGroup>
|
|
<DynamicallySlottable
|
|
slotHost={ButtonGroupItem}
|
|
{createProps}
|
|
{updatePropsList}
|
|
{setSlotHostContext}
|
|
{api}
|
|
>
|
|
<ButtonGroupItem>
|
|
<IconButton
|
|
tooltip="{tr.editingAttachPicturesaudiovideo()} ({getPlatformString(
|
|
attachmentCombination,
|
|
)})"
|
|
iconSize={70}
|
|
{disabled}
|
|
on:click={attachMediaOnFocus}
|
|
>
|
|
{@html paperclipIcon}
|
|
</IconButton>
|
|
<Shortcut
|
|
keyCombination={attachmentCombination}
|
|
on:action={attachMediaOnFocus}
|
|
/>
|
|
</ButtonGroupItem>
|
|
|
|
<ButtonGroupItem>
|
|
<IconButton
|
|
tooltip="{tr.editingRecordAudio()} ({getPlatformString(
|
|
recordCombination,
|
|
)})"
|
|
iconSize={70}
|
|
{disabled}
|
|
on:click={attachRecordingOnFocus}
|
|
>
|
|
{@html micIcon}
|
|
</IconButton>
|
|
<Shortcut
|
|
keyCombination={recordCombination}
|
|
on:action={attachRecordingOnFocus}
|
|
/>
|
|
</ButtonGroupItem>
|
|
|
|
<ButtonGroupItem>
|
|
<LatexButton />
|
|
</ButtonGroupItem>
|
|
</DynamicallySlottable>
|
|
</ButtonGroup>
|