2021-04-12 06:18:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2021-06-21 21:16:40 +02:00
|
|
|
import { getContext } from "svelte";
|
2021-06-30 19:55:56 +02:00
|
|
|
import { nightModeKey } from "components/context-keys";
|
2021-06-21 21:16:40 +02:00
|
|
|
|
2021-04-12 06:18:30 +02:00
|
|
|
export let value: number;
|
|
|
|
export let min = 1;
|
|
|
|
export let max = 9999;
|
|
|
|
|
|
|
|
let stringValue: string;
|
|
|
|
$: stringValue = value.toFixed(2);
|
|
|
|
|
2021-06-21 21:16:40 +02:00
|
|
|
const nightMode = getContext<boolean>(nightModeKey);
|
|
|
|
|
2021-04-12 06:18:30 +02:00
|
|
|
function update(this: HTMLInputElement): void {
|
2021-05-28 23:59:20 +02:00
|
|
|
value = Math.min(max, Math.max(min, parseFloat(this.value)));
|
2021-04-12 06:18:30 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-05-28 00:52:49 +02:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
class="form-control"
|
2021-06-21 21:16:40 +02:00
|
|
|
class:nightMode
|
2021-05-28 00:52:49 +02:00
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
step="0.01"
|
|
|
|
value={stringValue}
|
|
|
|
on:blur={update}
|
|
|
|
/>
|
2021-06-21 21:16:40 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
2021-08-17 22:07:28 +02:00
|
|
|
@use "night-mode" as nightmode;
|
2021-06-21 21:16:40 +02:00
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
@include nightmode.input;
|
|
|
|
}
|
|
|
|
</style>
|