-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
42 lines (40 loc) · 1.17 KB
/
Copy pathApp.js
File metadata and controls
42 lines (40 loc) · 1.17 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
import React from 'react';
import {Alert} from 'react-native';
import Loading from './Loading';
import * as Location from 'expo-location';
import axios from 'axios';
import Weather from './Weather';
const API_KEY = "ee3090214708ba2f031e6ae17cafe4c4";
export default class App 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, condition:weather[0].main, temp});
}
getLocation = async() =>{
try {
await Location.requestPermissionsAsync();
const {
coords:{latitude, longitude}
} = await Location.getCurrentPositionAsync();
this.getWeather(latitude, longitude)
} catch (error) {
Alert.alert("I can't find you")
}
}
componentDidMount(){
this.getLocation();
}
render(){
const {isLoading, temp, condition} = this.state;
return isLoading ? <Loading /> : <Weather temp={Math.round(temp)} condition={condition} />;
}
}