mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00

* Add sveltekit-svg plugin to fix svg icon styling Closes #3127. * Unify svg icon usage Moves all icons into ts/lib/components/icons.ts and uses a single component to render them both with eslint and svelte-kit. * Fix spinning revert icon not being centered * Use svg earth icon for global label * Add tooltip to global label icon * Remove eslint-plugin-simple-import-sort Imports are already sorted by dprint with conflicting rules.
45 lines
1.5 KiB
Svelte
45 lines
1.5 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 { directionKey } from "@tslib/context-keys";
|
|
import { createEventDispatcher, getContext } from "svelte";
|
|
import type { Readable } from "svelte/store";
|
|
|
|
import ButtonGroup from "$lib/components/ButtonGroup.svelte";
|
|
import Icon from "$lib/components/Icon.svelte";
|
|
import IconButton from "$lib/components/IconButton.svelte";
|
|
import { sizeActual, sizeClear, sizeMinimized } from "$lib/components/icons";
|
|
|
|
export let isSizeConstrained: boolean;
|
|
export let shrinkingDisabled: boolean;
|
|
export let restoringDisabled: boolean;
|
|
|
|
$: icon = isSizeConstrained ? sizeMinimized : sizeActual;
|
|
|
|
const direction = getContext<Readable<"ltr" | "rtl">>(directionKey);
|
|
const dispatch = createEventDispatcher();
|
|
</script>
|
|
|
|
<ButtonGroup size={1.6}>
|
|
<IconButton
|
|
disabled={shrinkingDisabled}
|
|
flipX={$direction === "rtl"}
|
|
tooltip="{tr.editingActualSize()} ({tr.editingDoubleClickImage()})"
|
|
on:click={() => dispatch("imagetoggle")}
|
|
--border-left-radius="5px"
|
|
>
|
|
<Icon {icon} />
|
|
</IconButton>
|
|
|
|
<IconButton
|
|
disabled={restoringDisabled}
|
|
tooltip={tr.editingRestoreOriginalSize()}
|
|
on:click={() => dispatch("imageclear")}
|
|
--border-right-radius="5px"
|
|
>
|
|
<Icon icon={sizeClear} />
|
|
</IconButton>
|
|
</ButtonGroup>
|