-
Notifications
You must be signed in to change notification settings - Fork 587
/
ItemList.js
95 lines (87 loc) · 2.75 KB
/
ItemList.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
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import Item from './Item';
import compareObjects from './compareObjects';
export default class ItemsList extends Component {
static propTypes = {
items: PropTypes.array.isRequired,
itemProps: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
renderItem: PropTypes.func.isRequired,
renderItemData: PropTypes.object.isRequired,
sectionIndex: PropTypes.number,
highlightedItemIndex: PropTypes.number,
onHighlightedItemChange: PropTypes.func.isRequired,
getItemId: PropTypes.func.isRequired,
theme: PropTypes.func.isRequired,
keyPrefix: PropTypes.string.isRequired,
};
static defaultProps = {
sectionIndex: null,
};
shouldComponentUpdate(nextProps) {
return compareObjects(nextProps, this.props, ['itemProps']);
}
storeHighlightedItemReference = (highlightedItem) => {
this.props.onHighlightedItemChange(
highlightedItem === null ? null : highlightedItem.item
);
};
render() {
const {
items,
itemProps,
renderItem,
renderItemData,
sectionIndex,
highlightedItemIndex,
getItemId,
theme,
keyPrefix,
} = this.props;
const sectionPrefix =
sectionIndex === null
? keyPrefix
: `${keyPrefix}section-${sectionIndex}-`;
const isItemPropsFunction = typeof itemProps === 'function';
return (
<ul role="listbox" {...theme(`${sectionPrefix}items-list`, 'itemsList')}>
{items.map((item, itemIndex) => {
const isFirst = itemIndex === 0;
const isHighlighted = itemIndex === highlightedItemIndex;
const itemKey = `${sectionPrefix}item-${itemIndex}`;
const itemPropsObj = isItemPropsFunction
? itemProps({ sectionIndex, itemIndex })
: itemProps;
const allItemProps = {
id: getItemId(sectionIndex, itemIndex),
'aria-selected': isHighlighted,
...theme(
itemKey,
'item',
isFirst && 'itemFirst',
isHighlighted && 'itemHighlighted'
),
...itemPropsObj,
};
if (isHighlighted) {
allItemProps.ref = this.storeHighlightedItemReference;
}
// `key` is provided by theme()
/* eslint-disable react/jsx-key */
return (
<Item
{...allItemProps}
sectionIndex={sectionIndex}
isHighlighted={isHighlighted}
itemIndex={itemIndex}
item={item}
renderItem={renderItem}
renderItemData={renderItemData}
/>
);
/* eslint-enable react/jsx-key */
})}
</ul>
);
}
}