-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRefreshableScrollView.js
213 lines (197 loc) · 4.86 KB
/
RefreshableScrollView.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
import React from 'react';
import {
View,
Text,
Image,
ScrollView,
StyleSheet,
ActivityIndicator,
} from 'react-native';
import DownImg from './down.png';
const RefreshStatus = {
pullToRefresh: 0,
releaseToRefresh: 1,
refreshing: 2
};
const RefreshActionType = {
drag: 0,
scroll: 1,
release: 2,
};
const REFRESH_VIEW_HEIGHT = 80;
function coroutine(f) {
let g = f();
g.next();
return function(x) {
g.next(x);
}
}
export default class RefreshableScrollView extends ScrollView {
constructor(props) {
super(props);
this.state = {
refreshStatus: RefreshStatus.pullToRefresh,
refreshTitle: '',
};
const that = this;
this.loop = coroutine(function* () {
let e = {};
while (e = yield) {
if (
e.type === RefreshActionType.drag
&& that.state.refreshStatus !== RefreshStatus.refreshing
) {
while (e = yield) {
if (e.type === RefreshActionType.scroll) {
if (e.offsetY <= -REFRESH_VIEW_HEIGHT) {
that.changeRefreshStateTo(RefreshStatus.releaseToRefresh);
} else {
that.changeRefreshStateTo(RefreshStatus.pullToRefresh);
}
} else if (e.type === RefreshActionType.release) {
if (e.offsetY <= -REFRESH_VIEW_HEIGHT) {
that.changeRefreshStateTo(RefreshStatus.refreshing);
that.scrollToRefreshing();
that.props.onRefresh(() => {
// in case the refreshing state not change
setTimeout(that.onRefreshEnd, 500);
});
} else {
that.scrollToNormal();
}
break;
}
}
}
}
});
}
onScroll = (event) => {
const { y } = event.nativeEvent.contentOffset;
this.loop({ type: RefreshActionType.scroll, offsetY: y });
if (this.props.onScroll) {
this.props.onScroll(event);
}
}
onScrollBeginDrag = (event) => {
this.loop({ type: RefreshActionType.drag });
if (this.props.onScrollBeginDrag) {
this.props.onScrollBeginDrag(event);
}
}
onScrollEndDrag = (event) => {
const { y } = event.nativeEvent.contentOffset;
this.loop({ type: RefreshActionType.release, offsetY: y });
if (this.props.onScrollEndDrag) {
this.props.onScrollEndDrag(event);
}
}
scrollTo = (option) => {
this._scrollview.scrollTo({ ...option, animated: true });
}
scrollToRefreshing = () => {
this.scrollTo({ x: 0, y: -REFRESH_VIEW_HEIGHT });
}
scrollToNormal = () => {
this.scrollTo({ x: 0, y: 0 });
}
onRefreshEnd = () => {
this.changeRefreshStateTo(RefreshStatus.pullToRefresh);
this.scrollToNormal();
}
changeRefreshStateTo = (state) => {
let title = '';
switch (state) {
case RefreshStatus.pullToRefresh:
title = 'Pull to refresh';
break;
case RefreshStatus.releaseToRefresh:
title = 'Release to load';
break;
case RefreshStatus.refreshing:
title = 'Loading ..';
break;
}
this.setState({
refreshStatus: state,
refreshTitle: title,
});
}
renderRefreshHeader() {
return (
<View style={defaultHeaderStyles.header}>
<View style={defaultHeaderStyles.status}>
{this.renderSpinner()}
<Text style={defaultHeaderStyles.statusTitle}>{this.state.refreshTitle}</Text>
</View>
</View>
);
}
renderSpinner() {
const isRefreshing = this.state.refreshStatus === RefreshStatus.refreshing;
const isNotReached = this.state.refreshStatus === RefreshStatus.pullToRefresh;
if (isRefreshing) {
return (
<ActivityIndicator style={{ marginRight: 10 }} />
);
}
return (
<Image
source={DownImg}
resizeMode="contain"
style={[
defaultHeaderStyles.arrow,
{
transform: [{
rotateX: isNotReached ? '0deg' : '-180deg'
}]
}]}
/>
);
}
render() {
return (
<ScrollView
ref={c => this._scrollview = c}
{...this.props}
scrollEventThrottle={16}
onScroll={this.onScroll}
onScrollEndDrag={this.onScrollEndDrag}
onScrollBeginDrag={this.onScrollBeginDrag}
>
{this.renderRefreshHeader()}
{this.props.children}
</ScrollView>
)
}
}
const defaultHeaderStyles = StyleSheet.create({
header: {
position: 'absolute',
top: -80,
left: 0,
right: 0,
height: 80,
alignItems: 'center',
justifyContent: 'center'
},
status: {
flexDirection: 'row',
alignItems: 'center'
},
arrow: {
width: 23,
height: 23,
marginRight: 10,
opacity: 0.7
},
statusTitle: {
fontSize: 13,
color: '#333333'
},
date: {
fontSize: 11,
color: '#333333',
marginTop: 5
},
});