forked from reactjs/react-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabPanel.js
55 lines (51 loc) · 1.1 KB
/
TabPanel.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
import PropTypes from 'prop-types';
import React from 'react';
import cx from 'clsx';
const DEFAULT_CLASS = 'react-tabs__tab-panel';
const defaultProps = {
className: DEFAULT_CLASS,
forceRender: false,
selectedClassName: `${DEFAULT_CLASS}--selected`,
};
const propTypes = {
children: PropTypes.node,
className: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
PropTypes.object,
]),
forceRender: PropTypes.bool,
id: PropTypes.string, // private
selected: PropTypes.bool, // private
selectedClassName: PropTypes.string,
};
const TabPanel = (props) => {
const {
children,
className,
forceRender,
id,
selected,
selectedClassName,
...attributes
} = {
...defaultProps,
...props,
};
return (
<div
{...attributes}
className={cx(className, {
[selectedClassName]: selected,
})}
role="tabpanel"
id={`panel${id}`}
aria-labelledby={`tab${id}`}
>
{forceRender || selected ? children : null}
</div>
);
};
TabPanel.tabsRole = 'TabPanel';
TabPanel.propTypes = propTypes;
export default TabPanel;