index.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. import { makeStyles } from '@material-ui/core'
  2. import { useState } from 'react';
  3. import { useDispatch } from 'react-redux';
  4. import { styled } from '@mui/material/styles';
  5. import Menu from '@mui/material/Menu';
  6. import MenuItem from '@mui/material/MenuItem';
  7. import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline';
  8. import ListItemButton from '@mui/material/ListItemButton';
  9. import Avatar from '@mui/material/Avatar';
  10. import ListItemText from '@mui/material/ListItemText';
  11. import ListItemIcon from '@mui/material/ListItemIcon';
  12. import ContentCopyIcon from '@mui/icons-material/ContentCopy';
  13. import { CopyToClipboard } from 'react-copy-to-clipboard';
  14. import {removeContact } from '../../../../../api-data';
  15. import { actionIsOpen } from '../../../../../redux/control/action';
  16. import { TContact } from '../../../../../typescript/redux/contacts/types';
  17. import { TIsOpen } from '../../../../../typescript/redux/control/types';
  18. import { firstLetter,slicedWord,timeStampEU,copied } from '../../../../../helpers';
  19. const StyledMenu = styled((props:any) => (
  20. <Menu
  21. elevation={0}
  22. anchorOrigin={{
  23. vertical: 'top',
  24. horizontal: 'right',
  25. }}
  26. transformOrigin={{
  27. vertical: 'bottom',
  28. horizontal: 'right',
  29. }}
  30. {...props}
  31. />
  32. ))(({ theme }:any) => ({
  33. '& .MuiPaper-root': {
  34. borderRadius: 10,
  35. marginTop: theme.spacing(0),
  36. minWidth: 220,
  37. color:
  38. theme.palette.mode === 'light' ? 'rgb(55, 65, 81)' : theme.palette.grey[500],
  39. boxShadow:
  40. 'rgb(255, 255, 255) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px',
  41. '& .MuiMenu-list': {
  42. padding: '14px 14px',
  43. },
  44. '& .MuiMenuItem-root': {
  45. marginBottom: theme.spacing(1),
  46. '& .MuiSvgIcon-root': {
  47. fontSize: 21,
  48. color: theme.palette.text.secondary,
  49. marginRight: theme.spacing(4),
  50. }
  51. },
  52. },
  53. }));
  54. const useStyles = makeStyles({
  55. listItem_iconAvatar: {
  56. marginRight:10
  57. },
  58. })
  59. interface IContactItem {
  60. contact: TContact,
  61. selectedIndex: null | number,
  62. setSelectedIndex: (i: null | number) => void,
  63. i: number,
  64. handleListItemClick: (companionId: string) => void,
  65. isOpen: TIsOpen,
  66. }
  67. const ContactItem = ({contact,selectedIndex,setSelectedIndex,i,handleListItemClick,isOpen}:IContactItem) => {
  68. const classes = useStyles()
  69. const dispatch = useDispatch()
  70. const [anchorEl, setAnchorEl] = useState<any>(null);
  71. const open = Boolean(anchorEl);
  72. const { name, lastName, avatarUrl, color, companionId,createdAt, number,_id } = contact
  73. const handleClose = (type: string | undefined): void => {
  74. if (type === 'copy') copied('Number')
  75. if (type === 'delete') {
  76. removeContact(_id)
  77. isOpen === 'edit'&&dispatch(actionIsOpen('credentials'))
  78. }
  79. setAnchorEl(null)
  80. setSelectedIndex(null)
  81. }
  82. const handleContextMenu = (e: React.MouseEvent<HTMLDivElement>,i: number):void => {
  83. e.preventDefault()
  84. setAnchorEl(e.currentTarget)
  85. setSelectedIndex(i)
  86. }
  87. return (
  88. <div>
  89. <ListItemButton
  90. selected={selectedIndex === i}
  91. onClick={() => handleListItemClick(companionId)}
  92. onContextMenu={(e) => handleContextMenu(e, i)}
  93. >
  94. <ListItemIcon className={classes.listItem_iconAvatar}>
  95. <Avatar alt={name} src={avatarUrl?`http://localhost:3000/${avatarUrl}`:undefined}
  96. sx={{ background: color, width: 54, height: 54 }}>
  97. {!avatarUrl&&`${firstLetter(name)}${firstLetter(lastName)}`}
  98. </Avatar>
  99. </ListItemIcon>
  100. <ListItemText primary={`${firstLetter(name)}${slicedWord(name, 15, 1)}
  101. ${firstLetter(lastName)}${slicedWord(lastName, 15, 1)}`}
  102. secondary={`Registered since ${timeStampEU(createdAt)}`} />
  103. </ListItemButton>
  104. <StyledMenu
  105. id="demo-positioned-menu"
  106. aria-labelledby="demo-positioned-button"
  107. anchorEl={anchorEl}
  108. open={open}
  109. onClose={handleClose}
  110. >
  111. <CopyToClipboard onCopy={() => handleClose('copy')} text={number}>
  112. <MenuItem>
  113. <ContentCopyIcon />
  114. Copy number
  115. </MenuItem>
  116. </CopyToClipboard>
  117. <MenuItem style={{color:'#f02a2a'}} onClick={() => handleClose('delete')}>
  118. <DeleteOutlineIcon style={{color:'#f02a2a'}}/>
  119. Delete contact
  120. </MenuItem>
  121. </StyledMenu>
  122. </div>
  123. );
  124. }
  125. export default ContactItem