Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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' });