File size: 1,384 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
import type { TextFieldProps } from '@mui/material/TextField';
import TextField from '@mui/material/TextField';
import React from 'react';
import type { FieldProps } from 'uniforms';
import { connectField, filterDOMProps } from 'uniforms';
export type NumFieldProps = FieldProps<
number,
TextFieldProps,
{ decimal?: boolean; max?: number; min?: number; step?: number }
>;
function Num({
decimal,
disabled,
error,
errorMessage,
helperText,
inputProps,
inputRef,
label,
max,
min,
name,
onChange,
readOnly,
placeholder,
showInlineError,
step = decimal ? 0.01 : 1,
value,
...props
}: NumFieldProps) {
return (
<TextField
disabled={disabled}
error={!!error}
fullWidth
helperText={(error && showInlineError && errorMessage) || helperText}
inputProps={{
min,
max,
readOnly,
step,
...inputProps,
}}
label={label}
margin="dense"
name={name}
onChange={(event) => {
const parse = decimal ? parseFloat : parseInt;
const value = parse(event.target.value);
onChange(isNaN(value) ? undefined : value);
}}
placeholder={placeholder}
ref={inputRef}
type="number"
value={value ?? ''}
{...filterDOMProps(props)}
/>
);
}
export default connectField<NumFieldProps>(Num, { kind: 'leaf' });
|