import { useFormContext, Controller } from 'react-hook-form'; // @mui import { Theme, SxProps } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Chip from '@mui/material/Chip'; import MenuItem from '@mui/material/MenuItem'; import Checkbox from '@mui/material/Checkbox'; import InputLabel from '@mui/material/InputLabel'; import FormControl from '@mui/material/FormControl'; import OutlinedInput from '@mui/material/OutlinedInput'; import FormHelperText from '@mui/material/FormHelperText'; import Select, { SelectProps } from '@mui/material/Select'; import TextField, { TextFieldProps } from '@mui/material/TextField'; // ---------------------------------------------------------------------- type RHFSelectProps = TextFieldProps & { name: string; native?: boolean; maxHeight?: boolean | number; children: React.ReactNode; PaperPropsSx?: SxProps; }; export function RHFSelect({ name, native, maxHeight = 220, helperText, children, PaperPropsSx, ...other }: RHFSelectProps) { const { control } = useFormContext(); return ( ( {children} )} /> ); } // ---------------------------------------------------------------------- type RHFMultiSelectProps = SelectProps & { name: string; label?: string; chip?: boolean; checkbox?: boolean; placeholder?: string; helperText?: React.ReactNode; options: { label: string; value: string; }[]; }; export function RHFMultiSelect({ name, chip, label, options, checkbox, placeholder, helperText, sx, ...other }: RHFMultiSelectProps) { const { control } = useFormContext(); const renderValues = (selectedIds: string[]) => { const selectedItems = options.filter((item) => selectedIds.includes(item.value)); if (!selectedItems.length && placeholder) { return ( {placeholder} ); } if (chip) { return ( {selectedItems.map((item) => ( ))} ); } return selectedItems.map((item) => item.label).join(', '); }; return ( ( {label && {label} } {(!!error || helperText) && ( {error ? error?.message : helperText} )} )} /> ); }