Files
ox_lib/web/src/features/dialog/components/fields/number.tsx
2023-11-15 15:28:21 +01:00

44 lines
1.3 KiB
TypeScript

import { NumberInput } from '@mantine/core';
import { INumber } from '../../../../typings/dialog';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Control, useController } from 'react-hook-form';
import { FormValues } from '../../InputDialog';
import LibIcon from '../../../../components/LibIcon';
interface Props {
row: INumber;
index: number;
control: Control<FormValues>;
}
const NumberField: React.FC<Props> = (props) => {
const controller = useController({
name: `test.${props.index}.value`,
control: props.control,
defaultValue: props.row.default,
rules: { required: props.row.required, min: props.row.min, max: props.row.max },
});
return (
<NumberInput
value={controller.field.value}
name={controller.field.name}
ref={controller.field.ref}
onBlur={controller.field.onBlur}
onChange={controller.field.onChange}
label={props.row.label}
description={props.row.description}
defaultValue={props.row.default}
min={props.row.min}
max={props.row.max}
step={props.row.step}
precision={props.row.precision}
disabled={props.row.disabled}
icon={props.row.icon && <LibIcon icon={props.row.icon} fixedWidth />}
withAsterisk={props.row.required}
/>
);
};
export default NumberField;