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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
import React from 'react';
import {
ProfilePreviewType,
PreviewType,
ScreenType,
CategoryPreviewType,
} from '../../types';
import ProfilePreview from '../profile/ProfilePreview';
import {StyleSheet, View} from 'react-native';
import SearchResultsCell from './SearchResultCell';
import {useSelector} from 'react-redux';
import {RootState} from 'src/store/rootReducer';
interface SearchResultsProps {
results: ProfilePreviewType[];
previewType: PreviewType;
screenType: ScreenType;
categories: CategoryPreviewType[];
}
const SearchResults: React.FC<SearchResultsProps> = ({
results,
previewType,
screenType,
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);
let containerStyle;
switch (previewType) {
case 'Search':
containerStyle = styles.containerSearch;
break;
case 'Recent':
containerStyle = styles.containerSearch;
break;
default:
containerStyle = styles.container;
}
return (
<View style={containerStyle}>
{categories.map((category: CategoryPreviewType) => (
<SearchResultsCell
key={category.name}
profileData={category}
{...{loggedInUser}}
/>
))}
{results.map((profile: ProfilePreviewType) => (
<SearchResultsCell
key={profile.id}
profileData={profile}
{...{loggedInUser}}
/>
))}
</View>
);
};
const styles = StyleSheet.create({
containerSearch: {
flexDirection: 'column',
flexWrap: 'wrap',
},
container: {
flexDirection: 'row',
flexWrap: 'wrap',
},
});
export default SearchResults;
|