react-virtualized
Version:
React components for efficiently rendering large, scrollable lists and tabular data
30 lines (29 loc) • 532 B
JavaScript
import initCellMetadata from './initCellMetadata';
// Default cell sizes and offsets for use in below tests
export function getCellMetadata() {
var cellSizes = [10,
// 0: 0..0 (min)
20,
// 1: 0..10
15,
// 2: 0..30
10,
// 3: 5..45
15,
// 4: 20..55
30,
// 5: 50..70
20,
// 6: 70..100
10,
// 7: 80..110
30 // 8: 110..110 (max)
];
return initCellMetadata({
cellCount: cellSizes.length,
size: function size(_ref) {
var index = _ref.index;
return cellSizes[index];
}
});
}