Created
March 18, 2023 11:31
-
-
Save adrianhajdin/dcc49a54d2822daae4b71b74265c397e to your computer and use it in GitHub Desktop.
Build and Deploy a React Native App | 2023 React Native Course Tutorial for Beginners
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useState } from 'react' | |
import { ActivityIndicator, FlatList, Image, TouchableOpacity, View } from 'react-native' | |
import { Stack, useRouter, useSearchParams } from 'expo-router' | |
import { Text, SafeAreaView } from 'react-native' | |
import axios from 'axios' | |
import { ScreenHeaderBtn, NearbyJobCard } from '../../components' | |
import { COLORS, icons, SIZES } from '../../constants' | |
import styles from '../../styles/search' | |
const JobSearch = () => { | |
const params = useSearchParams(); | |
const router = useRouter() | |
const [searchResult, setSearchResult] = useState([]); | |
const [searchLoader, setSearchLoader] = useState(false); | |
const [searchError, setSearchError] = useState(null); | |
const [page, setPage] = useState(1); | |
const handleSearch = async () => { | |
setSearchLoader(true); | |
setSearchResult([]) | |
try { | |
const options = { | |
method: "GET", | |
url: `https://jsearch.p.rapidapi.com/search`, | |
headers: { | |
"X-RapidAPI-Key": '', | |
"X-RapidAPI-Host": "jsearch.p.rapidapi.com", | |
}, | |
params: { | |
query: params.id, | |
page: page.toString(), | |
}, | |
}; | |
const response = await axios.request(options); | |
setSearchResult(response.data.data); | |
} catch (error) { | |
setSearchError(error); | |
console.log(error); | |
} finally { | |
setSearchLoader(false); | |
} | |
}; | |
const handlePagination = (direction) => { | |
if (direction === 'left' && page > 1) { | |
setPage(page - 1) | |
handleSearch() | |
} else if (direction === 'right') { | |
setPage(page + 1) | |
handleSearch() | |
} | |
} | |
useEffect(() => { | |
handleSearch() | |
}, []) | |
return ( | |
<SafeAreaView style={{ flex: 1, backgroundColor: COLORS.lightWhite }}> | |
<Stack.Screen | |
options={{ | |
headerStyle: { backgroundColor: COLORS.lightWhite }, | |
headerShadowVisible: false, | |
headerLeft: () => ( | |
<ScreenHeaderBtn | |
iconUrl={icons.left} | |
dimension='60%' | |
handlePress={() => router.back()} | |
/> | |
), | |
headerTitle: "", | |
}} | |
/> | |
<FlatList | |
data={searchResult} | |
renderItem={({ item }) => ( | |
<NearbyJobCard | |
job={item} | |
handleNavigate={() => router.push(`/job-details/${item.job_id}`)} | |
/> | |
)} | |
keyExtractor={(item) => item.job_id} | |
contentContainerStyle={{ padding: SIZES.medium, rowGap: SIZES.medium }} | |
ListHeaderComponent={() => ( | |
<> | |
<View style={styles.container}> | |
<Text style={styles.searchTitle}>{params.id}</Text> | |
<Text style={styles.noOfSearchedJobs}>Job Opportunities</Text> | |
</View> | |
<View style={styles.loaderContainer}> | |
{searchLoader ? ( | |
<ActivityIndicator size='large' color={COLORS.primary} /> | |
) : searchError && ( | |
<Text>Oops something went wrong</Text> | |
)} | |
</View> | |
</> | |
)} | |
ListFooterComponent={() => ( | |
<View style={styles.footerContainer}> | |
<TouchableOpacity | |
style={styles.paginationButton} | |
onPress={() => handlePagination('left')} | |
> | |
<Image | |
source={icons.chevronLeft} | |
style={styles.paginationImage} | |
resizeMode="contain" | |
/> | |
</TouchableOpacity> | |
<View style={styles.paginationTextBox}> | |
<Text style={styles.paginationText}>{page}</Text> | |
</View> | |
<TouchableOpacity | |
style={styles.paginationButton} | |
onPress={() => handlePagination('right')} | |
> | |
<Image | |
source={icons.chevronRight} | |
style={styles.paginationImage} | |
resizeMode="contain" | |
/> | |
</TouchableOpacity> | |
</View> | |
)} | |
/> | |
</SafeAreaView> | |
) | |
} | |
export default JobSearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks alot that helped me too