feat: add PowerInput component
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
c864a1062d
commit
d06f21c927
@@ -2,12 +2,14 @@ import * as React from 'react';
|
||||
import { useFormContext } from 'react-hook-form';
|
||||
import type { AppFields } from 'types/app';
|
||||
|
||||
import PowerInput from 'components/PowerInput';
|
||||
import TextField from 'components/TextField';
|
||||
|
||||
type InputCreatorProps = {
|
||||
onChange?: React.ChangeEventHandler;
|
||||
onBlur?: React.FocusEventHandler;
|
||||
schema: AppFields;
|
||||
namePrefix?: string;
|
||||
};
|
||||
|
||||
export default function InputCreator(props: InputCreatorProps): React.ReactElement {
|
||||
@@ -15,6 +17,7 @@ export default function InputCreator(props: InputCreatorProps): React.ReactEleme
|
||||
onChange,
|
||||
onBlur,
|
||||
schema,
|
||||
namePrefix,
|
||||
} = props;
|
||||
|
||||
const { control } = useFormContext();
|
||||
@@ -27,8 +30,24 @@ export default function InputCreator(props: InputCreatorProps): React.ReactEleme
|
||||
value,
|
||||
description,
|
||||
clickToCopy,
|
||||
variables,
|
||||
} = schema;
|
||||
|
||||
const computedName = namePrefix ? `${namePrefix}.${name}` : name;
|
||||
|
||||
if (variables) {
|
||||
return (
|
||||
<PowerInput
|
||||
label={label}
|
||||
description={description}
|
||||
control={control}
|
||||
name={computedName}
|
||||
required={required}
|
||||
// onBlur={onBlur}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<TextField
|
||||
defaultValue={value}
|
||||
@@ -38,7 +57,7 @@ export default function InputCreator(props: InputCreatorProps): React.ReactEleme
|
||||
readOnly={readOnly}
|
||||
onChange={onChange}
|
||||
onBlur={onBlur}
|
||||
name={name}
|
||||
name={computedName}
|
||||
size="small"
|
||||
label={label}
|
||||
fullWidth
|
||||
|
Reference in New Issue
Block a user