anki/ts/deckoptions/RevertButton.svelte

88 lines
2.5 KiB
Svelte
Raw Normal View History

<!--
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 "lib/i18n";
import WithDropdownMenu from "components/WithDropdownMenu.svelte";
import DropdownMenu from "components/DropdownMenu.svelte";
import DropdownItem from "components/DropdownItem.svelte";
import Badge from "./Badge.svelte";
import { revertIcon } from "./icons";
import { isEqual as isEqualLodash, cloneDeep } from "lodash-es";
import { touchDeviceKey } from "components/contextKeys";
import { getContext } from "svelte";
type T = unknown;
export let value: T;
export let defaultValue: T;
function isEqual(a: T, b: T): boolean {
if (typeof a === "number" && typeof b === "number") {
// round to .01 precision before comparing,
// so the values coming out of the UI match
// the originals
a = Math.round(a * 100) / 100;
b = Math.round(b * 100) / 100;
}
return isEqualLodash(a, b);
}
let modified: boolean;
$: modified = !isEqual(value, defaultValue);
2021-06-22 01:38:28 +02:00
$: className = !modified ? "opacity-0" : "";
const isTouchDevice = getContext<boolean>(touchDeviceKey);
function revert(): void {
value = cloneDeep(defaultValue);
}
</script>
2021-06-21 20:24:15 +02:00
<WithDropdownMenu
disabled={!modified}
let:createDropdown
let:activateDropdown
let:menuId
>
<Badge
class={`p-1 ${className}`}
2021-06-21 20:24:15 +02:00
on:mount={(event) => createDropdown(event.detail.span)}
on:click={activateDropdown}
>
{@html revertIcon}
</Badge>
<DropdownMenu id={menuId}>
2021-06-21 20:24:15 +02:00
<DropdownItem
class={`spinner ${isTouchDevice ? "spin-always" : ""}`}
2021-06-21 20:24:15 +02:00
on:click={() => {
revert();
// Otherwise the menu won't close when the item is clicked
// TODO: investigate why this is necessary
activateDropdown();
}}
>
{tr.deckConfigRevertButtonTooltip()}<Badge>{@html revertIcon}</Badge>
</DropdownItem>
</DropdownMenu>
</WithDropdownMenu>
<style lang="scss">
:global(.spinner:hover .badge, .spinner.spin-always .badge) {
animation: spin-animation 1s infinite;
animation-timing-function: linear;
}
@keyframes -global-spin-animation {
0% {
transform: rotate(360deg);
}
100% {
transform: rotate(0deg);
}
}
</style>