index.tsx 2.7 KB

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