index.tsx 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import List from '@mui/material/List';
  2. import { makeStyles } from '@material-ui/core'
  3. import { useEffect,useState } from 'react';
  4. import { useSelector,useDispatch } from 'react-redux';
  5. import AlertInfo from '../../../reusableComponents/AlertInfo'
  6. import ContactItem from './ContactItem';
  7. import { getState } from '../../../../redux/contacts/selector'
  8. import { asyncGetContacts } from '../../../../redux/contacts/operations'
  9. import { asyncStartChatById } from '../../../../redux/chat/operations'
  10. import { getIsOpen } from '../../../../redux/control/selector'
  11. import { actionIsOpen } from '../../../../redux/control/action';
  12. const useStyles = makeStyles({
  13. list: {
  14. width: '100%',
  15. maxHeight: '890px',
  16. overflowY: 'scroll',
  17. '&::-webkit-scrollbar': {
  18. width: '0.4em'
  19. },
  20. '&::-webkit-scrollbar-track': {
  21. boxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
  22. webkitBoxShadow: 'inset 0 0 6px rgba(0,0,0,0.00)',
  23. backgroundColor: '#eceeec',
  24. },
  25. '&::-webkit-scrollbar-thumb': {
  26. backgroundColor: '#ccc8c8',
  27. },
  28. "&::-webkit-scrollbar-thumb:focus": {
  29. backgroundColor: "#959595",
  30. },
  31. "&::-webkit-scrollbar-thumb:active": {
  32. backgroundColor: "#959595",
  33. },
  34. },
  35. })
  36. interface IContactList {
  37. value: string,
  38. handleClick: any
  39. }
  40. const ContactsList = ({value,handleClick} : IContactList) => {
  41. const classes = useStyles()
  42. const dispatch = useDispatch()
  43. const { total, contacts } = useSelector(getState)
  44. const [selectedIndex, setSelectedIndex] = useState<null | number>(null);
  45. const isOpen = useSelector(getIsOpen)
  46. const handleListItemClick = (companionId:string) => {
  47. handleClick()
  48. isOpen&&dispatch(actionIsOpen(''))
  49. dispatch(asyncStartChatById(companionId))
  50. }
  51. const filteredContacts = () => contacts.filter((el) => {
  52. const credentials = el.name + ' ' + el.lastName
  53. if(credentials.toLowerCase().includes(value.toLowerCase())) return el
  54. })
  55. useEffect(() => {
  56. dispatch(asyncGetContacts())
  57. const handleReset = () => isOpen !== 'credentials' &&dispatch(asyncGetContacts())
  58. const idInterval = setInterval(handleReset, 3000);
  59. return () => clearInterval(idInterval);
  60. }, [dispatch,isOpen]);
  61. const arr = filteredContacts()
  62. return total !== '0' ? (
  63. <List
  64. className={classes.list} component="nav"
  65. aria-label="main mailbox folders">
  66. {arr.length > 0 ? arr.map((contact,i) => <ContactItem key={contact.number} contact={contact}
  67. selectedIndex={selectedIndex} setSelectedIndex={setSelectedIndex} i={i}
  68. handleListItemClick={handleListItemClick} isOpen={isOpen}/>) :
  69. <AlertInfo name={`Can not find contact by request : ${value}`} />}
  70. </List>
  71. ):<AlertInfo name='You do not have any contact yet!' />;
  72. }
  73. export default ContactsList