MessageList.js
13.9 KB
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
'use strict';
import React, {Component} from 'react';
import ReactNative, {
View,
Text,
Image,
ListView,
StyleSheet,
Dimensions,
InteractionManager,
Platform,
NativeAppEventEmitter,
Clipboard,
} from 'react-native';
import LoadMoreIndicator from '../../../common/components/LoadMoreIndicator';
import LoadingIndicator from '../../../common/components/LoadingIndicator';
import EmptyContent from './EmptyContent';
import MessageListCellHeader from './MessageListCellHeader';
import MessageListSmallIconCell from './MessageListSmallIconCell';
import MessageListBigIconCell from './MessageListBigIconCell';
import MessageListTextCell from './MessageListTextCell';
import MessageListOrderCell from './MessageListOrderCell';
import YH_ToolTips from '../../../common/components/YH_ToolTips'
import MessageListEditBottomView from './MessageListEditBottomView'
import MessageListActivityCell from './MessageListActivityCell'
import MessageListProductCell from './MessageListProductCell'
import DeviceInfo from 'react-native-device-info';
export default class MessageList extends Component {
constructor(props) {
super(props);
this.renderRow = this.renderRow.bind(this);
this.dataSource = new ListView.DataSource({
rowHasChanged: (r1, r2) => !Immutable.is(r1, r2),
});
this.loadMessageListCell = this.loadMessageListCell.bind(this);
this.onLongPressListItem = this.onLongPressListItem.bind(this);
this._copy = this._copy.bind(this);
this._delete = this._delete.bind(this);
this.showToolTip = this.showToolTip.bind(this);
this.state = {showToolTips: false,index:0}
}
componentDidMount() {
}
onLongPressListItem(itemData, index) {
this.setState({showToolTips: true, index: index});
}
loadMessageListCell(rowData, rowID) {
let {isEditing} = this.props.data;
let cellType = rowData.get('businessType');
switch (cellType) {
case 100:
case 101:
case 102:
case 103:
case 202:
case 203:
case 204:
case 205:
case 206:
case 207:
case 208:
case 209:
case 210:
case 211:
case 212:
{
return(
<MessageListSmallIconCell
itemData={rowData}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData,rowID);
}}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
break;
case 500:
{
return(
<MessageListActivityCell
itemData={rowData}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData,rowID);
}}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
break;
case 200:
case 201:
case 403:
{
return(
<MessageListBigIconCell
itemData={rowData}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData,rowID);
}}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
break;
case 300:
case 301:
case 302:
case 303:
case 304:
case 305:
case 402:
case 404:
{
return(
<MessageListOrderCell
itemData={rowData}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData,rowID);
}}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
break;
case 400:
case 401:
case 306:
{
return(
<MessageListTextCell
itemData={rowData}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData, rowID);
}}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
}
}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
break;
case 307:
{
return(
<MessageListProductCell
itemData={rowData}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData,rowID);
}}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
case 104:
{
return (
<MessageListTextCell
itemData={rowData}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData, rowID);
}}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
default:
return (
<MessageListTextCell
itemData={rowData}
onLongPressListItem={(itemData) =>{
this.onLongPressListItem(itemData, rowID);
}}
onPressListItem={(itemData) =>{
this.setState({showToolTips: false});
this.props.onPressListItem && this.props.onPressListItem(itemData, rowID)
}
}
selectListItem={(itemData) =>{
this.props.selectListItem&&this.props.selectListItem(rowID);
}}
isEditing={isEditing}
/>
);
}
}
_copy(rowData) {
this.setState({showToolTips: false});
let copyString = rowData.get('body',{}).get('content','');
Clipboard.setString(copyString);
}
_delete(rowData) {
this.setState({showToolTips: false});
this.props.deleteListItem && this.props.deleteListItem(rowData);
}
showToolTip(rowID, rowData) {
let {showToolTips, index} = this.state;
let show = (index == rowID) && showToolTips;
if (show) {
return(
<YH_ToolTips
style={styles.tips}
actions={[{text: '复制', onPress:() =>{
this._copy(rowData);
}},
{text: '删除', onPress:() =>{
this._delete(rowData);
}}]}
isShow={showToolTips}
itemData={rowData}
/>
);
}else {
<View />
}
}
renderRow(rowData, sectionID, rowID) {
let {isEditing} = this.props.data;
return (
<View style= {styles.cellContainer}>
<MessageListCellHeader
timestamp= {rowData.get('create_date')}
isEditing={isEditing}
/>
{this.loadMessageListCell(rowData,rowID)}
{this.showToolTip(rowID, rowData)}
</View>
);
}
render() {
let {isFetching, endReached, list, listId, shouldShowEmpty, isEditing, selectionList, pageCount} = this.props.data;
let isLoadingMore = list.size != 0 && !endReached && pageCount != 1;
let isShowLoading = list.size == 0 && isFetching;
let isAllSelected = selectionList.size == list.size;
let offset = 0;
if (deviceId == 'iPhone10,3' || deviceId == 'iPhone10,6')
{
offset = 34;
}
if (shouldShowEmpty) {
return (
<View style={styles.container}>
<EmptyContent
listId={listId}
onPressEmptyItem={this.props.onPressEmptyItem}
/>
</View>
);
}
return (
<View style={{flex: 1,backgroundColor: '#f0f0f0',bottom: offset}}>
<ListView
contentContainerStyle={styles.contentContainer}
dataSource={this.dataSource.cloneWithRows(list.toArray())}
renderRow={this.renderRow}
enableEmptySections={true}
pageSize={20}
initialListSize={20}
onScroll={() => {
this.setState({showToolTips: false});
}}
onEndReached={() => {
if (list.size != 0) {
this.props.onEndReached && this.props.onEndReached();
}
}}
renderFooter={() => {
if (endReached) {
return <LoadMoreIndicator
isVisible={true}
text={'暂无更多'}
/>;
} else {
return <LoadMoreIndicator
isVisible={isLoadingMore}
animating={true}
/>;
}
}}
/>
<LoadingIndicator
isVisible={isShowLoading}
/>
{
isEditing
?
<MessageListEditBottomView
isAllSelected={isAllSelected}
onSelectPress={this.props.selectListItem}
onDeletePress={this.props.batchDeleteListItem}
/>
:
null
}
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let deviceId = DeviceInfo.getDeviceId();
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f0f0f0',
},
cellContainer: {
backgroundColor: 'transparent',
flexDirection: 'column',
justifyContent: 'flex-start',
},
tips: {
position: 'absolute',
top: 10,
left: 0
}
});