source: src/sections/company/company-list-dialog.tsx@ 5d6f37a

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

add customer

  • Property mode set to 100644
File size: 4.5 KB
Line 
1import { useState, useCallback } from 'react';
2// @mui
3import Box from '@mui/material/Box';
4import Stack from '@mui/material/Stack';
5import Dialog from '@mui/material/Dialog';
6import TextField from '@mui/material/TextField';
7import Typography from '@mui/material/Typography';
8import InputAdornment from '@mui/material/InputAdornment';
9import ListItemButton, { listItemButtonClasses } from '@mui/material/ListItemButton';
10// types
11import { Customer } from 'mvpmasters-shared';
12// components
13import Iconify from 'src/components/iconify';
14import SearchNotFound from 'src/components/search-not-found';
15import { createFullAddress } from 'src/utils/create-full-address';
16
17// ----------------------------------------------------------------------
18
19type Props = {
20 title?: string;
21 list: Customer[];
22 action?: React.ReactNode;
23 //
24 open: boolean;
25 onClose: VoidFunction;
26 //
27 selected: (selectedId: string) => boolean;
28 onSelect: (address: Customer | null) => void;
29};
30
31export default function AddressListDialog({
32 title = 'Address Book',
33 list,
34 action,
35 //
36 open,
37 onClose,
38 //
39 selected,
40 onSelect,
41}: Props) {
42 const [searchCompany, setSearchCompany] = useState('');
43
44 const dataFiltered = applyFilter({
45 inputData: list,
46 query: searchCompany,
47 });
48
49 const notFound = !dataFiltered.length && !!searchCompany;
50
51 const handleSearchCompany = useCallback((event: React.ChangeEvent<HTMLInputElement>) => {
52 setSearchCompany(event.target.value);
53 }, []);
54
55 const handleSelectCompany = useCallback(
56 (company: Customer | null) => {
57 onSelect(company);
58 setSearchCompany('');
59 onClose();
60 },
61 [onClose, onSelect]
62 );
63
64 const renderList = (
65 <Stack
66 spacing={0.5}
67 sx={{
68 p: 0.5,
69 maxHeight: 80 * 8,
70 overflowX: 'hidden',
71 }}
72 >
73 {dataFiltered.map((company) => (
74 <Stack
75 key={company.id}
76 spacing={0.5}
77 component={ListItemButton}
78 selected={selected(`${company.id}`)}
79 onClick={() => handleSelectCompany(company)}
80 sx={{
81 py: 1,
82 px: 1.5,
83 borderRadius: 1,
84 flexDirection: 'column',
85 alignItems: 'flex-start',
86 [`&.${listItemButtonClasses.selected}`]: {
87 bgcolor: 'action.selected',
88 '&:hover': {
89 bgcolor: 'action.selected',
90 },
91 },
92 }}
93 >
94 <Stack direction="row" alignItems="center" spacing={1}>
95 <Typography variant="subtitle2">{company.name}</Typography>
96
97 {/* {address.primary && <Label color="info">Default</Label>} */}
98 {/* {<Label color="info">Default</Label>} */}
99 </Stack>
100
101 {company.name && (
102 <Box sx={{ color: 'primary.main', typography: 'caption' }}>{company.email}</Box>
103 )}
104
105 <Typography variant="body2" sx={{ color: 'text.secondary' }}>
106 {createFullAddress(company.address)}
107 </Typography>
108
109 {company.phoneNumber && (
110 <Typography variant="body2" sx={{ color: 'text.secondary' }}>
111 {company.phoneNumber}
112 </Typography>
113 )}
114 </Stack>
115 ))}
116 </Stack>
117 );
118
119 return (
120 <Dialog fullWidth maxWidth="xs" open={open} onClose={onClose}>
121 <Stack
122 direction="row"
123 alignItems="center"
124 justifyContent="space-between"
125 sx={{ p: 3, pr: 1.5 }}
126 >
127 <Typography variant="h6"> {title} </Typography>
128
129 {action && action}
130 </Stack>
131
132 <Stack sx={{ p: 2, pt: 0 }}>
133 <TextField
134 value={searchCompany}
135 onChange={handleSearchCompany}
136 placeholder="Search..."
137 InputProps={{
138 startAdornment: (
139 <InputAdornment position="start">
140 <Iconify icon="eva:search-fill" sx={{ color: 'text.disabled' }} />
141 </InputAdornment>
142 ),
143 }}
144 />
145 </Stack>
146
147 {notFound ? (
148 <SearchNotFound query={searchCompany} sx={{ px: 3, pt: 5, pb: 10 }} />
149 ) : (
150 renderList
151 )}
152 </Dialog>
153 );
154}
155
156// ----------------------------------------------------------------------
157
158function applyFilter({ inputData, query }: { inputData: Customer[]; query: string }) {
159 if (query) {
160 return inputData.filter(
161 (company) =>
162 company.name.toLowerCase().indexOf(query.toLowerCase()) !== -1 ||
163 createFullAddress(company.address).toLowerCase().indexOf(query.toLowerCase()) !== -1
164 );
165 }
166
167 return inputData;
168}
Note: See TracBrowser for help on using the repository browser.