labyrinth-frontend/src/ValidatingInputNumberField.js

48 lines
1.7 KiB
JavaScript
Raw Normal View History

import React, {useState} from 'react';
export default function ValidatingInputNumberField({
id,
label,
2023-04-16 01:01:23 +02:00
value = 0,
constraints = {},
validatorFn = (value) => {
return {valid: true, value};
},
disabled = false,
onChange = _ => {
}
}) {
const [error, setError] = useState(null);
const handleValueChange = (e) => {
const value = e.target.value;
const validation = validatorFn(value);
if (!validation.valid) {
setError(validation.message);
} else {
setError(null);
}
2023-04-16 01:01:23 +02:00
onChange(validation.value);
};
let errorComponent;
if (!!error) {
errorComponent = <span>{error}</span>;
} else {
errorComponent = <span/>;
}
return (
<span>
<label htmlFor={id}>{label}: </label>
<input id={id}
type={"number"}
onChange={handleValueChange}
value={value || ""}
min={constraints.min || null}
max={constraints.max || null}
disabled={disabled}
/>
{errorComponent}
</span>
);
}