1 | 'use client';
|
---|
2 |
|
---|
3 | import isEqual from 'lodash/isEqual';
|
---|
4 | import { useState, useCallback } from 'react';
|
---|
5 | // @mui
|
---|
6 | import { alpha } from '@mui/material/styles';
|
---|
7 | import Tab from '@mui/material/Tab';
|
---|
8 | import Tabs from '@mui/material/Tabs';
|
---|
9 | import Card from '@mui/material/Card';
|
---|
10 | import Table from '@mui/material/Table';
|
---|
11 | import Button from '@mui/material/Button';
|
---|
12 | import Container from '@mui/material/Container';
|
---|
13 | import TableBody from '@mui/material/TableBody';
|
---|
14 | import TableContainer from '@mui/material/TableContainer';
|
---|
15 | // routes
|
---|
16 | import { paths } from 'src/routes/paths';
|
---|
17 | import { RouterLink } from 'src/routes/components';
|
---|
18 | // hooks
|
---|
19 | import { useBoolean } from 'src/hooks/use-boolean';
|
---|
20 | // components
|
---|
21 | import Label from 'src/components/label';
|
---|
22 | import Iconify from 'src/components/iconify';
|
---|
23 | import Scrollbar from 'src/components/scrollbar';
|
---|
24 | import { useSettingsContext } from 'src/components/settings';
|
---|
25 | import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
|
---|
26 | import {
|
---|
27 | useTable,
|
---|
28 | getComparator,
|
---|
29 | emptyRows,
|
---|
30 | TableNoData,
|
---|
31 | TableEmptyRows,
|
---|
32 | TableHeadCustom,
|
---|
33 | TablePaginationCustom,
|
---|
34 | } from 'src/components/table';
|
---|
35 | // types
|
---|
36 | import { Customer, CustomerTableFilters, CustomerTableFilterValue } from 'src/schemas';
|
---|
37 | //
|
---|
38 | import { useGetCustomers } from 'src/api/customer';
|
---|
39 | import CustomerTableRow from '../customer-table-row';
|
---|
40 | import CustomerTableFiltersResult from '../customer-table-filters-result';
|
---|
41 | import { USER_STATUS_OPTIONS } from '../customer-quick-edit-form';
|
---|
42 |
|
---|
43 | // ----------------------------------------------------------------------
|
---|
44 |
|
---|
45 | const STATUS_OPTIONS = [{ value: 'all', label: 'All' }, ...USER_STATUS_OPTIONS];
|
---|
46 |
|
---|
47 | const 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 |
|
---|
55 | const defaultFilters: CustomerTableFilters = {
|
---|
56 | name: '',
|
---|
57 | role: [],
|
---|
58 | status: 'all',
|
---|
59 | };
|
---|
60 |
|
---|
61 | // ----------------------------------------------------------------------
|
---|
62 |
|
---|
63 | export 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 |
|
---|
303 | function 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 | }
|
---|