source: src/components/hook-form/rhf-radio-group.tsx

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 2.1 KB
Line 
1import { useFormContext, Controller } from 'react-hook-form';
2// @mui
3import Radio from '@mui/material/Radio';
4import FormLabel from '@mui/material/FormLabel';
5import FormControl from '@mui/material/FormControl';
6import FormHelperText from '@mui/material/FormHelperText';
7import FormControlLabel from '@mui/material/FormControlLabel';
8import RadioGroup, { RadioGroupProps } from '@mui/material/RadioGroup';
9
10// ----------------------------------------------------------------------
11
12type Props = RadioGroupProps & {
13 name: string;
14 options: { label: string; value: any }[];
15 label?: string;
16 spacing?: number;
17 helperText?: React.ReactNode;
18};
19
20export 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}
Note: See TracBrowser for help on using the repository browser.