-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
87 lines (81 loc) · 2 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
import React, { Component } from 'react';
import {
StyleSheet, Text, View, StatusBar,
} from 'react-native';
import { LinearGradient } from 'expo';
import Weather from './Weather';
const API_KEY = 'a5b10d311935f8b64fc6254b83db6f2d';
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
loading: {
flex: 1,
justifyContent: 'center',
paddingLeft: 24,
},
loadingText: {
fontSize: 38,
marginBottom: 24,
color: 'white',
textAlign: 'center',
},
errorText: {
color: 'red',
marginBottom: 40,
},
});
export default class App extends Component {
state = {
isLoaded: false,
error: null,
temperature: null,
name: null,
city: null,
};
componentDidMount() {
navigator.geolocation.getCurrentPosition(
(position) => {
this._getWeather(position.coords.latitude, position.coords.longitude);
},
(error) => {
this.setState({
error,
});
console.log(error);
},
);
}
_getWeather = (lat, lon) => {
fetch(`http://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&APPID=${API_KEY}`)
.then(res => res.json())
.then((json) => {
console.log(json);
this.setState({
temperature: json.main.temp,
name: json.weather[0].main,
isLoaded: true,
city: json.name,
});
});
};
render() {
const {
isLoaded, error, temperature, name, city,
} = this.state;
return (
<LinearGradient colors={['#00ECBC', '#007ADF']} style={styles.container}>
<StatusBar hidden />
{isLoaded ? (
<Weather weatherName={name} city={city} temp={Math.floor(temperature - 273.15)} />
) : (
<View style={styles.loading}>
<Text style={styles.loadingText}>Getting the awesome weather</Text>
{error ? <Text style={styles.errorText}>{error}</Text> : null}
</View>
)}
</LinearGradient>
);
}
}