Anki/ts/editor/StickyBadge.svelte
GithubAnon0000 8fc822a6e7
Use tilted (filled and unfilled) sticky icons in the cards editor (#3825)
* Update icons.ts to include hollow and solid icons

* Update icons.ts

* Create sticky-pin-hollow.svg

* Create sticky-pin-solid.svg

* Update StickyBadge.svelte to reflect changed icons
2025-02-16 22:24:11 +07:00

78 lines
2 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 * as tr from "@generated/ftl";
import { bridgeCommand } from "@tslib/bridgecommand";
import { getPlatformString, registerShortcut } from "@tslib/shortcuts";
import { onEnterOrSpace } from "@tslib/keys";
import { onMount } from "svelte";
import Badge from "$lib/components/Badge.svelte";
import Icon from "$lib/components/Icon.svelte";
import { stickyIconHollow } from "$lib/components/icons";
import { stickyIconSolid } from "$lib/components/icons";
import { context as editorFieldContext } from "./EditorField.svelte";
const animated = !document.body.classList.contains("reduce-motion");
export let active: boolean;
export let show: boolean;
const editorField = editorFieldContext.get();
const keyCombination = "F9";
export let index: number;
function toggle() {
bridgeCommand(`toggleSticky:${index}`, (value: boolean) => {
active = value;
});
}
function shortcut(target: HTMLElement): () => void {
return registerShortcut(toggle, keyCombination, { target });
}
onMount(() => {
editorField.element.then(shortcut);
});
</script>
<span
class:highlighted={active}
class:visible={show || !animated}
on:click|stopPropagation={toggle}
on:keydown={onEnterOrSpace(() => toggle())}
tabindex="-1"
role="button"
>
<Badge
tooltip="{tr.editingToggleSticky()} ({getPlatformString(keyCombination)})"
widthMultiplier={0.7}
></Badge>
{#if active}
<Icon icon={stickyIconSolid} />
{:else}
<Icon icon={stickyIconHollow} />
{/if}
</span>
<style lang="scss">
span {
cursor: pointer;
opacity: 0;
&.visible {
transition: none;
opacity: 0.4;
&:hover {
opacity: 0.8;
}
}
&.highlighted {
opacity: 1;
}
}
</style>