source: src/sections/client/customer-table-row.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: 3.0 KB
Line 
1// @mui
2import Avatar from '@mui/material/Avatar';
3import Tooltip from '@mui/material/Tooltip';
4import MenuItem from '@mui/material/MenuItem';
5import TableRow from '@mui/material/TableRow';
6import TableCell from '@mui/material/TableCell';
7import IconButton from '@mui/material/IconButton';
8// hooks
9import { useBoolean } from 'src/hooks/use-boolean';
10// types
11import { Customer } from 'src/schemas';
12// components
13import Label from 'src/components/label';
14import Iconify from 'src/components/iconify';
15import CustomPopover, { usePopover } from 'src/components/custom-popover';
16//
17import CustomerQuickEditForm from './customer-quick-edit-form';
18
19// ----------------------------------------------------------------------
20
21type Props = {
22 selected: boolean;
23 onEditRow: VoidFunction;
24 row: Customer;
25};
26
27export 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}
Note: See TracBrowser for help on using the repository browser.