index.tsx 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. import Button from '@mui/material/Button';
  2. import Avatar from '@mui/material/Avatar';
  3. import { makeStyles } from '@material-ui/core'
  4. import { useSelector } from 'react-redux';
  5. import { getChat } from '../../../../../../redux/chat/selector';
  6. import { firstLetter,slicedWord } from '../../../../../../helpers';
  7. const useStyles = makeStyles({
  8. modalDelete: {
  9. background: '#ffffff',
  10. position: 'absolute',
  11. content:'',
  12. width: '20%',
  13. height:'auto',
  14. left: '40%',
  15. bottom: '48.5%',
  16. borderRadius: 10,
  17. padding: 10,
  18. display: 'flex',
  19. flexDirection:'column'
  20. },
  21. overlay: {
  22. position: 'fixed',
  23. top: 0,
  24. left: 0,
  25. width: '100vw',
  26. height: '100vh',
  27. zIndex: 100,
  28. backgroundColor: 'rgba(104, 105, 104, 0.6)',
  29. overflowY: 'hidden',
  30. },
  31. titleWrapper: {
  32. display: 'flex',
  33. justifyContent: 'flex-start',
  34. alignContent: 'center',
  35. alignItems:'center'
  36. },
  37. })
  38. const DeleteModal = ({setModal}:{setModal:any}) => {
  39. const classes = useStyles()
  40. const {name,lastName,avatarUrl,color} = useSelector(getChat)
  41. const handleDeleteModal = (e: any) => {
  42. const id = e.target.id
  43. if (id === 'overlay' || id === 'cancel') return setModal(false)
  44. if (id === 'deleteForMeAnd') console.log('deleteForMeAnd')
  45. if (id === 'deleteForMe') console.log('deleteForMeAnd')
  46. }
  47. return (
  48. <div onClick={handleDeleteModal} className={classes.overlay} id='overlay'>
  49. <div className={classes.modalDelete}>
  50. <div className={classes.titleWrapper}>
  51. <Avatar alt={name} src={avatarUrl?`http://localhost:3000/${avatarUrl}`:undefined}
  52. sx={{ background: color, width: 38, height: 38,marginRight:2}}>
  53. {`${firstLetter(name)}${firstLetter(lastName)}`}
  54. </Avatar>
  55. <h3 style={{color: '#2c2c2c'}}>Delete chat</h3>
  56. </div>
  57. <p style={{color: '#050505'}}>{`Are you sure you want to delete the
  58. chat with ${`${firstLetter(name)}${slicedWord(name, 15, 1)}
  59. ${firstLetter(lastName)}${slicedWord(lastName, 15, 1)}`}?`}</p>
  60. <Button id='deleteForMeAnd' variant="text" color="error" style={{fontWeight:500,fontSize:18}}>
  61. {`DELETE FOR ME AND ${`${firstLetter(name)}${slicedWord(name, 15, 1)}
  62. ${firstLetter(lastName)}${slicedWord(lastName, 15, 1)}`}`}
  63. </Button>
  64. <Button id='deleteForMe' variant="text" color="error" style={{fontWeight:500,fontSize:18}}>
  65. DELETE FOR ME
  66. </Button>
  67. <Button id='cancel' variant="text" style={{fontWeight:500,fontSize:18}}>
  68. CANCEL
  69. </Button>
  70. </div>
  71. </div>
  72. )
  73. }
  74. export default DeleteModal