mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 15:36:02 +01:00
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import { createStyles, PasswordInput, TextInput } from '@mantine/core';
|
|
import React from 'react';
|
|
import { IInput } from '../../../../typings/dialog';
|
|
import { UseFormRegisterReturn } from 'react-hook-form';
|
|
import LibIcon from '../../../../components/LibIcon';
|
|
|
|
interface Props {
|
|
register: UseFormRegisterReturn;
|
|
row: IInput;
|
|
index: number;
|
|
}
|
|
|
|
const useStyles = createStyles((theme) => ({
|
|
eyeIcon: {
|
|
color: theme.colors.dark[2],
|
|
},
|
|
}));
|
|
|
|
const InputField: React.FC<Props> = (props) => {
|
|
const { classes } = useStyles();
|
|
|
|
return (
|
|
<>
|
|
{!props.row.password ? (
|
|
<TextInput
|
|
{...props.register}
|
|
defaultValue={props.row.default}
|
|
label={props.row.label}
|
|
description={props.row.description}
|
|
icon={props.row.icon && <LibIcon icon={props.row.icon} fixedWidth />}
|
|
placeholder={props.row.placeholder}
|
|
minLength={props.row.min}
|
|
maxLength={props.row.max}
|
|
disabled={props.row.disabled}
|
|
withAsterisk={props.row.required}
|
|
/>
|
|
) : (
|
|
<PasswordInput
|
|
{...props.register}
|
|
defaultValue={props.row.default}
|
|
label={props.row.label}
|
|
description={props.row.description}
|
|
icon={props.row.icon && <LibIcon icon={props.row.icon} fixedWidth />}
|
|
placeholder={props.row.placeholder}
|
|
minLength={props.row.min}
|
|
maxLength={props.row.max}
|
|
disabled={props.row.disabled}
|
|
withAsterisk={props.row.required}
|
|
visibilityToggleIcon={({ reveal, size }) => (
|
|
<LibIcon
|
|
icon={reveal ? 'eye-slash' : 'eye'}
|
|
fontSize={size}
|
|
cursor="pointer"
|
|
className={classes.eyeIcon}
|
|
fixedWidth
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default InputField;
|