42 lines
1.2 KiB
Svelte
42 lines
1.2 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 { createEventDispatcher } from "svelte";
|
|
import { stepsToString, stringToSteps } from "./steps";
|
|
import ConfigEntry from "./ConfigEntry.svelte";
|
|
import type { NumberValueEvent } from "./events";
|
|
|
|
export let label: string;
|
|
export let tooltip: string;
|
|
export let value: number[];
|
|
export let defaultValue: number[];
|
|
export let warnings: string[] = [];
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let stringValue: string;
|
|
$: stringValue = stepsToString(value);
|
|
|
|
function update(this: HTMLInputElement): void {
|
|
const value = stringToSteps(this.value);
|
|
dispatch("changed", { value });
|
|
}
|
|
|
|
function revert(evt: NumberValueEvent): void {
|
|
dispatch("changed", { value: evt.detail.value });
|
|
}
|
|
</script>
|
|
|
|
<ConfigEntry
|
|
{label}
|
|
{tooltip}
|
|
{value}
|
|
{defaultValue}
|
|
{warnings}
|
|
wholeLine={value.length > 2}
|
|
on:revert={revert}>
|
|
<input type="text" value={stringValue} on:blur={update} class="form-control" />
|
|
</ConfigEntry>
|