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;
|
|
|
|
|
2021-06-21 21:16:40 +02:00
|
|
|
const nightMode = getContext<boolean>(nightModeKey);
|
|
|
|
|
2021-04-26 12:17:48 +02:00
|
|
|
function checkMinMax() {
|
|
|
|
if (value > max) {
|
|
|
|
value = max;
|
|
|
|
} else if (value < min) {
|
|
|
|
value = min;
|
|
|
|
}
|
2021-04-12 06:18:30 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2021-05-28 00:52:49 +02:00
|
|
|
<input
|
|
|
|
type="number"
|
2021-06-05 15:37:49 +02:00
|
|
|
pattern="[0-9]*"
|
|
|
|
inputmode="numeric"
|
2021-05-28 00:52:49 +02:00
|
|
|
{min}
|
|
|
|
{max}
|
|
|
|
bind:value
|
|
|
|
class="form-control"
|
2021-06-21 21:16:40 +02:00
|
|
|
class:nightMode
|
2021-05-28 00:52:49 +02:00
|
|
|
on:blur={checkMinMax}
|
|
|
|
/>
|
2021-06-21 21:16:40 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
2021-06-30 19:55:56 +02:00
|
|
|
@use "ts/sass/night-mode" as nightmode;
|
2021-06-21 21:16:40 +02:00
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
@include nightmode.input;
|
|
|
|
}
|
|
|
|
</style>
|