123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { makeStyles } from '@material-ui/core'
- import List from '@mui/material/List';
- import Stack from '@mui/material/Stack';
- import { TChats } from '../../../../../typescript/redux/chats/types';
- import RecentItem from './RecentItem';
- import ChatItem from './ChatItem';
- import AlertInfo from '../../../../reusableComponents/AlertInfo';
- const useStyles = makeStyles({
- stack: {
- display: 'flex',
- justifyContent: 'space-around',
- paddingTop:20,
- },
- container: {
- width: '100%',
- maxHeight: '85vh',
- 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",
- },
- },
- })
- interface IChatListRecent {
- value: string,
- filteredAndSorted: TChats,
- handleListItemClick:(companionId:string) => void
- }
- const ChatListRecent = ({value,filteredAndSorted,handleListItemClick}:IChatListRecent) => {
- const classes = useStyles()
- return (
- <>
- {!value && filteredAndSorted.length > 0 &&
- <Stack direction="row" className={classes.stack}>
- {filteredAndSorted.slice(0, 6).map((chat) =>
- <RecentItem key={chat.companionId} handleListItemClick={handleListItemClick} chat={chat} />)}
- </Stack>}
- {value && filteredAndSorted.length > 0 &&
- <List className={classes.container} component="nav" aria-label="main mailbox folders">
- {filteredAndSorted.map((chat) =>
- <ChatItem key={chat.companionId} handleListItemClick={handleListItemClick} chat={chat} />)}
- </List>}
- {value && filteredAndSorted.length === 0 && <AlertInfo name={`Can not find Chat by request: ${value}`} />}
- {!value && filteredAndSorted.length === 0 &&<AlertInfo name='You do not have any Chats yet!'/>}
- </>)
- }
- export default ChatListRecent
|