-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
42 lines (40 loc) · 1.31 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
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { Alert} from 'react-native';
import * as Location from 'expo-location';
import Loading from './Loading';
import Weather from './Weather';
import axios from 'axios';
const API_KEY = '2002e58b1b63a441b83a6b24a53cf29a';
export default class extends React.Component {
state = {
isLoading: true
}
getWeather = async (latitude, longitude) => {
const {data: {main: {temp}, weather}} = await axios.get(`https://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,
});
console.log(data);
}
getLocation = async () => {
try {
await Location.requestPermissionsAsync();
const {coords: {latitude, longitude}} = await Location.getCurrentPositionAsync();
this.getWeather(latitude, longitude);
} catch (error) {
Alert.alert('Не могу определить местоположение', "Очень грустно :(");
}
}
componentDidMount() {
this.getLocation();
}
render () {
const {isLoading, temp, condition} = this.state;
return (
isLoading ? <Loading /> : <Weather temp={Math.round(temp)} condition={condition}/>
);
}
}