import { useCallback } from 'react'; // @mui import Stack from '@mui/material/Stack'; import MenuItem from '@mui/material/MenuItem'; import Checkbox from '@mui/material/Checkbox'; import TextField from '@mui/material/TextField'; import InputLabel from '@mui/material/InputLabel'; import IconButton from '@mui/material/IconButton'; import FormControl from '@mui/material/FormControl'; import OutlinedInput from '@mui/material/OutlinedInput'; import InputAdornment from '@mui/material/InputAdornment'; import Select, { SelectChangeEvent } from '@mui/material/Select'; // types import { CustomerTableFilters, CustomerTableFilterValue } from 'mvpmasters-shared'; // components import Iconify from 'src/components/iconify'; import CustomPopover, { usePopover } from 'src/components/custom-popover'; // ---------------------------------------------------------------------- type Props = { filters: CustomerTableFilters; onFilters: (name: string, value: CustomerTableFilterValue) => void; // roleOptions: string[]; }; export default function CustomerTableToolbar({ filters, onFilters, // roleOptions, }: Props) { const popover = usePopover(); const handleFilterName = useCallback( (event: React.ChangeEvent) => { onFilters('name', event.target.value); }, [onFilters] ); const handleFilterRole = useCallback( (event: SelectChangeEvent) => { onFilters( 'role', typeof event.target.value === 'string' ? event.target.value.split(',') : event.target.value ); }, [onFilters] ); return ( <> Role ), }} /> { popover.onClose(); }} > Print { popover.onClose(); }} > Import { popover.onClose(); }} > Export ); }