-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Expand file tree
/
Copy pathVirtualizedSectionList-test.js
More file actions
386 lines (359 loc) · 11.9 KB
/
Copy pathVirtualizedSectionList-test.js
File metadata and controls
386 lines (359 loc) · 11.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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
*/
'use strict';
import type {SectionBase} from 'react-native';
import nullthrows from 'nullthrows';
const VirtualizedSectionList = require('../VirtualizedSectionList').default;
const React = require('react');
const ReactTestRenderer = require('react-test-renderer');
describe('VirtualizedSectionList', () => {
it('renders simple list', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
sections={[
// $FlowFixMe[incompatible-type]
{title: 's1', data: [{key: 'i1'}, {key: 'i2'}, {key: 'i3'}]},
]}
// $FlowFixMe[missing-local-annot]
renderItem={({item}) => <item value={item.key} />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('renders empty list', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
sections={[] as Array<SectionBase<string>>}
renderItem={({item}) => <item value={item} />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('renders empty list with empty component', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
sections={[] as Array<SectionBase<string>>}
ListEmptyComponent={() => <empty />}
ListFooterComponent={() => <footer />}
ListHeaderComponent={() => <header />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
renderItem={({item}) => <item value={item} />}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('renders list with empty component', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
// $FlowFixMe[incompatible-type]
sections={[{title: 's1', data: [{key: 'hello'}]}]}
ListEmptyComponent={() => <empty />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
renderItem={({item}) => <item value={item.key} />}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('renders all the bells and whistles', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
ItemSeparatorComponent={() => <separator />}
ListEmptyComponent={() => <empty />}
ListFooterComponent={() => <footer />}
ListHeaderComponent={() => <header />}
sections={
[
{
title: 's1',
data: new Array<void>(5)
.fill()
.map((_, ii) => ({id: String(ii)})) as Array<{id: string}>,
},
] as Array<SectionBase<{id: string}>>
}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
getItemLayout={({index}) => ({
index: -1,
length: 50,
offset: index * 50,
})}
inverted={true}
keyExtractor={(item, index) => item.id}
onRefresh={jest.fn()}
refreshing={false}
renderItem={({item}) => <item value={item.id} />}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('handles separators correctly', async () => {
const infos = [];
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
ItemSeparatorComponent={props => <separator {...props} />}
sections={[
// $FlowFixMe[incompatible-type]
{title: 's0', data: [{key: 'i0'}, {key: 'i1'}, {key: 'i2'}]},
]}
renderItem={info => {
infos.push(info);
return <item title={info.item.key} />;
}}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
/>,
);
});
expect(component).toMatchSnapshot();
ReactTestRenderer.act(() => {
infos[1].separators.highlight();
});
expect(component).toMatchSnapshot();
ReactTestRenderer.act(() => {
infos[2].separators.updateProps('leading', {press: true});
});
expect(component).toMatchSnapshot();
ReactTestRenderer.act(() => {
infos[1].separators.unhighlight();
});
expect(component).toMatchSnapshot();
});
it('handles nested lists', async () => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
// $FlowFixMe[incompatible-type]
sections={
[
{title: 'outer', data: [{key: 'outer0'}, {key: 'outer1'}]},
] as Array<SectionBase<{key: string}>>
}
renderItem={outerInfo => (
<VirtualizedSectionList
sections={
[
// $FlowFixMe[incompatible-type]
{
title: 'inner',
data: [
{key: outerInfo.item.key + ':inner0'},
{key: outerInfo.item.key + ':inner1'},
],
},
] as Array<SectionBase<{key: string}>>
}
horizontal={outerInfo.item.key === 'outer1'}
renderItem={innerInfo => {
return <item title={innerInfo.item.key} />;
}}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
/>
)}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
/>,
);
});
expect(component).toMatchSnapshot();
});
it('passes fresh leadingItem and trailingItem to ItemSeparatorComponent after sections reorder', async () => {
// Regression test for https://github.com/facebook/react-native/issues/55708.
// ItemWithSeparator stored leadingItem/trailingItem in useState seeded from
// the first render, so when the same cell key re-rendered with reordered
// data the separator kept the stale items (or undefined when the previous
// row was at a section boundary).
const separatorPropsByKey: {
[string]: Array<{leading: ?string, trailing: ?string}>,
} = {};
const RecordingSeparator = (props: $FlowFixMe) => {
const itemKey = props.leadingItem?.key ?? '__head__';
separatorPropsByKey[itemKey] = separatorPropsByKey[itemKey] ?? [];
separatorPropsByKey[itemKey].push({
leading: props.leadingItem?.key,
trailing: props.trailingItem?.key,
});
return <separator />;
};
const initial = [
// $FlowFixMe[incompatible-type]
{title: 's', data: [{key: 'a'}, {key: 'b'}, {key: 'c'}]},
];
const reordered = [
// $FlowFixMe[incompatible-type]
{title: 's', data: [{key: 'b'}, {key: 'a'}, {key: 'c'}]},
];
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
sections={initial}
// $FlowFixMe[missing-local-annot]
renderItem={({item}) => <item value={item.key} />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
ItemSeparatorComponent={RecordingSeparator}
/>,
);
});
await ReactTestRenderer.act(() => {
nullthrows(component).update(
<VirtualizedSectionList
sections={reordered}
// $FlowFixMe[missing-local-annot]
renderItem={({item}) => <item value={item.key} />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
ItemSeparatorComponent={RecordingSeparator}
/>,
);
});
// Last render of separator below "b" must reflect the reordered list:
// the item below b is now a, so trailing must be 'a'.
const lastBelowB = nullthrows(separatorPropsByKey['b']).at(-1);
expect(lastBelowB?.leading).toBe('b');
expect(lastBelowB?.trailing).toBe('a');
// Last render of separator below "a" must reflect a→c.
const lastBelowA = nullthrows(separatorPropsByKey['a']).at(-1);
expect(lastBelowA?.leading).toBe('a');
expect(lastBelowA?.trailing).toBe('c');
});
describe('scrollToLocation', () => {
const ITEM_HEIGHT = 100;
const createVirtualizedSectionList = async (props?: {
stickySectionHeadersEnabled: boolean,
}) => {
let component;
await ReactTestRenderer.act(() => {
component = ReactTestRenderer.create(
<VirtualizedSectionList
sections={
[
// $FlowFixMe[incompatible-type]
{
title: 's1',
data: [{key: 'i1.1'}, {key: 'i1.2'}, {key: 'i1.3'}],
},
// $FlowFixMe[incompatible-type]
{
title: 's2',
data: [{key: 'i2.1'}, {key: 'i2.2'}, {key: 'i2.3'}],
},
] as Array<SectionBase<{key: string}>>
}
renderItem={({item}) => <item value={item.key} />}
getItem={(data, key) => data[key]}
getItemCount={data => data.length}
getItemLayout={(data, index) => ({
length: ITEM_HEIGHT,
offset: ITEM_HEIGHT * index,
index,
})}
{...props}
/>,
);
});
const instance = nullthrows(component).getInstance();
const spy = jest.fn();
// $FlowFixMe[incompatible-use] wrong types
// $FlowFixMe[prop-missing] wrong types
instance._listRef.scrollToIndex = spy;
return {
instance,
spy,
};
};
it('when sticky stickySectionHeadersEnabled={true}, header height is added to the developer-provided viewOffset', async () => {
const {instance, spy} = await createVirtualizedSectionList({
stickySectionHeadersEnabled: true,
});
const viewOffset = 25;
// $FlowFixMe[prop-missing] scrollToLocation isn't on instance
instance?.scrollToLocation({
sectionIndex: 0,
itemIndex: 1,
viewOffset,
});
expect(spy).toHaveBeenCalledWith({
index: 1,
itemIndex: 1,
sectionIndex: 0,
viewOffset: viewOffset + ITEM_HEIGHT,
});
});
it.each([
[
// prevents #18098
{sectionIndex: 0, itemIndex: 0},
{
index: 0,
itemIndex: 0,
sectionIndex: 0,
viewOffset: 0,
},
],
[
{sectionIndex: 2, itemIndex: 1},
{
index: 11,
itemIndex: 1,
sectionIndex: 2,
viewOffset: 0,
},
],
[
{
sectionIndex: 0,
itemIndex: 1,
viewOffset: 25,
},
{
index: 1,
itemIndex: 1,
sectionIndex: 0,
viewOffset: 25,
},
],
])(
'given sectionIndex, itemIndex and viewOffset, scrollToIndex is called with correct params',
async (scrollToLocationParams, expected) => {
const {instance, spy} = await createVirtualizedSectionList();
// $FlowFixMe[prop-missing] scrollToLocation not on instance
instance?.scrollToLocation(scrollToLocationParams);
expect(spy).toHaveBeenCalledWith(expected);
},
);
});
});