index.tsx 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. import { makeStyles } from "@material-ui/core/styles";
  2. import { Carousel } from 'react-responsive-carousel';
  3. import { IconButton } from "@material-ui/core";
  4. import ImageIcon from '@mui/icons-material/Image';
  5. import FileDownloadIcon from '@mui/icons-material/FileDownload';
  6. import { useState } from "react";
  7. import { timeStampMessage, timeStampFilter,handleDownload } from '../../../../../../helpers'
  8. const useStyles = makeStyles({
  9. container: {
  10. display: "flex",
  11. justifyContent: "flex-start",
  12. width:'auto',
  13. maxWidth: '80%',
  14. marginBottom:15
  15. },
  16. wrapper: {
  17. width: 400,
  18. position: 'relative',
  19. display: 'flex',
  20. alignItems: 'center',
  21. alignContent: 'center',
  22. justifyContent: 'space-between',
  23. borderRadius: 7,
  24. padding: '12px 5px 12px 5px',
  25. backgroundColor: '#ffffff',
  26. "&:after": {
  27. content: "''",
  28. position: "absolute",
  29. width: "0",
  30. height: "0",
  31. borderBottom: "15px solid #ffffff",
  32. borderLeft: "15px solid transparent",
  33. borderRight: "15px solid transparent",
  34. bottom: '0px',
  35. left: "-15px"
  36. },
  37. "&:before": {
  38. content: "''",
  39. position: "absolute",
  40. width: "0",
  41. height: "0",
  42. borderBottom: "17px solid #ffffff",
  43. borderLeft: "16px solid transparent",
  44. borderRight: "16px solid transparent",
  45. bottom: "0px",
  46. left: "-17px"
  47. }
  48. },
  49. image: {
  50. borderRadius: 7,
  51. width: 300,
  52. maxHeight: 400,
  53. cursor: 'pointer',
  54. },
  55. time: {
  56. position: "absolute",
  57. fontSize: ".65em",
  58. fontWeight:600,
  59. bottom: 0,
  60. right: 6,
  61. color: '#414141',
  62. padding: 3,
  63. borderRadius: 5,
  64. },
  65. bntDownload: {
  66. backgroundColor: '#ffffff',
  67. color: '#54b0fc',
  68. width: 30,
  69. height:30,
  70. '&:hover': {
  71. backgroundColor: '#54b0fc',
  72. color:'#ffffff'
  73. }
  74. },
  75. overlay: {
  76. position: 'fixed',
  77. top: 0,
  78. left: 0,
  79. width: '100vw',
  80. height: '100vh',
  81. zIndex: 100,
  82. backgroundColor: 'rgba(104, 105, 104, 0.6)',
  83. border: 'solid 1px rgba(179, 179, 179, 0.6)',
  84. overflowY: 'hidden',
  85. boxSizing: 'border-box',
  86. display: 'flex',
  87. justifyContent: 'center',
  88. alignContent: 'center',
  89. alignItems: 'center'
  90. },
  91. carousel: {
  92. width:'40%'
  93. }
  94. });
  95. interface IMessagesLeftImage {
  96. url:string,
  97. updatedAt:string,
  98. color: string,
  99. message: string,
  100. messages: any,
  101. fullType:string
  102. }
  103. const MessagesLeftImage = ({url,updatedAt,color,message,messages,fullType}:IMessagesLeftImage) => {
  104. const classes = useStyles();
  105. const [watch, setWatch] = useState<boolean>(false)
  106. const handleOpenWatch = () => !watch&&setWatch(true)
  107. const handleCloseWatch = (e:any) => e.target.id === 'overlay'&&watch&&setWatch(false)
  108. return (watch ?
  109. <div onClick={handleCloseWatch} id='overlay' className={classes.overlay}>
  110. <Carousel className={classes.carousel}>
  111. {[...messages].reduce((acc, el) => {
  112. if (el.type === 'image' && el.message !== message) {
  113. acc.push(el)
  114. return acc
  115. } else if (el.type === 'image') {
  116. acc.unshift(el)
  117. return acc
  118. }
  119. return acc
  120. },[]).map((el:any) => <div>
  121. <img alt='pic' src={`http://localhost:3000/${el.message}`}/>
  122. <p className="legend">{timeStampFilter(el.updatedAt)}</p>
  123. </div>)}
  124. </Carousel>
  125. </div> :
  126. <div className={classes.container}>
  127. <div className={classes.wrapper}>
  128. <ImageIcon fontSize='large' style={{ color: '#bd9a00' }} />
  129. <img onClick={handleOpenWatch} className={classes.image} alt='message pic' src={url}
  130. style={{ backgroundColor: url ? '' : color }} width='300' height='400' />
  131. <IconButton onClick={() => handleDownload(url, fullType)} className={classes.bntDownload} >
  132. <FileDownloadIcon fontSize='medium'/>
  133. </IconButton>
  134. <div className={classes.time}>{timeStampMessage(updatedAt)}</div>
  135. </div>
  136. </div>
  137. )};
  138. export default MessagesLeftImage