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 { makeStyles } from '@material-ui/core' import { useState } from 'react'; import shortid from 'shortid'; import { contacts } from './contacts' 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", }, }, listItem_iconAvatar: { marginRight:10 }, }) const ChatsList = () => { const [selectedIndex, setSelectedIndex] = useState(1); const classes = useStyles() const handleListItemClick = (e: React.SyntheticEvent, i: number) => { console.log(i,'index','selected chat in chat bar',e) setSelectedIndex(i); } const data = new Date(2022, 3, 8).toLocaleString("en-US", { year:'numeric', month: 'short', day: 'numeric' }); const firstLetter = (word: string) => word.slice(0, 1).toUpperCase() const slicedWord = (word: string, max: number, from: number = 0) => word.length < max ? word.slice(from) : word.slice(from, max) return ( {contacts && contacts.map(({name,lastName,avatarUrl}: any,i:number) => handleListItemClick(e, i)} > {!avatarUrl&&`${firstLetter(name)}${firstLetter(lastName)}`} )} ); } export default ChatsList