-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ios.js
119 lines (104 loc) · 2.35 KB
/
index.ios.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableHighlight,
} from 'react-native';
var REQUEST_URL = 'http://quotes.stormconsultancy.co.uk/random.json';
class Quotes extends Component {
constructor(props) {
super(props);
this.state = {
quotes: null,
};
}
componentDidMount() {
this.fetchData();
}
fetchData() {
fetch(REQUEST_URL)
.then((response) => response.json())
.then((responseData) => {
var filteredData;
console.log(responseData);
this.setState({
quotes: responseData,
});
})
.catch((error) => {
console.warn(error);
})
.done();
}
fetchRandomQuote() {
this.fetchData();
}
render() {
if (!this.state.quotes) {
return this.renderLoadingView();
}
var quote = this.state.quotes;
return this.renderQuote(quote);
}
renderLoadingView() {
return (
<View style={styles.container}>
<Text>
Loading quotes...
</Text>
</View>
);
}
renderQuote(quote) {
return (
<View style={styles.container}>
<Text style={styles.quoteText}>{quote.quote}</Text>
<Text style={styles.quoteAuthor}>{quote.author}</Text>
<TouchableHighlight style={styles.button} underlayColor='#99d9f4' onPress={this.fetchRandomQuote.bind(this)}>
<Text style={styles.buttonText}>Get another quote</Text>
</TouchableHighlight>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
quoteText: {
fontSize: 20,
marginBottom: 8,
textAlign: 'center',
padding: 25,
},
quoteAuthor: {
textAlign: 'center',
marginBottom: 25,
},
buttonText: {
fontSize: 18,
color: 'white',
alignSelf: 'center'
},
button: {
backgroundColor: '#48BBEC',
borderColor: '#48BBEC',
borderWidth: 1,
borderRadius: 8,
marginBottom: 10,
justifyContent: 'center',
padding: 10,
},
});
AppRegistry.registerComponent('Quotes', () => Quotes);