anki/ts/editor-toolbar/WithShortcut.svelte

35 lines
957 B
Svelte
Raw Normal View History

2021-04-21 16:05:08 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
import type { DynamicSvelteComponent } from "sveltelib/dynamicComponent";
import type { ToolbarItem } from "./types";
import { onDestroy } from "svelte";
import { registerShortcut } from "anki/shortcuts";
2021-04-21 16:05:08 +02:00
export let button: ToolbarItem;
export let shortcut: string;
2021-04-21 16:05:08 +02:00
function extend({ ...rest }: DynamicSvelteComponent): DynamicSvelteComponent {
2021-04-21 16:05:08 +02:00
return {
...rest,
};
}
let deregister;
2021-04-21 16:05:08 +02:00
function createShortcut({ detail }: CustomEvent): void {
const button: HTMLButtonElement = detail.button;
deregister = registerShortcut(() => button.click(), shortcut);
2021-04-21 16:05:08 +02:00
}
onDestroy(() => deregister());
2021-04-21 16:05:08 +02:00
</script>
<svelte:component
this={button.component}
{...extend(button)}
on:mount={createShortcut} />