aboutsummaryrefslogtreecommitdiff
path: root/src/components/search/SearchResults.tsx
blob: ef518d8be4306673a1381b3137f3b0579d4d46c1 (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
43
44
45
46
47
48
49
50
import React from 'react';
import {
  ProfilePreviewType,
  PreviewType,
  ScreenType,
  CategoryPreviewType,
} from '../../types';
import {View} from 'react-native';
import SearchResultsCell from './SearchResultCell';
import {useSelector} from 'react-redux';
import {RootState} from '../../store/rootReducer';
interface SearchResultsProps {
  results: ProfilePreviewType[];
  previewType: PreviewType;
  screenType: ScreenType;
  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 (
    <View>
      {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}}
          />
        ))}
    </View>
  );
};

export default SearchResults;