-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathResults.js
116 lines (104 loc) · 2.19 KB
/
Results.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
'use strict';
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View,
ListView,
TouchableHighlight,
LinkingIOS
} from 'react-native';
var REQUEST_URL = "https://jobs.github.com/positions.json";
class Results extends Component {
constructor(props) {
super(props);
this.state = {
dataSource: new ListView.DataSource({
rowHasChanged: (row1, row2) => row1 !== row2
}),
loaded: false,
};
}
componentDidMount() {
this.fetchData();
}
fetchData() {
fetch(REQUEST_URL)
.then((response) => response.json())
.then((responseData) => {
console.log(responseData)
this.setState({
dataSource: this.state.dataSource.cloneWithRows(responseData),
loaded: true,
});
})
.done();
}
render() {
if(!this.state.loaded) {
return this.renderLoadingView();
}
return (
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderJobs}
style={styles.listView}
/>
);
}
renderLoadingView() {
return (
<View style={styles.container}>
<Text>
Loading Jobs...
</Text>
</View>
);
}
onPressButton(url) {
alert('Hi!');
LinkingIOS.openURL(url);
}
renderJobs(job) {
return (
<TouchableHighlight onPress={() => { LinkingIOS.openURL(job.url); }}>
<View style={styles.container}>
<Text style={styles.title}>
{job.title}
</Text>
<Text style={styles.location}>
{job.company} - {job.location}
</Text>
</View>
</TouchableHighlight>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
paddingBottom: 30,
paddingTop: 30,
borderBottomWidth: 1,
borderBottomColor: '#eee',
borderStyle: 'solid'
},
title: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
location: {
textAlign: 'center',
color: '#999'
},
listView: {
paddingTop: 20,
backgroundColor: '#F5FCFF',
},
});
module.exports = Results;