mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* 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
78 lines
2 KiB
Svelte
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>
|