mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
68 lines
2.1 KiB
Svelte
68 lines
2.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 { getPlatformString } from "@tslib/shortcuts";
|
|
|
|
import IconButton from "$lib/components/IconButton.svelte";
|
|
import Shortcut from "$lib/components/Shortcut.svelte";
|
|
import WithState from "$lib/components/WithState.svelte";
|
|
import { updateStateByKey } from "$lib/components/WithState.svelte";
|
|
import { execCommand, queryCommandState } from "$lib/domlib";
|
|
|
|
import { context as noteEditorContext } from "../NoteEditor.svelte";
|
|
import { editingInputIsRichText } from "../rich-text-input";
|
|
|
|
export let key: string;
|
|
export let tooltip: string;
|
|
export let shortcut: string | null = null;
|
|
export let modeVariantKeys: string[] = [key];
|
|
|
|
$: theTooltip = shortcut ? `${tooltip} (${getPlatformString(shortcut)})` : tooltip;
|
|
|
|
export let withoutState = false;
|
|
|
|
const { focusedInput } = noteEditorContext.get();
|
|
|
|
function action() {
|
|
execCommand(key);
|
|
$focusedInput?.focus();
|
|
}
|
|
|
|
$: disabled = !$focusedInput || !editingInputIsRichText($focusedInput);
|
|
</script>
|
|
|
|
{#if withoutState}
|
|
<IconButton tooltip={theTooltip} {disabled} on:click={action}>
|
|
<slot />
|
|
</IconButton>
|
|
|
|
{#if shortcut}
|
|
<Shortcut keyCombination={shortcut} on:action={action} />
|
|
{/if}
|
|
{:else}
|
|
<WithState {key} update={async () => queryCommandState(key)} let:state={active}>
|
|
<IconButton
|
|
tooltip={theTooltip}
|
|
{active}
|
|
{disabled}
|
|
on:click={(event) => {
|
|
action();
|
|
modeVariantKeys.map((key) => updateStateByKey(key, event));
|
|
}}
|
|
>
|
|
<slot />
|
|
</IconButton>
|
|
|
|
{#if shortcut}
|
|
<Shortcut
|
|
keyCombination={shortcut}
|
|
on:action={(event) => {
|
|
action();
|
|
modeVariantKeys.map((key) => updateStateByKey(key, event));
|
|
}}
|
|
/>
|
|
{/if}
|
|
</WithState>
|
|
{/if}
|