[5d6f37a] | 1 | import { useCallback } from 'react';
|
---|
| 2 | // @mui
|
---|
| 3 | import Stack from '@mui/material/Stack';
|
---|
| 4 | import MenuItem from '@mui/material/MenuItem';
|
---|
| 5 | import Checkbox from '@mui/material/Checkbox';
|
---|
| 6 | import TextField from '@mui/material/TextField';
|
---|
| 7 | import InputLabel from '@mui/material/InputLabel';
|
---|
| 8 | import IconButton from '@mui/material/IconButton';
|
---|
| 9 | import FormControl from '@mui/material/FormControl';
|
---|
| 10 | import OutlinedInput from '@mui/material/OutlinedInput';
|
---|
| 11 | import InputAdornment from '@mui/material/InputAdornment';
|
---|
| 12 | import Select, { SelectChangeEvent } from '@mui/material/Select';
|
---|
| 13 | // types
|
---|
[057453c] | 14 | import { CustomerTableFilters, CustomerTableFilterValue } from 'src/schemas';
|
---|
[5d6f37a] | 15 | // components
|
---|
| 16 | import Iconify from 'src/components/iconify';
|
---|
| 17 | import CustomPopover, { usePopover } from 'src/components/custom-popover';
|
---|
| 18 |
|
---|
| 19 | // ----------------------------------------------------------------------
|
---|
| 20 |
|
---|
| 21 | type Props = {
|
---|
| 22 | filters: CustomerTableFilters;
|
---|
| 23 | onFilters: (name: string, value: CustomerTableFilterValue) => void;
|
---|
| 24 | //
|
---|
| 25 | roleOptions: string[];
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 | export default function CustomerTableToolbar({
|
---|
| 29 | filters,
|
---|
| 30 | onFilters,
|
---|
| 31 | //
|
---|
| 32 | roleOptions,
|
---|
| 33 | }: Props) {
|
---|
| 34 | const popover = usePopover();
|
---|
| 35 |
|
---|
| 36 | const handleFilterName = useCallback(
|
---|
| 37 | (event: React.ChangeEvent<HTMLInputElement>) => {
|
---|
| 38 | onFilters('name', event.target.value);
|
---|
| 39 | },
|
---|
| 40 | [onFilters]
|
---|
| 41 | );
|
---|
| 42 |
|
---|
| 43 | const handleFilterRole = useCallback(
|
---|
| 44 | (event: SelectChangeEvent<string[]>) => {
|
---|
| 45 | onFilters(
|
---|
| 46 | 'role',
|
---|
| 47 | typeof event.target.value === 'string' ? event.target.value.split(',') : event.target.value
|
---|
| 48 | );
|
---|
| 49 | },
|
---|
| 50 | [onFilters]
|
---|
| 51 | );
|
---|
| 52 |
|
---|
| 53 | return (
|
---|
| 54 | <>
|
---|
| 55 | <Stack
|
---|
| 56 | spacing={2}
|
---|
| 57 | alignItems={{ xs: 'flex-end', md: 'center' }}
|
---|
| 58 | direction={{
|
---|
| 59 | xs: 'column',
|
---|
| 60 | md: 'row',
|
---|
| 61 | }}
|
---|
| 62 | sx={{
|
---|
| 63 | p: 2.5,
|
---|
| 64 | pr: { xs: 2.5, md: 1 },
|
---|
| 65 | }}
|
---|
| 66 | >
|
---|
| 67 | <FormControl
|
---|
| 68 | sx={{
|
---|
| 69 | flexShrink: 0,
|
---|
| 70 | width: { xs: 1, md: 200 },
|
---|
| 71 | }}
|
---|
| 72 | >
|
---|
| 73 | <InputLabel>Role</InputLabel>
|
---|
| 74 |
|
---|
| 75 | <Select
|
---|
| 76 | multiple
|
---|
| 77 | value={filters.role}
|
---|
| 78 | onChange={handleFilterRole}
|
---|
| 79 | input={<OutlinedInput label="Role" />}
|
---|
| 80 | renderValue={(selected) => selected.map((value) => value).join(', ')}
|
---|
| 81 | MenuProps={{
|
---|
| 82 | PaperProps: {
|
---|
| 83 | sx: { maxHeight: 240 },
|
---|
| 84 | },
|
---|
| 85 | }}
|
---|
| 86 | >
|
---|
| 87 | {roleOptions.map((option) => (
|
---|
| 88 | <MenuItem key={option} value={option}>
|
---|
| 89 | <Checkbox disableRipple size="small" checked={filters.role.includes(option)} />
|
---|
| 90 | {option}
|
---|
| 91 | </MenuItem>
|
---|
| 92 | ))}
|
---|
| 93 | </Select>
|
---|
| 94 | </FormControl>
|
---|
| 95 |
|
---|
| 96 | <Stack direction="row" alignItems="center" spacing={2} flexGrow={1} sx={{ width: 1 }}>
|
---|
| 97 | <TextField
|
---|
| 98 | fullWidth
|
---|
| 99 | value={filters.name}
|
---|
| 100 | onChange={handleFilterName}
|
---|
| 101 | placeholder="Search..."
|
---|
| 102 | InputProps={{
|
---|
| 103 | startAdornment: (
|
---|
| 104 | <InputAdornment position="start">
|
---|
| 105 | <Iconify icon="eva:search-fill" sx={{ color: 'text.disabled' }} />
|
---|
| 106 | </InputAdornment>
|
---|
| 107 | ),
|
---|
| 108 | }}
|
---|
| 109 | />
|
---|
| 110 |
|
---|
| 111 | <IconButton onClick={popover.onOpen}>
|
---|
| 112 | <Iconify icon="eva:more-vertical-fill" />
|
---|
| 113 | </IconButton>
|
---|
| 114 | </Stack>
|
---|
| 115 | </Stack>
|
---|
| 116 |
|
---|
| 117 | <CustomPopover
|
---|
| 118 | open={popover.open}
|
---|
| 119 | onClose={popover.onClose}
|
---|
| 120 | arrow="right-top"
|
---|
| 121 | sx={{ width: 140 }}
|
---|
| 122 | >
|
---|
| 123 | <MenuItem
|
---|
| 124 | onClick={() => {
|
---|
| 125 | popover.onClose();
|
---|
| 126 | }}
|
---|
| 127 | >
|
---|
| 128 | <Iconify icon="solar:printer-minimalistic-bold" />
|
---|
| 129 | Print
|
---|
| 130 | </MenuItem>
|
---|
| 131 |
|
---|
| 132 | <MenuItem
|
---|
| 133 | onClick={() => {
|
---|
| 134 | popover.onClose();
|
---|
| 135 | }}
|
---|
| 136 | >
|
---|
| 137 | <Iconify icon="solar:import-bold" />
|
---|
| 138 | Import
|
---|
| 139 | </MenuItem>
|
---|
| 140 |
|
---|
| 141 | <MenuItem
|
---|
| 142 | onClick={() => {
|
---|
| 143 | popover.onClose();
|
---|
| 144 | }}
|
---|
| 145 | >
|
---|
| 146 | <Iconify icon="solar:export-bold" />
|
---|
| 147 | Export
|
---|
| 148 | </MenuItem>
|
---|
| 149 | </CustomPopover>
|
---|
| 150 | </>
|
---|
| 151 | );
|
---|
| 152 | }
|
---|