1 | // @mui
|
---|
2 | import Avatar from '@mui/material/Avatar';
|
---|
3 | import Tooltip from '@mui/material/Tooltip';
|
---|
4 | import MenuItem from '@mui/material/MenuItem';
|
---|
5 | import TableRow from '@mui/material/TableRow';
|
---|
6 | import TableCell from '@mui/material/TableCell';
|
---|
7 | import IconButton from '@mui/material/IconButton';
|
---|
8 | // hooks
|
---|
9 | import { useBoolean } from 'src/hooks/use-boolean';
|
---|
10 | // types
|
---|
11 | import { Customer } from 'mvpmasters-shared';
|
---|
12 | // components
|
---|
13 | import Label from 'src/components/label';
|
---|
14 | import Iconify from 'src/components/iconify';
|
---|
15 | import CustomPopover, { usePopover } from 'src/components/custom-popover';
|
---|
16 | //
|
---|
17 | import CustomerQuickEditForm from './customer-quick-edit-form';
|
---|
18 |
|
---|
19 | // ----------------------------------------------------------------------
|
---|
20 |
|
---|
21 | type Props = {
|
---|
22 | selected: boolean;
|
---|
23 | onEditRow: VoidFunction;
|
---|
24 | row: Customer;
|
---|
25 | };
|
---|
26 |
|
---|
27 | export default function CustomerTableRow({ row, selected, onEditRow }: Props) {
|
---|
28 | const { name, logoUrl, representative, status, email, phoneNumber } = row;
|
---|
29 |
|
---|
30 | // const confirm = useBoolean();
|
---|
31 |
|
---|
32 | const quickEdit = useBoolean();
|
---|
33 |
|
---|
34 | // const popover = usePopover();
|
---|
35 |
|
---|
36 | return (
|
---|
37 | <>
|
---|
38 | <TableRow hover selected={selected}>
|
---|
39 | {/* <TableCell padding="checkbox">
|
---|
40 | <Checkbox checked={selected} onClick={onSelectRow} />
|
---|
41 | </TableCell> */}
|
---|
42 |
|
---|
43 | <TableCell sx={{ display: 'flex', alignItems: 'center' }}>
|
---|
44 | <Avatar alt={name} src={logoUrl} sx={{ mr: 2 }} />
|
---|
45 | <span>{name}</span>
|
---|
46 | </TableCell>
|
---|
47 |
|
---|
48 | <TableCell sx={{ whiteSpace: 'nowrap' }}>{representative}</TableCell>
|
---|
49 |
|
---|
50 | <TableCell sx={{ whiteSpace: 'nowrap' }}>{email}</TableCell>
|
---|
51 |
|
---|
52 | <TableCell>
|
---|
53 | <Label
|
---|
54 | variant="soft"
|
---|
55 | color={
|
---|
56 | (status === 'active' && 'success') ||
|
---|
57 | (status === 'inactive' && 'warning') ||
|
---|
58 | (status === 'banned' && 'error') ||
|
---|
59 | 'default'
|
---|
60 | }
|
---|
61 | >
|
---|
62 | {status}
|
---|
63 | </Label>
|
---|
64 | </TableCell>
|
---|
65 |
|
---|
66 | <TableCell align="right" sx={{ px: 1, whiteSpace: 'nowrap' }}>
|
---|
67 | <Tooltip title="Quick Edit" placement="top" arrow>
|
---|
68 | <IconButton color={quickEdit.value ? 'inherit' : 'default'} onClick={quickEdit.onTrue}>
|
---|
69 | <Iconify icon="solar:pen-bold" />
|
---|
70 | </IconButton>
|
---|
71 | </Tooltip>
|
---|
72 | {/*
|
---|
73 | <IconButton color={popover.open ? 'inherit' : 'default'} onClick={popover.onOpen}>
|
---|
74 | <Iconify icon="eva:more-vertical-fill" />
|
---|
75 | </IconButton> */}
|
---|
76 | </TableCell>
|
---|
77 | </TableRow>
|
---|
78 |
|
---|
79 | <CustomerQuickEditForm
|
---|
80 | currentCustomer={row}
|
---|
81 | open={quickEdit.value}
|
---|
82 | onClose={quickEdit.onFalse}
|
---|
83 | />
|
---|
84 |
|
---|
85 | {/* <CustomPopover
|
---|
86 | open={popover.open}
|
---|
87 | onClose={popover.onClose}
|
---|
88 | arrow="right-top"
|
---|
89 | sx={{ width: 140 }}
|
---|
90 | >
|
---|
91 | <MenuItem
|
---|
92 | onClick={() => {
|
---|
93 | onEditRow();
|
---|
94 | popover.onClose();
|
---|
95 | }}
|
---|
96 | >
|
---|
97 | <Iconify icon="solar:pen-bold" />
|
---|
98 | Edit
|
---|
99 | </MenuItem>
|
---|
100 | </CustomPopover> */}
|
---|
101 | </>
|
---|
102 | );
|
---|
103 | }
|
---|