Skip to content

Commit 1d8b7c7

Browse files
committed
[added] TabbedArea NavItem renderTab() className TabbedArea TabPane rendering doesn't carry across the className property. This means it is not easy for users to customize the look/feel of the tabs. Added className to the properties copied in the renderTab function and also pass additional properties down via ...other
1 parent 8a901fd commit 1d8b7c7

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

src/TabbedArea.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,13 @@ const TabbedArea = React.createClass({
108108
},
109109

110110
renderTab(child) {
111-
let key = child.props.eventKey;
111+
let {eventKey, className, tab } = child.props;
112112
return (
113113
<NavItem
114-
ref={'tab' + key}
115-
eventKey={key}>
116-
{child.props.tab}
114+
ref={'tab' + eventKey}
115+
eventKey={eventKey}
116+
className={className} >
117+
{tab}
117118
</NavItem>
118119
);
119120
},

test/TabbedAreaSpec.js

+16
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,20 @@ describe('TabbedArea', function () {
182182

183183
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'nav-pills'));
184184
});
185+
186+
it('Should pass className to rendered Tab NavItem', function () {
187+
let instance = ReactTestUtils.renderIntoDocument(
188+
<TabbedArea activeKey={3}>
189+
<TabPane tab="Tab 1" eventKey={1}>Tab 1 content</TabPane>
190+
<TabPane className="pull-right" tab="Tab 2" eventKey={3}>Tab 3 content</TabPane>
191+
</TabbedArea>
192+
);
193+
194+
let tabPane = ReactTestUtils.scryRenderedComponentsWithType(instance, TabPane);
195+
196+
assert.equal(tabPane.length, 2);
197+
assert.equal(tabPane[1].getDOMNode().getAttribute('class').match(/pull-right/)[0], 'pull-right');
198+
});
199+
200+
185201
});

0 commit comments

Comments
 (0)