|
@@ -1,11 +1,53 @@
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
|
|
+import { styled } from '@mui/material/styles';
|
|
|
|
+import { useState } from "react";
|
|
import { Carousel } from 'react-responsive-carousel';
|
|
import { Carousel } from 'react-responsive-carousel';
|
|
import { IconButton } from "@material-ui/core";
|
|
import { IconButton } from "@material-ui/core";
|
|
import ImageIcon from '@mui/icons-material/Image';
|
|
import ImageIcon from '@mui/icons-material/Image';
|
|
import FileDownloadIcon from '@mui/icons-material/FileDownload';
|
|
import FileDownloadIcon from '@mui/icons-material/FileDownload';
|
|
-import { useState } from "react";
|
|
|
|
-import { timeStampMessage, timeStampFilter,handleDownload } from '../../../../../../helpers'
|
|
|
|
|
|
+import Button from '@mui/material/Button';
|
|
|
|
+import ContentCopyIcon from '@mui/icons-material/ContentCopy';
|
|
|
|
+import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline';
|
|
|
|
+import Menu from '@mui/material/Menu';
|
|
|
|
+import MenuItem from '@mui/material/MenuItem';
|
|
|
|
+import { CopyToClipboard } from 'react-copy-to-clipboard';
|
|
|
|
+import { timeStampMessage, timeStampFilter,handleDownload,copied } from '../../../../../../helpers'
|
|
|
|
|
|
|
|
+const StyledMenu = styled((props:any) => (
|
|
|
|
+ <Menu
|
|
|
|
+ elevation={0}
|
|
|
|
+ anchorOrigin={{
|
|
|
|
+ vertical: 'top',
|
|
|
|
+ horizontal: 'left',
|
|
|
|
+ }}
|
|
|
|
+ transformOrigin={{
|
|
|
|
+ vertical: 'bottom',
|
|
|
|
+ horizontal: 'left',
|
|
|
|
+ }}
|
|
|
|
+ {...props}
|
|
|
|
+ />
|
|
|
|
+))(({ theme }:any) => ({
|
|
|
|
+ '& .MuiPaper-root': {
|
|
|
|
+ borderRadius: 10,
|
|
|
|
+ marginTop: theme.spacing(0),
|
|
|
|
+ minWidth: 220,
|
|
|
|
+ color:
|
|
|
|
+ theme.palette.mode === 'light' ? 'rgb(55, 65, 81)' : theme.palette.grey[500],
|
|
|
|
+ boxShadow:
|
|
|
|
+ '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',
|
|
|
|
+ '& .MuiMenu-list': {
|
|
|
|
+ padding: '4px 4px',
|
|
|
|
+ },
|
|
|
|
+ '& .MuiMenuItem-root': {
|
|
|
|
+ marginBottom: theme.spacing(1),
|
|
|
|
+ '& .MuiSvgIcon-root': {
|
|
|
|
+ fontSize: 21,
|
|
|
|
+ color: theme.palette.text.secondary,
|
|
|
|
+ marginRight: theme.spacing(2),
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+}));
|
|
|
|
|
|
const useStyles = makeStyles({
|
|
const useStyles = makeStyles({
|
|
container: {
|
|
container: {
|
|
@@ -46,6 +88,39 @@ const useStyles = makeStyles({
|
|
right: "-17px"
|
|
right: "-17px"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ wrapperActive: {
|
|
|
|
+ width: 400,
|
|
|
|
+ position: 'relative',
|
|
|
|
+ display: 'flex',
|
|
|
|
+ alignItems: 'center',
|
|
|
|
+ alignContent: 'center',
|
|
|
|
+ justifyContent: 'space-between',
|
|
|
|
+ borderRadius: 7,
|
|
|
|
+ padding: '12px 5px 12px 5px',
|
|
|
|
+ backgroundColor: '#ced8d7',
|
|
|
|
+ "&:after": {
|
|
|
|
+ content: "''",
|
|
|
|
+ position: "absolute",
|
|
|
|
+ width: "0",
|
|
|
|
+ height: "0",
|
|
|
|
+ borderBottom: "15px solid #ced8d7",
|
|
|
|
+ borderLeft: "15px solid transparent",
|
|
|
|
+ borderRight: "15px solid transparent",
|
|
|
|
+ bottom: "0",
|
|
|
|
+ right: "-15px"
|
|
|
|
+ },
|
|
|
|
+ "&:before": {
|
|
|
|
+ content: "''",
|
|
|
|
+ position: "absolute",
|
|
|
|
+ width: "0",
|
|
|
|
+ height: "0",
|
|
|
|
+ borderBottom: "17px solid #ced8d7",
|
|
|
|
+ borderLeft: "16px solid transparent",
|
|
|
|
+ borderRight: "16px solid transparent",
|
|
|
|
+ bottom: "0px",
|
|
|
|
+ right: "-17px"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
image: {
|
|
image: {
|
|
borderRadius: 7,
|
|
borderRadius: 7,
|
|
width: 300,
|
|
width: 300,
|
|
@@ -63,7 +138,7 @@ const useStyles = makeStyles({
|
|
borderRadius: 5,
|
|
borderRadius: 5,
|
|
},
|
|
},
|
|
bntDownload: {
|
|
bntDownload: {
|
|
- backgroundColor: '#deffa9',
|
|
|
|
|
|
+ backgroundColor: 'inherit',
|
|
color: '#54b0fc',
|
|
color: '#54b0fc',
|
|
width: 30,
|
|
width: 30,
|
|
height:30,
|
|
height:30,
|
|
@@ -71,7 +146,7 @@ const useStyles = makeStyles({
|
|
backgroundColor: '#54b0fc',
|
|
backgroundColor: '#54b0fc',
|
|
color:'#ffffff'
|
|
color:'#ffffff'
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ },
|
|
overlay: {
|
|
overlay: {
|
|
position: 'fixed',
|
|
position: 'fixed',
|
|
top: 0,
|
|
top: 0,
|
|
@@ -90,7 +165,30 @@ const useStyles = makeStyles({
|
|
top:'2%',
|
|
top:'2%',
|
|
width: '30%',
|
|
width: '30%',
|
|
height:'80%',
|
|
height:'80%',
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ modalDelete: {
|
|
|
|
+ background: '#ffffff',
|
|
|
|
+ position: 'absolute',
|
|
|
|
+ content:'',
|
|
|
|
+ width: '20%',
|
|
|
|
+ height:'auto',
|
|
|
|
+ left: '40%',
|
|
|
|
+ bottom: '48.5%',
|
|
|
|
+ borderRadius: 10,
|
|
|
|
+ padding: 10,
|
|
|
|
+ display: 'flex',
|
|
|
|
+ flexDirection:'column'
|
|
|
|
+ },
|
|
|
|
+ overlayDelete: {
|
|
|
|
+ position: 'fixed',
|
|
|
|
+ top: 0,
|
|
|
|
+ left: 0,
|
|
|
|
+ width: '100vw',
|
|
|
|
+ height: '100vh',
|
|
|
|
+ zIndex: 100,
|
|
|
|
+ backgroundColor: 'rgba(104, 105, 104, 0.6)',
|
|
|
|
+ overflowY: 'hidden',
|
|
|
|
+ },
|
|
});
|
|
});
|
|
|
|
|
|
interface IMessageRightImage {
|
|
interface IMessageRightImage {
|
|
@@ -105,8 +203,31 @@ interface IMessageRightImage {
|
|
const MessageRightImage = ({url,updatedAt,color,message,messages,fullType}:IMessageRightImage) => {
|
|
const MessageRightImage = ({url,updatedAt,color,message,messages,fullType}:IMessageRightImage) => {
|
|
const classes = useStyles();
|
|
const classes = useStyles();
|
|
const [watch, setWatch] = useState<boolean>(false)
|
|
const [watch, setWatch] = useState<boolean>(false)
|
|
|
|
+ const [anchorEl, setAnchorEl] = useState<any>(null);
|
|
|
|
+ const [selected, setSelected] = useState<boolean>(false);
|
|
|
|
+ const [modal,setModal] = useState<boolean>(false)
|
|
|
|
+ const open = Boolean(anchorEl);
|
|
const handleOpenWatch = () => !watch&&setWatch(true)
|
|
const handleOpenWatch = () => !watch&&setWatch(true)
|
|
const handleCloseWatch = (e:any) => e.target.id === 'overlay'&&watch&&setWatch(false)
|
|
const handleCloseWatch = (e:any) => e.target.id === 'overlay'&&watch&&setWatch(false)
|
|
|
|
+ const handleClose = (type: string | undefined): void => {
|
|
|
|
+ if (type === 'copy') copied('Link')
|
|
|
|
+ if (type === 'delete') setModal(true)
|
|
|
|
+ setAnchorEl(null)
|
|
|
|
+ setSelected(false)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ const handleDeleteModal = (e: any) => {
|
|
|
|
+ const id = e.target.id
|
|
|
|
+ if (id === 'overlay' || id === 'cancel') return setModal(false)
|
|
|
|
+ if (id === 'delete') {
|
|
|
|
+ setModal(false)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ const handleContextMenu = (e: React.MouseEvent<HTMLDivElement>):void => {
|
|
|
|
+ e.preventDefault()
|
|
|
|
+ setAnchorEl(e.currentTarget)
|
|
|
|
+ setSelected(true)
|
|
|
|
+ }
|
|
return (watch ?
|
|
return (watch ?
|
|
<div onClick={handleCloseWatch} id='overlay' className={classes.overlay}>
|
|
<div onClick={handleCloseWatch} id='overlay' className={classes.overlay}>
|
|
<Carousel className={classes.carousel}>
|
|
<Carousel className={classes.carousel}>
|
|
@@ -126,14 +247,41 @@ const MessageRightImage = ({url,updatedAt,color,message,messages,fullType}:IMess
|
|
</Carousel>
|
|
</Carousel>
|
|
</div> :
|
|
</div> :
|
|
<div className={classes.container}>
|
|
<div className={classes.container}>
|
|
- <div className={classes.wrapper}>
|
|
|
|
|
|
+ <div onContextMenu={(e) => handleContextMenu(e)}
|
|
|
|
+ className={selected? classes.wrapperActive:classes.wrapper}>
|
|
<ImageIcon fontSize='large' style={{ color: '#bd9a00' }} />
|
|
<ImageIcon fontSize='large' style={{ color: '#bd9a00' }} />
|
|
<img onClick={handleOpenWatch} className={classes.image} alt='message pic' src={url}
|
|
<img onClick={handleOpenWatch} className={classes.image} alt='message pic' src={url}
|
|
style={{ backgroundColor: url ? '' : color }} width='300' height='400' />
|
|
style={{ backgroundColor: url ? '' : color }} width='300' height='400' />
|
|
- <IconButton onClick={() => handleDownload(url, fullType)} className={classes.bntDownload} >
|
|
|
|
|
|
+ <IconButton onClick={() => handleDownload(url, fullType)} className={classes.bntDownload}>
|
|
<FileDownloadIcon fontSize='medium'/>
|
|
<FileDownloadIcon fontSize='medium'/>
|
|
</IconButton>
|
|
</IconButton>
|
|
<div className={classes.time}>{timeStampMessage(updatedAt)}</div>
|
|
<div className={classes.time}>{timeStampMessage(updatedAt)}</div>
|
|
|
|
+ <StyledMenu id="demo-positioned-menu" aria-labelledby="demo-positioned-button"
|
|
|
|
+ anchorEl={anchorEl} open={open} onClose={handleClose}>
|
|
|
|
+ <CopyToClipboard onCopy={() => handleClose('copy')} text={url}>
|
|
|
|
+ <MenuItem>
|
|
|
|
+ <ContentCopyIcon />
|
|
|
|
+ Copy Image link
|
|
|
|
+ </MenuItem>
|
|
|
|
+ </CopyToClipboard>
|
|
|
|
+ <MenuItem style={{color:'#f02a2a'}} onClick={() => handleClose('delete')}>
|
|
|
|
+ <DeleteOutlineIcon style={{color:'#f02a2a'}}/>
|
|
|
|
+ Delete message
|
|
|
|
+ </MenuItem>
|
|
|
|
+ </StyledMenu>
|
|
|
|
+ {modal &&
|
|
|
|
+ <div onClick={handleDeleteModal} className={classes.overlayDelete} id='overlay'>
|
|
|
|
+ <div className={classes.modalDelete}>
|
|
|
|
+ <h3 style={{color: '#2c2c2c'}}>Delete message</h3>
|
|
|
|
+ <p style={{ color: '#050505' }}>Are you sure you want to delete message?</p>
|
|
|
|
+ <Button id='delete' variant="text" color="error" style={{fontWeight:500,fontSize:22}}>
|
|
|
|
+ DELETE MESSAGE
|
|
|
|
+ </Button>
|
|
|
|
+ <Button id='cancel' variant="text" style={{fontWeight:500,fontSize:22}}>
|
|
|
|
+ CANCEL
|
|
|
|
+ </Button>
|
|
|
|
+ </div>
|
|
|
|
+ </div>}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)};
|
|
)};
|