-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
102 lines (81 loc) · 2.64 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { StatusBar } from 'expo-status-bar'
import React, { useEffect, useState } from 'react'
import { Alert, StyleSheet, Text, View, ActivityIndicator } from 'react-native'
import * as Location from 'expo-location'
import WeatherInfo from './components/WeatherInfo'
import UnitsPicker from './components/UnitsPicker'
import { colors } from './utils/index'
import ReloadIcon from './components/ReloadIcon'
import WeatherDetails from './components/WeatherDetails'
import { WEATHER_API_KEY } from '@env'
const BASE_WEATHER_URL = 'https://api.openweathermap.org/data/2.5/weather?'
export default function App() {
const [errorMessage, setErrorMessage] = useState(null);
const [currentWeather, setCurrentWeather] = useState(null)
const [unitsSystem, setUnitsSystem] = useState('metric')
useEffect(() => {
load()
}, [unitsSystem])
async function load() {
setErrorMessage(null)
setCurrentWeather(null)
try {
let { status } = await Location.requestPermissionsAsync()
if (status !== 'granted') {
setErrorMessage('Access to location is needed to run the application.')
return
}
const location = await Location.getCurrentPositionAsync()
const { latitude, longitude } = location.coords
const weatherUrl = `${BASE_WEATHER_URL}lat=${latitude}&lon=${longitude}&units=${unitsSystem}&appid=${WEATHER_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 unitsSystem={unitsSystem} setUnitsSystem={setUnitsSystem} />
<ReloadIcon load={load} />
<WeatherInfo currentWeather={currentWeather} />
</View>
<WeatherDetails currentWeather={currentWeather} unitsSystem={unitsSystem} />
</View>
)
} else if (errorMessage) {
return (
<View style={styles.container}>
<ReloadIcon load={load} />
<Text style={{textAlign: 'center'}}>{errorMessage}</Text>
<StatusBar style="auto" />
</View>
)
} else {
return (
<View style={styles.container}>
<ActivityIndicator size="large" color={colors.PRIMARY_COLOR} />
<StatusBar style="auto" />
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: '#e9c429'
},
main: {
justifyContent: 'center',
flex: 1
}
})