anki/ts/deck-options/SpinBoxFloat.svelte

41 lines
879 B
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 { getContext } from "svelte";
import { nightModeKey } from "components/context-keys";
export let value: number;
export let min = 1;
export let max = 9999;
let stringValue: string;
$: stringValue = value.toFixed(2);
const nightMode = getContext<boolean>(nightModeKey);
function update(this: HTMLInputElement): void {
2021-05-28 23:59:20 +02:00
value = Math.min(max, Math.max(min, parseFloat(this.value)));
}
</script>
<input
type="number"
class="form-control"
class:nightMode
{min}
{max}
step="0.01"
value={stringValue}
on:blur={update}
/>
<style lang="scss">
2021-08-17 22:07:28 +02:00
@use "night-mode" as nightmode;
.nightMode {
@include nightmode.input;
}
</style>