-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
84 lines (79 loc) · 2.26 KB
/
App.js
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
73
74
75
76
77
78
79
80
81
82
83
84
import { StatusBar } from 'expo-status-bar';
import React,{useEffect, useState}from 'react';
import { StyleSheet, Text, View, ActivityIndicator } from 'react-native';
import * as Location from 'expo-location';
import Weatherinfo from './components/WeatherInfo'
import UnitsPicker from './components/Units'
import {colors} from "./utils"
import Reload from './components/Reload';
import WeatherDetails from './components/WeatherDetails';
const API_KEY = 'API_KEY';
const BASE_URL = 'https://api.openweathermap.org/data/2.5/weather?';
export default function App() {
const [errorMessage, setErrorMessage]=useState(null)
const [currentWeather,setCurrentWeather]=useState(null)
const [units, setUnits] = useState('metric')
useEffect(()=>{
load()
},[units])
async function load(){
setCurrentWeather(null)
setErrorMessage(null)
try {
let {status} = await Location.requestPermissionsAsync()
if(status != 'granted'){
setErrorMessage('Access to Location is needed')
return;
}
const location = await Location.getCurrentPositionAsync()
const {latitude,longitude} = location.coords
const weatherUrl = `${BASE_URL}lat=${latitude}&lon=${longitude}&units=${units}&appid=${API_KEY}`
const response = await fetch(weatherUrl)
const result = await response.json()
if(response.ok){
setCurrentWeather(result)
} else {
setErrorMessage(result.message)
}
} catch(error){
setErrorMessage(error.message)
}
}
if(currentWeather){
return (
<View style={styles.container}>
<StatusBar style="auto" />
<View style={styles.main}>
<UnitsPicker units={units} setUnits={setUnits} />
<Reload load={load} />
<Weatherinfo currentWeather={currentWeather} />
</View>
<WeatherDetails currentWeather={currentWeather} unitSystem={units}/>
</View>
);
} else if(errorMessage){
return (
<View style={styles.container}>
<Text>{errorMessage}</Text>
<StatusBar style="auto" />
</View>
);
}
else{
return (
<View style={styles.container}>
<ActivityIndicator size="large" color={colors.PRIMARY} />
<StatusBar style="auto" />
</View>
);
}}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
},
main :{
flex:1,
justifyContent:'center'
}
});