123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- import List from '@mui/material/List';
- import ListItemButton from '@mui/material/ListItemButton';
- import Avatar from '@mui/material/Avatar';
- import ListItemText from '@mui/material/ListItemText';
- import ListItemIcon from '@mui/material/ListItemIcon';
- import { styled } from '@mui/material/styles';
- import Badge from '@mui/material/Badge';
- import VolumeOffIcon from '@mui/icons-material/VolumeOff';
- import { makeStyles, Typography } from '@material-ui/core'
- import { useState,useEffect,useRef } from 'react';
- import { useSelector, useDispatch } from 'react-redux';
- import AlertInfo from '../../../reusableComponents/AlertInfo'
- import DoneAllIcon from '@mui/icons-material/DoneAll';
- import { firstLetter, slicedWord, timeStampEU,notification,playNotificationWithoutPermission } from '../../../../helpers'
- import { getState } from '../../../../redux/chats/selector'
- import { getChatMemo } from '../../../../redux/chat/selector'
- import { asyncGetChats } from '../../../../redux/chats/operations'
- import { asyncStartChatById } from '../../../../redux/chat/operations'
- import { actionRemoveChat } from '../../../../redux/chat/action'
- import { actionScroll } from '../../../../redux/control/action'
- const StyledBadge = styled(Badge)(({ theme }) => ({
- '& .MuiBadge-badge': {
- backgroundColor: '#44b700',
- color: '#44b700',
- boxShadow: `0 0 0 2px ${theme.palette.background.paper}`,
- '&::after': {
- position: 'absolute',
- top: 0,
- left: 0,
- width: '100%',
- height: '100%',
- borderRadius: '50%',
- animation: 'ripple 1.2s infinite ease-in-out',
- border: '1px solid currentColor',
- content: '""',
- },
- },
- '@keyframes ripple': {
- '0%': {
- transform: 'scale(.8)',
- opacity: 1,
- },
- '100%': {
- transform: 'scale(2.4)',
- opacity: 0,
- },
- },
- }));
- const useStyles = makeStyles({
- list: {
- width: '100%',
- maxHeight: '890px',
- overflowY: 'scroll',
- '&::-webkit-scrollbar': {
- width: '0.4em'
- },
- '&::-webkit-scrollbar-track': {
- boxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
- webkitBoxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
- backgroundColor: '#eceeec',
- },
- '&::-webkit-scrollbar-thumb': {
- backgroundColor: '#ccc8c8',
- },
- "&::-webkit-scrollbar-thumb:focus": {
- backgroundColor: "#959595",
- },
- "&::-webkit-scrollbar-thumb:active": {
- backgroundColor: "#959595",
- },
- },
- listItemInnerText: {
- display: 'flex',
- alignContent: 'center',
- alignItems: 'center',
- flexWrap: 'nowrap',
- },
- listItemInnerText__icon: {
- marginLeft: 5,
- color: '#959595',
- },
- listItem_iconAvatar: {
- marginRight:10
- },
- listItem_iconRight: {
- marginRight: 10,
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- alignContent: 'center',
- flexDirection: 'column'
- },
- listItem_iconTimeChecked: {
- display: 'flex',
- flexWrap: 'nowrap',
- alignItems: 'center',
- justifyContent: 'center',
- alignContent: 'center',
- marginBottom:2
- },
- listItem_iconRightBtn: {
- background: '#0ac40a',
- borderRadius: '50%',
- color: '#ffffff',
- border: 'none',
- height: 24,
- width: 24,
- textAlign: 'center',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- alignContent: 'center',
- fontSize: 12,
- marginLeft: 'auto',
- '&:hover': {
- outline: 'solid 3px #3ee415',
- }
- },
- listItem_iconRightBtnMute: {
- background: '#a7aaa7',
- borderRadius: '50%',
- color: '#ffffff',
- border: 'none',
- height: 24,
- width: 24,
- textAlign: 'center',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- alignContent: 'center',
- fontSize: 12,
- marginLeft: 'auto',
- '&:hover': {
- outline: 'solid 3px #cccbcb',
- }
- },
- listItem_iconRightBtnHidden: {
- background: 'inherit',
- borderRadius: '50%',
- border: 'none',
- height: 24,
- width: 24,
- textAlign: 'center',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- alignContent: 'center',
- fontSize: 12,
- marginLeft: 'auto',
- },
- listItem_icon_time: {
- fontSize: 12,
- marginLeft: 5,
- color: '#1b1b1b'
- },
- listItem_typing: {
- color: '#4d4d4d',
- animation: 'ripple 4s infinite ease-in-out',
- },
- listItem_dots: {
- color: '#1b1b1b',
- fontWeight: 'bold',
- display:'inline-block',
- fontFamily: 'monospace',
- clipPath: 'inset(0 3ch 0 0)',
- animation: `$run 2s steps(5) infinite`,
- },
- '@keyframes run': {
- to: {
- clipPath: 'inset(0 -1ch 0 0)'
- },
- },
- })
- const ChatsList = () => {
- const classes = useStyles()
- const dispatch = useDispatch()
- const ref = useRef<any>(null)
- const [selectedIndex, setSelectedIndex] = useState<number>(1);
- const { total, chats } = useSelector(getState)
- const chat = useSelector(getChatMemo)
- const handleListItemClick = (i: number, companionId: string) => {
- dispatch(asyncStartChatById(companionId))
- dispatch(actionScroll(false))
- setSelectedIndex(i);
- }
- const handleNewMsgs = (e: React.MouseEvent<HTMLButtonElement, MouseEvent>, i: number,companionId: string) => {
- e.stopPropagation()
- dispatch(asyncStartChatById(companionId))
- dispatch(actionScroll(true))
- }
- useEffect(() => {
- dispatch(asyncGetChats())
- const handleReset = () => dispatch(asyncGetChats())
- const idInterval = setInterval(handleReset, 3000);
- return () => clearInterval(idInterval);
- }, [dispatch]);
- useEffect(() => {
- const handleNotification= (companionId: string) => {
- dispatch(asyncStartChatById(companionId))
- dispatch(actionScroll(true))
- }
- if (chat.companionId&&!chats.find((el) => el.companionId === chat.companionId)) {
- dispatch(actionRemoveChat())
- }
- if (ref.current) {
- ref.current.forEach(({total,seen}: any,i:number) => {
- const oldDifferent = total - seen
- const chat = chats[i]
- if(chat === undefined) return
- const newDifferent = chat.total - chat.seen
- if (newDifferent > oldDifferent && !chat.mute) {
- playNotificationWithoutPermission('http://localhost:3000/recive.mp3')
- notification(chat.name,() => handleNotification(chat.companionId))
- }
- })
- }
- ref.current = chats
- }, [chats,chat,dispatch])
- return total !== '0' ? (
- <List className={classes.list} component="nav"
- aria-label="main mailbox folders">
- {chats.map(({ name, lastName, avatarUrl, updatedAt, color, companionId, mute, seen, total,
- watched, typing, number, online, lastMessage }, i: number) =>
- <ListItemButton
- key={number}
- selected={selectedIndex === i}
- onClick={() => handleListItemClick(i,companionId)}
- >
- <ListItemIcon className={classes.listItem_iconAvatar}>
- <StyledBadge overlap="circular" variant={online === 'true'?'dot':'standard'}
- anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }}>
- <Avatar alt={name} src={avatarUrl?`http://localhost:3000/${avatarUrl}`:undefined}
- sx={{ background: color, width: 54, height: 54 }}>
- {!avatarUrl&&`${firstLetter(name)}${firstLetter(lastName)}`}
- </Avatar>
- </StyledBadge>
- </ListItemIcon>
- <ListItemText primary={<div className={classes.listItemInnerText}>
- <span>{`${firstLetter(name)}${slicedWord(name, 15, 1)}
- ${firstLetter(lastName)}${slicedWord(lastName, 15, 1)}`}</span>
- {mute&&<VolumeOffIcon className={classes.listItemInnerText__icon} fontSize='small' />}</div>}
- secondary={typing ? <span className={classes.listItem_typing}>
- typing<span className={classes.listItem_dots}>...</span></span> :
- lastMessage ? slicedWord(lastMessage, 35) :
- `${firstLetter(name)}${slicedWord(name, 8, 1)} joined Telegram`}/>
- <ListItemIcon className={classes.listItem_iconRight}>
- <div className={classes.listItem_iconTimeChecked}>
- {watched&& <DoneAllIcon style={{ color: '#18bd03' }} fontSize='small' />}
- <Typography className={classes.listItem_icon_time} variant="h6" color="initial">
- {timeStampEU(updatedAt)}
- </Typography>
- </div>
- {lastMessage && total > seen ? <button onClick={(e) => handleNewMsgs(e, i,companionId)}
- className={mute?classes.listItem_iconRightBtnMute:classes.listItem_iconRightBtn}>{total-seen}</button> :
- <button className={classes.listItem_iconRightBtnHidden}/>}
- </ListItemIcon>
- </ListItemButton>)}
- </List>
- ):<AlertInfo name='You do not have any chats yet!' />;
- }
- export default ChatsList
|