-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
287 lines (258 loc) · 9.6 KB
/
index.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
'use strict';
import React , {Component, PropTypes} from 'react'
import {
View,
ScrollView,
LayoutAnimation,
StyleSheet,
Animated,
} from 'react-native';
var AnimatedCell = require('./animatedCell');
var invariant = require('invariant');
var TimerMixin = require('react-timer-mixin');
var _ = require('lodash');
var DragableList = React.createClass({
mixins: [TimerMixin],
propTypes: {
dataSource: PropTypes.array.isRequired, //data
component: PropTypes.func.isRequired, //cell
cellProps: PropTypes.object, //cell props
shouldUpdateId: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), //需要更新的cell id
onMove: PropTypes.func, //callback of move
keys: PropTypes.array, //pre orders of data
onPressCell: PropTypes.func, //
scrollStyle: View.propTypes.style, //scroll view style
contentInset: PropTypes.object, //scroll view contentInset
isScrollView: PropTypes.bool, //scrollView or view
toggleScroll: PropTypes.func, //if isScrollView is false, and outside component is a scrollView, should set this
shouldUpdate: PropTypes.bool, //update all cell
},
getDefaultProps() {
return {
dataSource: [],
isScrollView: true,
};
},
getInitialState() {
var keys = [];
var keyGroups = {};
var dataSource = this.props.dataSource || [];
if (this.props.keys && this.props.keys.length > 0) {
keys = this.props.keys;
for (var i = 0; i < dataSource.length; i++) {
var item = dataSource[i];
var key = item.id.toString();
keyGroups[key] = item;
}
}else{
for (var i = 0; i < dataSource.length; i++) {
var item = dataSource[i];
var key = item.id.toString();
keys[i] = key;
keyGroups[key] = item;
}
}
invariant(keys.length == this.props.dataSource.length, 'dataSource length should be equal to keys length');
return {
keys: keys,
key_groups: keyGroups,
restLayouts: [],
scrollable: true,
shouldUpdate: false,
}
},
setKeyGroups(dataSource) {
var keyGroups = {};
for (var i = 0; i < dataSource.length; i++) {
var item = dataSource[i];
var key = item.id.toString();
keyGroups[key] = item;
}
return keyGroups;
},
componentWillReceiveProps(nextProps) {
var {dataSource} = nextProps;
if (dataSource) {
var key_groups = this.setKeyGroups(dataSource);
if (this.state.keys.length > dataSource.length) { //delete some data
var newKeys = _.map(dataSource, (item) => {
return item.id.toString();
});
newKeys = _.intersection(this.state.keys, newKeys);
this.setState({
keys: newKeys,
key_groups,
})
}else if (this.state.keys.length < dataSource.length){ //add some data
var newKeys = _.map(dataSource, (item) => {
return item.id.toString();
});
newKeys = _.union(this.state.keys, newKeys);
this.setState({
keys: newKeys,
key_groups,
})
}
}
},
setTimeoutId: null,
//animate
_onMove(position: Point): void {
var newKeys = moveToClosest(this.state, position);
if (newKeys !== this.state.keys) {
LayoutAnimation.easeInEaseOut();
this.setState({keys: newKeys});
this.props.onMove && this.props.onMove(newKeys);
}
},
toggleScroll: function (can, callback) {
if (this.props.isScrollView) {
this.setState({
scrollable: can
}, callback);
}
this.props.toggleScroll && this.props.toggleScroll(can, callback)
},
render() {
var content = <View />;
var CellComponent = this.props.component;
var cellProps = this.props.cellProps;
var shouldUpdateId = null;
if (this.props.shouldUpdateId !== null && this.props.shouldUpdateId !== undefined) {
shouldUpdateId = this.props.shouldUpdateId.toString();
}
if (this.state.keys.length > 0) {
content = this.state.keys.map((key, idx) => {
if (key === null || key === undefined) return;
var row_data = this.state.key_groups[key];
var shouldUpdate = this.props.shouldUpdate || this.state.shouldUpdate || (shouldUpdateId == key);
if (key == this.state.activeKey) {
return (
<AnimatedCell
key={key + 'd'}
dummy={true}
cellProps={cellProps}
cellComponent={this.props.component}
rowData={row_data}
onPressCell={this.props.onPressCell}
shouldUpdate={shouldUpdate}
shouldUpdateId={this.props.shouldUpdateId}
/>
);
} else {
if (!this.state.restLayouts[idx]) {
var onLayout = function(index, e) {
var layout = e.nativeEvent.layout;
this.setState((state) => {
state.restLayouts[index] = layout;
return state;
});
}.bind(this, idx);
}
return (
<AnimatedCell
key={key}
onLayout={onLayout}
restLayout={this.state.restLayouts[idx]}
onActivate={() => {
this.setState({
shouldUpdate: true,
activeKey: key,
activeInitialLayout: this.state.restLayouts[idx],
})
}}
toggleScroll={this.toggleScroll}
cellProps={cellProps}
cellComponent={this.props.component}
rowData={row_data}
onPressCell={this.props.onPressCell}
shouldUpdate={shouldUpdate}
shouldUpdateId={this.props.shouldUpdateId}
/>
);
}
});
if (this.state.activeKey) {
var row_data = this.state.key_groups[this.state.activeKey];
var shouldUpdate = this.state.shouldUpdate || (shouldUpdateId == this.state.activeKey);
content.push(
<Animated.View key="dark" style={[styles.darkening]} />
);
content.push(
<AnimatedCell
key={this.state.activeKey}
restLayout={this.state.activeInitialLayout}
onMove={this._onMove}
onDeactivate={() => {
this.setState({
shouldUpdate: false,
activeKey: undefined
});
}}
toggleScroll={this.toggleScroll}
cellProps={cellProps}
cellComponent={this.props.component}
rowData={row_data}
onPressCell={this.props.onPressCell}
shouldUpdate={shouldUpdate}
shouldUpdateId={this.props.shouldUpdateId}
/>
);
}
}
var ViewTag = this.props.isScrollView ? ScrollView : View;
return (
<ViewTag
style={[{flex: 1}, this.props.scrollStyle]}
scrollEnabled={this.state.scrollable}
automaticallyAdjustContentInsets={false}
showsVerticalScrollIndicator={false}
contentInset={this.props.contentInset || {bottom: 0}}
>
{content}
</ViewTag>
)
}
});
function distance(p1, p2) {
if (!p1 || !p2) return 0;
var dx = p1.x - p2.x;
var dy = p1.y - p2.y;
return dx * dx + dy * dy;
}
function moveToClosest({activeKey, keys, restLayouts}, position) {
var activeIdx = -1;
var closestIdx = activeIdx;
var minDist = Infinity;
var newKeys = [];
keys.forEach((key, idx) => {
var dist = distance(position, restLayouts[idx]);
if (key === activeKey) {
idx = activeIdx;
} else {
newKeys.push(key);
}
if (dist < minDist) {
minDist = dist;
closestIdx = idx;
}
});
if (closestIdx === activeIdx) {
return keys;
} else {
newKeys.splice(closestIdx, 0, activeKey);
return newKeys;
}
}
var styles = StyleSheet.create({
darkening: {
backgroundColor: 'black',
position: 'absolute',
left: 0,
top: 0,
right: 0,
bottom: 0,
opacity: 0,
},
});
module.exports = DragableList;