-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTabsNav.js
More file actions
56 lines (47 loc) · 1.36 KB
/
Copy pathTabsNav.js
File metadata and controls
56 lines (47 loc) · 1.36 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
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import TabsNavItem from './TabsNavItem';
/**
* Tabs sub-component responsible for rendering horizontal tab navigation
* @param {Object} props
* @returns {JSX}
*/
class TabsNav extends Component {
buildNav() {
const navItems = this
.props
.tabs
.map((tab, index) => {
const label = tab.props.label;
return (
<li key={'tabNav_' + index}>
<TabsNavItem
icon={this.props.showIconsHorz ? tab.props.icon : null}
index={index}
label={label}
onClick={this.props.onClick}
selected={this.props.selected}
/>
</li>
);
});
return navItems;
}
render() {
return (
<ol className="tabs__nav" role="tablist">
{this.buildNav()}
</ol>
);
}
}
TabsNav.propTypes = {
onClick: PropTypes.func.isRequired,
selected: PropTypes.number.isRequired,
tabs: PropTypes.arrayOf(PropTypes.object),
showIconsHorz: PropTypes.bool,
};
TabsNav.defaultProps = {
showIconsHorz: false,
};
export default TabsNav;