-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidGank.js
322 lines (294 loc) · 9.31 KB
/
AndroidGank.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
import React, {Component} from 'react';
import {
Image,
FlatList,
StyleSheet,
Text,
View,
ActivityIndicator,
NativeModules,
BackHandler
} from "react-native";
import { Card } from 'react-native-elements'
import BaseComponent from "./BaseComponent";
let pageNo = 1;//当前第几页
const REQUEST_URL = "http://gank.io/api/data/Android/10/";
/**
* 安卓干货
*/
export default class AndroidGank extends BaseComponent {
static navigationOptions = {
title: "大安卓"
};
constructor(props) {
super(props);
this.state = {
isLoading: true,
isRefreshing: false,
//网络请求状态
error: false,
errorInfo: "",
dataArray: [],
showFoot: 0, // 控制foot, 0:隐藏footer 1:已加载完成,没有更多数据 2 :显示加载中
};
}
componentDidMount() {
this.fetchData(pageNo);
/*this.testRnCallNative();
//在native中有定义EventName这个变量,所以可以直接使用 NativeModules.ToastForAndroid.EventName获取该变量的值
this.listener = DeviceEventEmitter.addListener(NativeModules.ToastForAndroid.EventName, (msg) => {
console.log("listener = " + msg.myData);
});*/
}
componentWillUnmount() {
super.componentWillUnmount();
if (this.listener) {
this.listener.remove();
}
}
testRnCallNative() {
NativeModules.ToastForAndroid.show(1000);
/**
* 通过callback的方式调用native,注意该方式获取native传过来的值的方式和promise的区别
*/
NativeModules.ToastForAndroid.byCallBackToRn("byCallBackToRn", (result) => {
console.log(result)
});
/**
* 通过promise的方式调用native,注意该方式获取native传过来的值的方式和callback的区别
*/
NativeModules.ToastForAndroid.byPromiseToRn("byPromiseToRn")
.then((result) => {
console.log(result);
console.log("content1=" + result.content1);
console.log("content2=" + result.content2);
})
.catch((error) => {
console.log(error);
});
}
fetchData(pageNo) {
fetch(REQUEST_URL + pageNo)
.then((response) => {
return response.json();
})
.then((responseData) => {
let data = responseData.results;
/**
* 这里改变dataArray的值是因为防止下拉刷新数据的时候,屏幕闪烁
*/
if (this.state.isRefreshing) {
this.setState({
dataArray:[]
})
}
let foot = 0;
if (data.length === 0 || pageNo === 5) {
foot = 1;
}
this.setState({
//复制数据源
dataArray: this.state.dataArray.concat(data),
showFoot: foot,
isLoading: false,
isRefreshing: false,
});
data = null;
})
.catch((error) => {
console.log(error)
});
}
render() {
if (this.state.isLoading) {
return this.renderLoadingView();
}
return (
<View>
<FlatList
data={this.state.dataArray}
renderItem={this.renderWelfare.bind(this)}
ListFooterComponent={this._renderFooter.bind(this)}
onEndReached={this._onEndReached.bind(this)}
onRefresh={this._onRefresh.bind(this)}
refreshing={this.state.isRefreshing}
// ItemSeparatorComponent={ItemDivideComponent}
onEndReachedThreshold={0.1}
keyExtractor={item => item.id}
/>
</View>
);
}
renderLoadingView() {
return (
<View style={styles.loading}>
<ActivityIndicator
animating={true}
color='#549cf8'
size="large"
/>
</View>
);
}
renderWelfare({item}) {
// { item }是一种“解构”写法,请阅读ES2015语法的相关文档
// item也是FlatList中固定的参数名,请阅读FlatList的相关文档
if (item.images !== undefined) {
return this.renderContainImage(item)
} else {
return (
<Card containerStyle={styles.card}>
<View style={styles.container}>
<View style={{margin: 5}}>
<Text onPress={this._clickItem.bind(this, item)}>{item.desc}</Text>
</View>
<View style={styles.authorTime}>
<Text style={styles.author}>{item.who}.{item.type}</Text>
<Text style={styles.time}>{item.publishedAt.substring(0, item.publishedAt.indexOf("T"))}</Text>
</View>
</View>
</Card>
);
}
}
renderContainImage = (item) => {
return (
<Card containerStyle={styles.card}>
<View style={styles.container}>
<View style={{margin: 5}}>
<Text onPress={this._clickItem.bind(this, item)}>{item.desc}</Text>
<Image source={{uri: item.images[0]}} style={styles.image}/>
</View>
<View style={styles.authorTime}>
<Text style={styles.author}>{item.who}.{item.type}</Text>
<Text style={styles.time}>{item.publishedAt.substring(0, item.publishedAt.indexOf("T"))}</Text>
</View>
</View>
</Card>
);
};
_clickItem = (item) => {
/**
* rn启动activity,native再调用rn回传数据。通过DeviceEventEmitter.addListener获取回传的数据
*/
// NativeModules.ToastForAndroid.byPromiseToRnCallActivity("byPromiseToRnCallActivity");
// NativeModules.ToastForAndroid.getDataFromIntent((result) => {
// console.log("getDataFromIntent = " + result);
// })
this.props.navigation.navigate("MyWeb", {url: item.url, desc: item.desc});
};
_renderFooter() {
if (this.state.showFoot === 1) {
return (
<View style={styles.noMoreData}>
<Text>没有更多数据了</Text>
</View>
);
} else if (this.state.showFoot === 2) {
return (
<View style={styles.footer}>
<ActivityIndicator animating={true}
color='#549cf8'
size="small"/>
<Text>正在加载更多数据...</Text>
</View>
);
} else if (this.state.showFoot === 0) {
return (
<View style={styles.footer}>
<Text></Text>
</View>
);
}
}
_onEndReached() {
//如果是正在加载中或没有更多数据了,则返回
if (this.state.showFoot !== 0) {
return;
}
pageNo++;
this.setState({
showFoot: 2,
});
//获取数据
this.fetchData(pageNo);
/*setTimeout(()=> {
console.log("setTimeout");
//获取数据
this.fetchData(pageNo);
}, 3000);*/
}
_onRefresh() {
this.setState({
isRefreshing:true,
});
pageNo = 1;
this.fetchData(pageNo);
}
}
class ItemDivideComponent extends Component {
render() {
return (
<View style={{height: 1, backgroundColor: '#549cf8'}}/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
},
loading: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center'
},
image: {
flex: 1,
height: 80,
margin: 5
},
authorTime: {
flexDirection: 'row',
justifyContent: 'space-between'
},
author: {
margin: 5,
color: 'gray',
fontSize: 10,
},
time: {
margin: 5,
color: 'gray',
fontSize: 10,
},
footer: {
flexDirection: 'row',
height: 24,
justifyContent: 'center',
alignItems: 'center',
marginTop: 10,
marginBottom: 10,
},
noMoreData: {
flexDirection: 'row',
height: 30,
justifyContent: 'center',
alignItems: 'center',
marginTop: 10,
marginBottom: 10,
color: '#999999',
fontSize: 14
},
card: {
borderRadius: 2,
borderWidth: 0,
borderColor:'#A9A9A9',
shadowColor:'#808080',
// shadowOffset:{h:10,w:10},
shadowRadius:3,
shadowOpacity: 0.8,
padding: -10
},
});