feat: Introduce InputCreator

This commit is contained in:
Ali BARIN
2021-10-11 23:22:12 +02:00
parent 981ea6d163
commit f50c09ed37
13 changed files with 196 additions and 15 deletions

View File

@@ -0,0 +1,47 @@
import type { AppFields } from 'types/app';
import { useFormContext } from "react-hook-form";
import TextField from 'components/TextField';
type InputCreatorProps = {
onChange?: React.ChangeEventHandler;
schema: AppFields;
};
export default function InputCreator(props: InputCreatorProps) {
const {
onChange,
schema,
} = props;
const { control } = useFormContext();
const {
key: name,
label,
type,
required,
readOnly,
value,
description,
docUrl,
clickToCopy,
} = schema;
return (
<TextField
defaultValue={value}
required={required}
placeholder=""
disabled={readOnly}
readOnly={readOnly}
onChange={onChange}
name={name}
label={label}
fullWidth
helperText={description}
control={control}
clickToCopy={clickToCopy}
/>
);
};