blob: a73d0b407127c5d4612bfc0a6f8b5b1d6899398f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import React from 'react';
import {ProfilePreviewType, CategoryPreviewType} from '../../types';
import SearchResultsCell from './SearchResultCell';
import {useSelector} from 'react-redux';
import {RootState} from '../../store/rootReducer';
interface SearchResultsProps {
results: ProfilePreviewType[];
categories: CategoryPreviewType[];
}
const SearchResults: React.FC<SearchResultsProps> = ({results, categories}) => {
/**
* Added the following swicth case to make Results on Search and Recents screen a list
* Flex is love
*/
const {user: loggedInUser} = useSelector((state: RootState) => state.user);
return (
<>
{categories
.slice(0)
.reverse()
.map((category: CategoryPreviewType) => (
<SearchResultsCell
key={category.name}
profileData={category}
{...{loggedInUser}}
/>
))}
{results
.slice(0)
.reverse()
.map((profile: ProfilePreviewType) => (
<SearchResultsCell
key={profile.id}
profileData={profile}
{...{loggedInUser}}
/>
))}
</>
);
};
export default SearchResults;
|