aboutsummaryrefslogtreecommitdiff
path: root/src/components/search/SearchResults.tsx
blob: 277b345413568a5d1ea208ae862e92ece5ceaa88 (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
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.map((category: CategoryPreviewType) => (
        <SearchResultsCell
          key={category.name}
          profileData={category}
          {...{loggedInUser}}
        />
      ))}
      {results.map((profile: ProfilePreviewType) => (
        <SearchResultsCell
          key={profile.id}
          profileData={profile}
          {...{loggedInUser}}
        />
      ))}
    </View>
  );
};

export default SearchResults;