-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
53 lines (46 loc) · 1.49 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
import React from 'react';
import { Alert } from "react-native";
import Loading from "./Loading";
import Weather from "./Weather";
import * as Location from "expo-location";
import axios from "axios";
const API_KEY = "bf23511da98859cfbf70a44a9072cbd2";
export default class extends React.Component {
state = {
isLoading: true,
};
getWeather = async (latitude, longitude) => {
const {
data: {
main: {
temp
},
weather
}
} = await axios.get(
`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&APPID=${API_KEY}&units=metric`
);
this.setState({
isLoading: false,
temp,
condition: weather[0].main
});
};
getLocation = async () => {
try {
const response = await Location.requestPermissionsAsync();
const { coords: { latitude, longitude } } = await Location.getCurrentPositionAsync();
this.getWeather(latitude, longitude);
//Send to API and get Weather
} catch (error) {
Alert.alert("Location Permission Denied.", "Please enable location.");
}
}
componentDidMount() {
this, this.getLocation();
}
render() {
const { isLoading, temp, condition } = this.state;
return isLoading ? <Loading /> : <Weather temp={Math.round(temp)} condition={condition} />;
}
}