-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
89 lines (82 loc) · 2.63 KB
/
App.js
File metadata and controls
89 lines (82 loc) · 2.63 KB
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
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 { colors } from "./utils";
import ReloadIcon from "./components/ReloadIcon";
import WeatherDetails from "./components/WeatherDetails";
import { WEATHER_API_KEY } from "@env";
const BASE_URL = "https://api.openweathermap.org/data/2.5/weather?";
export default function App() {
const [currentWeather, setCurrentWeather] = useState(null);
const [errorMessage, seterrorMessage] = 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 needed to run the app!");
return;
}
let location = await Location.getCurrentPositionAsync({});
const { latitude, longitude } = location.coords;
const weatherUrl = `${BASE_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 throw Error(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>
);
}
return (
<View style={styles.container}>
<ActivityIndicator size="large" color={colors.PRIMARY_COLOR} />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
},
main: {
justifyContent: "center",
flex: 1,
},
});