index.tsx 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. import { makeStyles } from "@material-ui/core/styles";
  2. import { useState, useEffect, useRef, useCallback } from "react";
  3. import { useSelector,useDispatch } from "react-redux";
  4. import shortid from 'shortid';
  5. import SendMessage from "./SendMessage";
  6. import MessageLeftText from './Messages/MessageLeftText'
  7. import MessageLeftImage from './Messages/MessageLeftImage'
  8. import MessageLeftAudio from './Messages/MessageLeftAudio'
  9. import MessageLeftVideo from './Messages/MessageLeftVideo'
  10. import MessageLeftFile from "./Messages/MessageLeftFile";
  11. import MessageRightText from './Messages/MessageRightText'
  12. import MessageRightImage from './Messages/MessageRightImage'
  13. import MessageRightAudio from './Messages/MessageRightAudio'
  14. import MessageRightVideo from './Messages/MessageRightVideo'
  15. import MessageRightFile from "./Messages/MessageRightFile";
  16. import AlertInfo from "../../../reusableComponents/AlertInfo";
  17. import { getMessagesMemo } from '../../../../redux/messages/selector'
  18. import { getNumber } from '../../../../redux/authorization/selector'
  19. import { getChat } from '../../../../redux/chat/selector'
  20. import { getScroll } from '../../../../redux/control/selector'
  21. import { actionScroll } from '../../../../redux/control/action'
  22. import { asyncGetMessagesById } from '../../../../redux/messages/operations'
  23. import { seenChat } from "../../../../api-data";
  24. const debounce = require('lodash.debounce');
  25. const useStyles = makeStyles({
  26. container: {
  27. width: "100%",
  28. height: "100%",
  29. maxWidth: "100%",
  30. maxHeight: "100%",
  31. display: "flex",
  32. alignItems: "center",
  33. alignContent:"center",
  34. flexDirection: "column",
  35. position: "relative",
  36. overflowY: "scroll",
  37. paddingTop: 60,
  38. },
  39. messagesBody: {
  40. width: "40%",
  41. height: "80%",
  42. },
  43. });
  44. const ChatBar = () => {
  45. const classes = useStyles();
  46. const dispatch = useDispatch()
  47. const messages = useSelector(getMessagesMemo)
  48. const userNumber = useSelector(getNumber)
  49. const { companionId } = useSelector(getChat)
  50. const scroll = useSelector(getScroll)
  51. const [isArrow, setIsArrow] = useState<boolean>(false)
  52. const divRef = useRef<any | null>(null)
  53. const handleScrollTo = () => {
  54. divRef.current&&divRef.current.scrollTo({
  55. top: divRef.current.scrollHeight,
  56. behavior: 'smooth'
  57. })
  58. }
  59. const handleScroll = ({ target }: any) => {
  60. const different = target.scrollHeight - target.scrollTop
  61. if (different < 900) seenChat(companionId)
  62. setIsArrow(different < 1500 ? false : true)
  63. }
  64. const debouncedHandleScroll = useCallback(debounce(handleScroll, 300), []);
  65. useEffect(() => {
  66. if (scroll) {
  67. dispatch(asyncGetMessagesById(companionId, handleScrollTo))
  68. dispatch(actionScroll(false))
  69. }
  70. }, [dispatch,scroll, companionId])
  71. useEffect(() => {
  72. dispatch(asyncGetMessagesById(companionId, handleScrollTo))
  73. const handleReset = () => dispatch(asyncGetMessagesById(companionId,null))
  74. const idInterval = setInterval(handleReset, 1500);
  75. return () => clearInterval(idInterval);
  76. }, [dispatch, companionId]);
  77. return (
  78. <div ref={divRef} className={classes.container} onScroll={debouncedHandleScroll}>
  79. <div className={classes.messagesBody}>
  80. {messages.length > 0 ? messages.map(({message,avatarUrl,name,lastName,color,updatedAt,number,type},i:number) => {
  81. if (number !== userNumber) {
  82. if(type === 'text') return (
  83. <MessageLeftText
  84. key={shortid.generate()}
  85. message={message}
  86. updatedAt={updatedAt}
  87. avatarUrl={avatarUrl}
  88. name={name}
  89. lastName={lastName}
  90. color={color}
  91. />)
  92. if(type === 'image') return (
  93. <MessageLeftImage
  94. key={shortid.generate()}
  95. imgUrl={message}
  96. updatedAt={updatedAt}
  97. color={color}
  98. />)
  99. if(type === 'audio') return (
  100. <MessageLeftAudio
  101. key={shortid.generate()}
  102. audioUrl={message}
  103. updatedAt={updatedAt}
  104. />)
  105. if(type === 'video') return (
  106. <MessageLeftVideo
  107. key={shortid.generate()}
  108. audioUrl={message}
  109. updatedAt={updatedAt}
  110. />)
  111. if(type === 'file') return (
  112. <MessageLeftFile
  113. key={shortid.generate()}
  114. audioUrl={message}
  115. updatedAt={updatedAt}
  116. />)
  117. } else {
  118. if(type === 'text') return (
  119. <MessageRightText
  120. key={shortid.generate()}
  121. message={message}
  122. updatedAt={updatedAt}
  123. avatarUrl={avatarUrl}
  124. name={name}
  125. lastName={lastName}
  126. color={color}
  127. />)
  128. if(type === 'image') return (
  129. <MessageRightImage
  130. key={shortid.generate()}
  131. imgUrl={message}
  132. updatedAt={updatedAt}
  133. color={color}
  134. />)
  135. if(type === 'audio') return (
  136. <MessageRightAudio
  137. key={shortid.generate()}
  138. audioUrl={message}
  139. updatedAt={updatedAt}
  140. />)
  141. if(type === 'video') return (
  142. <MessageRightVideo
  143. key={shortid.generate()}
  144. audioUrl={message}
  145. updatedAt={updatedAt}
  146. />)
  147. if(type === 'file') return (
  148. <MessageRightFile
  149. key={shortid.generate()}
  150. audioUrl={message}
  151. updatedAt={updatedAt}
  152. />)
  153. }
  154. }) : <AlertInfo name='You do not have messages yet!' />}
  155. </div>
  156. <SendMessage isArrow={isArrow} handleScrollTo={handleScrollTo}/>
  157. </div>
  158. );
  159. }
  160. export default ChatBar