|
@@ -1,7 +1,10 @@
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
import { makeStyles } from "@material-ui/core/styles";
|
|
|
|
+import { IconButton } from "@material-ui/core";
|
|
|
|
+import AudioFileIcon from '@mui/icons-material/AudioFile';
|
|
|
|
+import FileDownloadIcon from '@mui/icons-material/FileDownload';
|
|
|
|
+import { useState } from "react";
|
|
|
|
|
|
import { timeStamp } from '../../../../../../helpers'
|
|
import { timeStamp } from '../../../../../../helpers'
|
|
-import AudioPlayer from "../../Players/AudioPlayer";
|
|
|
|
|
|
|
|
const useStyles = makeStyles({
|
|
const useStyles = makeStyles({
|
|
container: {
|
|
container: {
|
|
@@ -11,40 +14,88 @@ const useStyles = makeStyles({
|
|
maxWidth: '80%',
|
|
maxWidth: '80%',
|
|
marginBottom:15
|
|
marginBottom:15
|
|
},
|
|
},
|
|
- playerWrapper: {
|
|
|
|
|
|
+ audioWrapper: {
|
|
position: 'relative',
|
|
position: 'relative',
|
|
- width: 300
|
|
|
|
- },
|
|
|
|
|
|
+ display: 'flex',
|
|
|
|
+ justifyContent: 'space-between',
|
|
|
|
+ alignContent: 'center',
|
|
|
|
+ alignItems: 'center',
|
|
|
|
+ maxWidth: 300,
|
|
|
|
+ padding: '5px 5px 10px 5px',
|
|
|
|
+ backgroundColor: '#ffffff',
|
|
|
|
+ borderRadius: 7,
|
|
|
|
+ "&: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"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ bntDownload: {
|
|
|
|
+ backgroundColor: '#ffffff',
|
|
|
|
+ color:'#54b0fc',
|
|
|
|
+ '&:hover': {
|
|
|
|
+ backgroundColor: '#54b0fc',
|
|
|
|
+ color:'#deffa9'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ title: {
|
|
|
|
+ margin: '0 30px 0 5px',
|
|
|
|
+ color: '#0e0d0d'
|
|
|
|
+ },
|
|
time: {
|
|
time: {
|
|
position: "absolute",
|
|
position: "absolute",
|
|
fontSize: ".65em",
|
|
fontSize: ".65em",
|
|
fontWeight:600,
|
|
fontWeight:600,
|
|
- bottom: -6,
|
|
|
|
|
|
+ bottom: -10,
|
|
right: -5,
|
|
right: -5,
|
|
color: '#ffffff',
|
|
color: '#ffffff',
|
|
backgroundColor: '#3a3a3a',
|
|
backgroundColor: '#3a3a3a',
|
|
padding: 3,
|
|
padding: 3,
|
|
- borderRadius:5
|
|
|
|
|
|
+ borderRadius: 5,
|
|
|
|
+ zIndex:10
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
+
|
|
interface IMessageLeftAudio {
|
|
interface IMessageLeftAudio {
|
|
audioUrl:string,
|
|
audioUrl:string,
|
|
updatedAt: string,
|
|
updatedAt: string,
|
|
- audio:any,
|
|
|
|
- setAudio: any,
|
|
|
|
- i:number
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-const MessageLeftAudio = ({ audioUrl,updatedAt,audio,setAudio,i }:IMessageLeftAudio) => {
|
|
|
|
|
|
+const MessageLeftAudio = ({ audioUrl,updatedAt }:IMessageLeftAudio) => {
|
|
const classes = useStyles();
|
|
const classes = useStyles();
|
|
|
|
+ const [change, setChange] = useState<boolean>(false)
|
|
|
|
+ const handleChange = () => setChange(!change)
|
|
|
|
|
|
return (
|
|
return (
|
|
<div className={classes.container}>
|
|
<div className={classes.container}>
|
|
- <div className={classes.playerWrapper}>
|
|
|
|
|
|
+ <div className={classes.audioWrapper} onMouseEnter={handleChange} onMouseLeave={handleChange}>
|
|
|
|
+ <AudioFileIcon fontSize='large' style={{ color:'#5f5f5f'}}/>
|
|
|
|
+ <span className={classes.title}>Audio File</span>
|
|
|
|
+ <a href={`http://localhost:3000/${audioUrl}`} target="_blank" rel="noreferrer">
|
|
|
|
+ <IconButton className={classes.bntDownload} >
|
|
|
|
+ <FileDownloadIcon fontSize='small'/>
|
|
|
|
+ </IconButton>
|
|
|
|
+ </a>
|
|
<div className={classes.time}>{timeStamp(updatedAt)}</div>
|
|
<div className={classes.time}>{timeStamp(updatedAt)}</div>
|
|
- <AudioPlayer audio={audio} setAudio={setAudio} i={i} src={`http://localhost:3000/${audioUrl}`}/>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)};
|
|
)};
|
|
|
|
|
|
-export default MessageLeftAudio
|
|
|
|
|
|
+export default MessageLeftAudio
|