[5d6f37a] | 1 | import { useFormContext, Controller } from 'react-hook-form';
|
---|
| 2 | // @mui
|
---|
| 3 | import Radio from '@mui/material/Radio';
|
---|
| 4 | import FormLabel from '@mui/material/FormLabel';
|
---|
| 5 | import FormControl from '@mui/material/FormControl';
|
---|
| 6 | import FormHelperText from '@mui/material/FormHelperText';
|
---|
| 7 | import FormControlLabel from '@mui/material/FormControlLabel';
|
---|
| 8 | import RadioGroup, { RadioGroupProps } from '@mui/material/RadioGroup';
|
---|
| 9 |
|
---|
| 10 | // ----------------------------------------------------------------------
|
---|
| 11 |
|
---|
| 12 | type Props = RadioGroupProps & {
|
---|
| 13 | name: string;
|
---|
| 14 | options: { label: string; value: any }[];
|
---|
| 15 | label?: string;
|
---|
| 16 | spacing?: number;
|
---|
| 17 | helperText?: React.ReactNode;
|
---|
| 18 | };
|
---|
| 19 |
|
---|
| 20 | export default function RHFRadioGroup({
|
---|
| 21 | row,
|
---|
| 22 | name,
|
---|
| 23 | label,
|
---|
| 24 | options,
|
---|
| 25 | spacing,
|
---|
| 26 | helperText,
|
---|
| 27 | ...other
|
---|
| 28 | }: Props) {
|
---|
| 29 | const { control } = useFormContext();
|
---|
| 30 |
|
---|
| 31 | const labelledby = label ? `${name}-${label}` : '';
|
---|
| 32 |
|
---|
| 33 | return (
|
---|
| 34 | <Controller
|
---|
| 35 | name={name}
|
---|
| 36 | control={control}
|
---|
| 37 | render={({ field, fieldState: { error } }) => (
|
---|
| 38 | <FormControl component="fieldset">
|
---|
| 39 | {label && (
|
---|
| 40 | <FormLabel component="legend" id={labelledby} sx={{ typography: 'body2' }}>
|
---|
| 41 | {label}
|
---|
| 42 | </FormLabel>
|
---|
| 43 | )}
|
---|
| 44 |
|
---|
| 45 | <RadioGroup {...field} aria-labelledby={labelledby} row={row} {...other}>
|
---|
| 46 | {options.map((option) => (
|
---|
| 47 | <FormControlLabel
|
---|
| 48 | key={option.value}
|
---|
| 49 | value={option.value}
|
---|
| 50 | control={<Radio />}
|
---|
| 51 | label={option.label}
|
---|
| 52 | sx={{
|
---|
| 53 | '&:not(:last-of-type)': {
|
---|
| 54 | mb: spacing || 0,
|
---|
| 55 | },
|
---|
| 56 | ...(row && {
|
---|
| 57 | mr: 0,
|
---|
| 58 | '&:not(:last-of-type)': {
|
---|
| 59 | mr: spacing || 2,
|
---|
| 60 | },
|
---|
| 61 | }),
|
---|
| 62 | }}
|
---|
| 63 | />
|
---|
| 64 | ))}
|
---|
| 65 | </RadioGroup>
|
---|
| 66 |
|
---|
| 67 | {(!!error || helperText) && (
|
---|
| 68 | <FormHelperText error={!!error} sx={{ mx: 0 }}>
|
---|
| 69 | {error ? error?.message : helperText}
|
---|
| 70 | </FormHelperText>
|
---|
| 71 | )}
|
---|
| 72 | </FormControl>
|
---|
| 73 | )}
|
---|
| 74 | />
|
---|
| 75 | );
|
---|
| 76 | }
|
---|