|
@@ -15,9 +15,11 @@ import { asyncGetChats } from '../../../../redux/chats/operations';
|
|
import { getStateMemo } from '../../../../redux/chats/selector';
|
|
import { getStateMemo } from '../../../../redux/chats/selector';
|
|
import { getAllMessagesMemo } from '../../../../redux/allMessages/selector';
|
|
import { getAllMessagesMemo } from '../../../../redux/allMessages/selector';
|
|
import { getIsOpen } from '../../../../redux/control/selector';
|
|
import { getIsOpen } from '../../../../redux/control/selector';
|
|
-import { sortByRecent } from '../../../../helpers';
|
|
|
|
|
|
+import { sortByRecent,handleSort } from '../../../../helpers';
|
|
import { asyncStartChatById } from '../../../../redux/chat/operations';
|
|
import { asyncStartChatById } from '../../../../redux/chat/operations';
|
|
import { actionIsOpen } from '../../../../redux/control/action';
|
|
import { actionIsOpen } from '../../../../redux/control/action';
|
|
|
|
+import { TAllMessages } from '../../../../typescript/redux/allMessages/types';
|
|
|
|
+import { TChats } from '../../../../typescript/redux/chats/types';
|
|
|
|
|
|
|
|
|
|
const useStyles = makeStyles({
|
|
const useStyles = makeStyles({
|
|
@@ -38,14 +40,15 @@ const useStyles = makeStyles({
|
|
|
|
|
|
interface ISearchLists {
|
|
interface ISearchLists {
|
|
value: string,
|
|
value: string,
|
|
- setValue: (value: string) => void
|
|
|
|
|
|
+ setValue: (value: string) => void,
|
|
|
|
+ sort: boolean
|
|
}
|
|
}
|
|
|
|
|
|
-const SearchLists = ({ value,setValue }: ISearchLists) => {
|
|
|
|
|
|
+const SearchLists = ({ value,setValue,sort }: ISearchLists) => {
|
|
const classes = useStyles()
|
|
const classes = useStyles()
|
|
const dispatch = useDispatch()
|
|
const dispatch = useDispatch()
|
|
const { chats } = useSelector(getStateMemo)
|
|
const { chats } = useSelector(getStateMemo)
|
|
- const allMessagesMemo = useSelector(getAllMessagesMemo)
|
|
|
|
|
|
+ const messagesMemo = useSelector(getAllMessagesMemo)
|
|
const isOpen = useSelector(getIsOpen)
|
|
const isOpen = useSelector(getIsOpen)
|
|
const [isActive, setIsActive] = useState<number>(0)
|
|
const [isActive, setIsActive] = useState<number>(0)
|
|
const handleIsActive = (_e: React.SyntheticEvent<Element, Event>, newValue: number): void => {
|
|
const handleIsActive = (_e: React.SyntheticEvent<Element, Event>, newValue: number): void => {
|
|
@@ -58,10 +61,17 @@ const SearchLists = ({ value,setValue }: ISearchLists) => {
|
|
isOpen&&dispatch(actionIsOpen(''))
|
|
isOpen&&dispatch(actionIsOpen(''))
|
|
dispatch(asyncStartChatById(companionId))
|
|
dispatch(asyncStartChatById(companionId))
|
|
}
|
|
}
|
|
- const filterAndSort = () => sortByRecent(chats).filter((el) => {
|
|
|
|
|
|
+ const filterChats= (arr:any) => arr.filter((el:any) => {
|
|
const credentials = el.name + ' ' + el.lastName
|
|
const credentials = el.name + ' ' + el.lastName
|
|
if(credentials.toLowerCase().includes(value.toLowerCase())) return el
|
|
if(credentials.toLowerCase().includes(value.toLowerCase())) return el
|
|
})
|
|
})
|
|
|
|
+ const filterMessages = (arr: any) => arr.filter((el: any) => {
|
|
|
|
+ if (!el.fullType && el.message.toLowerCase().includes(value.toLowerCase())) {
|
|
|
|
+ return el
|
|
|
|
+ } else if (el.fullType&& el.fullType.toLowerCase().includes(value.toLowerCase())) {
|
|
|
|
+ return el
|
|
|
|
+ }
|
|
|
|
+ })
|
|
useEffect(() => {
|
|
useEffect(() => {
|
|
dispatch(asyncGetAllMessages())
|
|
dispatch(asyncGetAllMessages())
|
|
dispatch(asyncGetChats())
|
|
dispatch(asyncGetChats())
|
|
@@ -73,7 +83,8 @@ const SearchLists = ({ value,setValue }: ISearchLists) => {
|
|
return () => clearInterval(idInterval);
|
|
return () => clearInterval(idInterval);
|
|
}, [dispatch]);
|
|
}, [dispatch]);
|
|
|
|
|
|
- const filteredAndSorted = filterAndSort()
|
|
|
|
|
|
+ const filteredAndSorted:TChats = filterChats(sortByRecent(chats,sort))
|
|
|
|
+ const allMessagesMemo:TAllMessages = filterMessages(handleSort('updatedAt',messagesMemo,sort))
|
|
|
|
|
|
return (
|
|
return (
|
|
<>
|
|
<>
|
|
@@ -92,11 +103,11 @@ const SearchLists = ({ value,setValue }: ISearchLists) => {
|
|
</BottomNavigation>
|
|
</BottomNavigation>
|
|
{isActive === 0 && <ChatListRecent value={value}
|
|
{isActive === 0 && <ChatListRecent value={value}
|
|
filteredAndSorted={filteredAndSorted} handleListItemClick={handleListItemClick} />}
|
|
filteredAndSorted={filteredAndSorted} handleListItemClick={handleListItemClick} />}
|
|
- {isActive === 1 && <FilesList allMessagesMemo={allMessagesMemo}/>}
|
|
|
|
- {isActive === 2 && <MediaList allMessagesMemo={allMessagesMemo}/>}
|
|
|
|
- {isActive === 3 && <TextList allMessagesMemo={allMessagesMemo}/>}
|
|
|
|
- {isActive === 4 && <AudioList allMessagesMemo={allMessagesMemo}/>}
|
|
|
|
- {isActive === 5 && <VideoList allMessagesMemo={allMessagesMemo}/>}
|
|
|
|
|
|
+ {isActive === 1 && <FilesList allMessagesMemo={allMessagesMemo} value={value}/>}
|
|
|
|
+ {isActive === 2 && <MediaList allMessagesMemo={allMessagesMemo} value={value}/>}
|
|
|
|
+ {isActive === 3 && <TextList allMessagesMemo={allMessagesMemo} value={value}/>}
|
|
|
|
+ {isActive === 4 && <AudioList allMessagesMemo={allMessagesMemo} value={value}/>}
|
|
|
|
+ {isActive === 5 && <VideoList allMessagesMemo={allMessagesMemo} value={value}/>}
|
|
</>
|
|
</>
|
|
)
|
|
)
|
|
}
|
|
}
|