anki/ts/editor/StickyBadge.svelte

51 lines
1.3 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 Badge from "../components/Badge.svelte";
import { onMount } from "svelte";
import { stickyOn, stickyOff } from "./icons";
import { getEditorField } from "./EditorField.svelte";
import * as tr from "../lib/ftl";
import { bridgeCommand } from "../lib/bridgecommand";
import { registerShortcut, getPlatformString } from "../lib/shortcuts";
export let active: boolean;
$: icon = active ? stickyOn : stickyOff;
const editorField = getEditorField();
const keyCombination = "F9";
export let index: number;
function toggleSticky() {
bridgeCommand(`toggleSticky:${index}`, (value: boolean) => {
active = value;
});
}
onMount(() => registerShortcut(toggleSticky, keyCombination, editorField.element));
</script>
<span class:highlighted={active} on:click|stopPropagation={toggleSticky}>
<Badge
tooltip="{tr.editingToggleSticky()} ({getPlatformString(keyCombination)})"
widthMultiplier={0.7}>{@html icon}</Badge
>
</span>
<style lang="scss">
span {
opacity: 0.4;
&.highlighted {
opacity: 1;
}
&:hover {
opacity: 0.8;
}
}
</style>