import { makeStyles } from "@material-ui/core/styles"; import { Carousel } from 'react-responsive-carousel'; import { IconButton } from "@material-ui/core"; import ImageIcon from '@mui/icons-material/Image'; import FileDownloadIcon from '@mui/icons-material/FileDownload'; import { useState } from "react"; import { timeStampMessage, timeStampFilter,handleDownload } from '../../../../../../helpers' const useStyles = makeStyles({ container: { display: "flex", justifyContent: "flex-start", width:'auto', maxWidth: '80%', marginBottom:15 }, wrapper: { width: 400, position: 'relative', display: 'flex', alignItems: 'center', alignContent: 'center', justifyContent: 'space-between', borderRadius: 7, padding: '12px 5px 12px 5px', backgroundColor: '#ffffff', "&:after": { content: "''", position: "absolute", width: "0", height: "0", borderBottom: "15px solid #ffffff", borderLeft: "15px solid transparent", borderRight: "15px solid transparent", bottom: '0px', left: "-15px" }, "&:before": { content: "''", position: "absolute", width: "0", height: "0", borderBottom: "17px solid #ffffff", borderLeft: "16px solid transparent", borderRight: "16px solid transparent", bottom: "0px", left: "-17px" } }, image: { borderRadius: 7, width: 300, maxHeight: 400, cursor: 'pointer', }, time: { position: "absolute", fontSize: ".65em", fontWeight:600, bottom: 0, right: 6, color: '#414141', padding: 3, borderRadius: 5, }, bntDownload: { backgroundColor: '#ffffff', color: '#54b0fc', width: 30, height:30, '&:hover': { backgroundColor: '#54b0fc', color:'#ffffff' } }, overlay: { position: 'fixed', top: 0, left: 0, width: '100vw', height: '100vh', zIndex: 100, backgroundColor: 'rgba(104, 105, 104, 0.6)', border: 'solid 1px rgba(179, 179, 179, 0.6)', overflowY: 'hidden', boxSizing: 'border-box', display: 'flex', justifyContent: 'center', alignContent: 'center', alignItems: 'center' }, carousel: { width:'40%' } }); interface IMessagesLeftImage { url:string, updatedAt:string, color: string, message: string, messages: any, fullType:string } const MessagesLeftImage = ({url,updatedAt,color,message,messages,fullType}:IMessagesLeftImage) => { const classes = useStyles(); const [watch, setWatch] = useState(false) const handleOpenWatch = () => !watch&&setWatch(true) const handleCloseWatch = (e:any) => e.target.id === 'overlay'&&watch&&setWatch(false) return (watch ?
{[...messages].reduce((acc, el) => { if (el.type === 'image' && el.message !== message) { acc.push(el) return acc } else if (el.type === 'image') { acc.unshift(el) return acc } return acc },[]).map((el:any) =>
pic

{timeStampFilter(el.updatedAt)}

)}
:
message pic handleDownload(url, fullType)} className={classes.bntDownload} >
{timeStampMessage(updatedAt)}
)}; export default MessagesLeftImage