-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
96 lines (87 loc) · 2.74 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
import { StatusBar } from "expo-status-bar";
import React, { useState, useEffect } 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/UnitsPicker";
import ReloadIcon from "./components/ReloadIcon";
import WeatherDetails from "./components/WeatherDetails";
import { colors } from "./utils/index";
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() {
setcurrentWeather(null);
seterrorMessage(null);
try {
let { status } = await Location.requestForegroundPermissionsAsync();
if (status !== "granted") {
seterrorMessage("Access to location is required!");
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,
backgroundColor: "#fff",
justifyContent: "center",
},
main: {
justifyContent: "center",
flex: 1,
},
});