source: src/sections/client/view/customer-list-view.tsx@ 87c9f1e

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

update the seed script. update the prisma schema, use mapping

  • Property mode set to 100644
File size: 9.7 KB
Line 
1'use client';
2
3import isEqual from 'lodash/isEqual';
4import { useState, useCallback } from 'react';
5// @mui
6import { alpha } from '@mui/material/styles';
7import Tab from '@mui/material/Tab';
8import Tabs from '@mui/material/Tabs';
9import Card from '@mui/material/Card';
10import Table from '@mui/material/Table';
11import Button from '@mui/material/Button';
12import Container from '@mui/material/Container';
13import TableBody from '@mui/material/TableBody';
14import TableContainer from '@mui/material/TableContainer';
15// routes
16import { paths } from 'src/routes/paths';
17import { RouterLink } from 'src/routes/components';
18// hooks
19import { useBoolean } from 'src/hooks/use-boolean';
20// components
21import Label from 'src/components/label';
22import Iconify from 'src/components/iconify';
23import Scrollbar from 'src/components/scrollbar';
24import { useSettingsContext } from 'src/components/settings';
25import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
26import {
27 useTable,
28 getComparator,
29 emptyRows,
30 TableNoData,
31 TableEmptyRows,
32 TableHeadCustom,
33 TablePaginationCustom,
34} from 'src/components/table';
35// types
36import { Customer, CustomerTableFilters, CustomerTableFilterValue } from 'src/schemas';
37//
38import { useGetCustomers } from 'src/api/customer';
39import CustomerTableRow from '../customer-table-row';
40import CustomerTableFiltersResult from '../customer-table-filters-result';
41import { USER_STATUS_OPTIONS } from '../customer-quick-edit-form';
42
43// ----------------------------------------------------------------------
44
45const STATUS_OPTIONS = [{ value: 'all', label: 'All' }, ...USER_STATUS_OPTIONS];
46
47const TABLE_HEAD = [
48 { id: 'name', label: 'Name' },
49 { id: 'representative', label: 'Representative', width: 220 },
50 { id: 'email', label: 'Email' },
51 { id: 'status', label: 'Status', width: 100 },
52 { id: '', width: 88 },
53];
54
55const defaultFilters: CustomerTableFilters = {
56 name: '',
57 role: [],
58 status: 'all',
59};
60
61// ----------------------------------------------------------------------
62
63export default function CustomerListView() {
64 const table = useTable({ defaultDense: true, defaultRowsPerPage: 25 });
65
66 const settings = useSettingsContext();
67
68 // const router = useRouter();
69
70 const confirm = useBoolean();
71
72 const { customers } = useGetCustomers();
73
74 // const [tableData, setTableData] = useState(customers || []);
75
76 const [filters, setFilters] = useState(defaultFilters);
77
78 const dataFiltered = applyFilter({
79 inputData: customers,
80 comparator: getComparator(table.order, table.orderBy),
81 filters,
82 });
83
84 const dataInPage = dataFiltered.slice(
85 table.page * table.rowsPerPage,
86 table.page * table.rowsPerPage + table.rowsPerPage
87 );
88
89 const denseHeight = table.dense ? 52 : 72;
90
91 const canReset = !isEqual(defaultFilters, filters);
92
93 const notFound = (!dataFiltered.length && canReset) || !dataFiltered.length;
94
95 const handleFilters = useCallback(
96 (name: string, value: CustomerTableFilterValue) => {
97 table.onResetPage();
98 setFilters((prevState) => ({
99 ...prevState,
100 [name]: value,
101 }));
102 },
103 [table]
104 );
105
106 // const handleDeleteRow = useCallback(
107 // (id: string) => {
108 // const deleteRow = customers.filter((row) => row.id !== id);
109
110 // table.onUpdatePageDeleteRow(dataInPage.length);
111 // },
112 // [dataInPage.length, table]
113 // );
114
115 // const handleDeleteRows = useCallback(() => {
116 // const deleteRows = tableData.filter((row) => !table.selected.includes(row.id));
117 // setTableData(deleteRows);
118
119 // table.onUpdatePageDeleteRows({
120 // totalRows: tableData.length,
121 // totalRowsInPage: dataInPage.length,
122 // totalRowsFiltered: dataFiltered.length,
123 // });
124 // }, [dataFiltered.length, dataInPage.length, table, tableData]);
125
126 // const handleEditRow = useCallback(
127 // (id: string) => {
128 // router.push(paths.dashboard.user.edit(id));
129 // },
130 // [router]
131 // );
132
133 const handleFilterStatus = useCallback(
134 (event: React.SyntheticEvent, newValue: string) => {
135 handleFilters('status', newValue);
136 },
137 [handleFilters]
138 );
139
140 const handleResetFilters = useCallback(() => {
141 setFilters(defaultFilters);
142 }, []);
143
144 return (
145 <>
146 <Container maxWidth={settings.themeStretch ? false : 'lg'}>
147 <CustomBreadcrumbs
148 heading="List"
149 links={[
150 { name: 'Dashboard', href: paths.dashboard.root },
151 { name: 'Customer', href: paths.dashboard.customer.list },
152 { name: 'List' },
153 ]}
154 action={
155 <Button
156 component={RouterLink}
157 href={paths.dashboard.customer.new}
158 variant="contained"
159 startIcon={<Iconify icon="mingcute:add-line" />}
160 >
161 New Customer
162 </Button>
163 }
164 sx={{
165 mb: { xs: 3, md: 5 },
166 }}
167 />
168
169 <Card>
170 <Tabs
171 value={filters.status}
172 onChange={handleFilterStatus}
173 sx={{
174 px: 2.5,
175 boxShadow: (theme) => `inset 0 -2px 0 0 ${alpha(theme.palette.grey[500], 0.08)}`,
176 }}
177 >
178 {STATUS_OPTIONS.map((tab) => (
179 <Tab
180 key={tab.value}
181 iconPosition="end"
182 value={tab.value}
183 label={tab.label}
184 icon={
185 <Label
186 variant={
187 ((tab.value === 'all' || tab.value === filters.status) && 'filled') || 'soft'
188 }
189 color={
190 (tab.value === 'active' && 'success') ||
191 (tab.value === 'pending' && 'warning') ||
192 (tab.value === 'banned' && 'error') ||
193 'default'
194 }
195 >
196 {tab.value === 'all' && customers.length}
197
198 {tab.value === 'active' &&
199 customers.filter((customer) => customer.status === 'active').length}
200
201 {tab.value === 'banned' &&
202 customers.filter((customer) => customer.status === 'banned').length}
203
204 {tab.value === 'inactive' &&
205 customers.filter((customer) => customer.status === 'inactive').length}
206 </Label>
207 }
208 />
209 ))}
210 </Tabs>
211
212 {canReset && (
213 <CustomerTableFiltersResult
214 filters={filters}
215 onFilters={handleFilters}
216 //
217 onResetFilters={handleResetFilters}
218 //
219 results={dataFiltered.length}
220 sx={{ p: 2.5, pt: 0 }}
221 />
222 )}
223
224 <TableContainer sx={{ position: 'relative', overflow: 'unset' }}>
225 <Scrollbar>
226 <Table size={table.dense ? 'small' : 'medium'} sx={{ minWidth: 960 }}>
227 <TableHeadCustom
228 order={table.order}
229 orderBy={table.orderBy}
230 headLabel={TABLE_HEAD}
231 rowCount={customers.length}
232 numSelected={table.selected.length}
233 onSort={table.onSort}
234 />
235
236 <TableBody>
237 {dataFiltered
238 .slice(
239 table.page * table.rowsPerPage,
240 table.page * table.rowsPerPage + table.rowsPerPage
241 )
242 .map((row) => (
243 <CustomerTableRow
244 key={row.id}
245 row={row}
246 selected={table.selected.includes(row.id!)}
247 onEditRow={() => {}}
248 />
249 ))}
250
251 <TableEmptyRows
252 height={denseHeight}
253 emptyRows={emptyRows(table.page, table.rowsPerPage, customers.length)}
254 />
255
256 <TableNoData notFound={notFound} />
257 </TableBody>
258 </Table>
259 </Scrollbar>
260 </TableContainer>
261
262 <TablePaginationCustom
263 count={dataFiltered.length}
264 page={table.page}
265 rowsPerPage={table.rowsPerPage}
266 onPageChange={table.onChangePage}
267 onRowsPerPageChange={table.onChangeRowsPerPage}
268 //
269 dense={table.dense}
270 onChangeDense={table.onChangeDense}
271 />
272 </Card>
273 </Container>
274
275 {/* <ConfirmDialog
276 open={confirm.value}
277 onClose={confirm.onFalse}
278 title="Delete"
279 content={
280 <>
281 Are you sure want to delete <strong> {table.selected.length} </strong> items?
282 </>
283 }
284 action={
285 <Button
286 variant="contained"
287 color="error"
288 onClick={() => {
289 handleDeleteRows();
290 confirm.onFalse();
291 }}
292 >
293 Delete
294 </Button>
295 }
296 /> */}
297 </>
298 );
299}
300
301// ----------------------------------------------------------------------
302
303function applyFilter({
304 inputData,
305 comparator,
306 filters,
307}: {
308 inputData: Customer[];
309 comparator: (a: any, b: any) => number;
310 filters: CustomerTableFilters;
311}) {
312 const { name, status, role } = filters;
313
314 const stabilizedThis = inputData.map((el, index) => [el, index] as const);
315
316 stabilizedThis.sort((a, b) => {
317 const order = comparator(a[0], b[0]);
318 if (order !== 0) return order;
319 return a[1] - b[1];
320 });
321
322 inputData = stabilizedThis.map((el) => el[0]);
323
324 if (name) {
325 inputData = inputData.filter(
326 (user) => user.name.toLowerCase().indexOf(name.toLowerCase()) !== -1
327 );
328 }
329
330 if (status !== 'all') {
331 inputData = inputData.filter((user) => user.status === status);
332 }
333
334 return inputData;
335}
Note: See TracBrowser for help on using the repository browser.