index.tsx 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import { makeStyles } from '@material-ui/core'
  2. import List from '@mui/material/List';
  3. import Stack from '@mui/material/Stack';
  4. import { TChats } from '../../../../../typescript/redux/chats/types';
  5. import RecentItem from './RecentItem';
  6. import ChatItem from './ChatItem';
  7. import AlertInfo from '../../../../reusableComponents/AlertInfo';
  8. const useStyles = makeStyles({
  9. stack: {
  10. display: 'flex',
  11. justifyContent: 'space-around',
  12. paddingTop:20,
  13. },
  14. container: {
  15. width: '100%',
  16. maxHeight: '85vh',
  17. overflowY: 'scroll',
  18. '&::-webkit-scrollbar': {
  19. width: '0.4em'
  20. },
  21. '&::-webkit-scrollbar-track': {
  22. boxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
  23. webkitBoxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
  24. backgroundColor: '#eceeec',
  25. },
  26. '&::-webkit-scrollbar-thumb': {
  27. backgroundColor: '#ccc8c8',
  28. },
  29. "&::-webkit-scrollbar-thumb:focus": {
  30. backgroundColor: "#959595",
  31. },
  32. "&::-webkit-scrollbar-thumb:active": {
  33. backgroundColor: "#959595",
  34. },
  35. },
  36. })
  37. interface IChatListRecent {
  38. value: string,
  39. filteredAndSorted: TChats,
  40. handleListItemClick:(companionId:string) => void
  41. }
  42. const ChatListRecent = ({value,filteredAndSorted,handleListItemClick}:IChatListRecent) => {
  43. const classes = useStyles()
  44. return (
  45. <>
  46. {!value && filteredAndSorted.length > 0 &&
  47. <Stack direction="row" className={classes.stack}>
  48. {filteredAndSorted.slice(0, 6).map((chat) =>
  49. <RecentItem key={chat.companionId} handleListItemClick={handleListItemClick} chat={chat} />)}
  50. </Stack>}
  51. {value && filteredAndSorted.length > 0 &&
  52. <List className={classes.container} component="nav" aria-label="main mailbox folders">
  53. {filteredAndSorted.map((chat) =>
  54. <ChatItem key={chat.companionId} handleListItemClick={handleListItemClick} chat={chat} />)}
  55. </List>}
  56. {value && filteredAndSorted.length === 0 && <AlertInfo name={`Can not find Chat by request: ${value}`} />}
  57. {!value && filteredAndSorted.length === 0 &&<AlertInfo name='You do not have any Chats yet!'/>}
  58. </>)
  59. }
  60. export default ChatListRecent