Skip to content

Commit 0c27403

Browse files
committed
[fixed] Don't render Grid or Row with Tabs
Fixes react-bootstrap#1276
1 parent 360fceb commit 0c27403

File tree

2 files changed

+41
-35
lines changed

2 files changed

+41
-35
lines changed

src/Tabs.js

+20-17
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1+
import classNames from 'classnames';
12
import React, { cloneElement } from 'react';
23

34
import Col from './Col';
4-
import Grid from './Grid';
55
import Nav from './Nav';
66
import NavItem from './NavItem';
7-
import Row from './Row';
87
import styleMaps from './styleMaps';
98

109
import ValidComponentChildren from './utils/ValidComponentChildren';
@@ -61,14 +60,19 @@ const Tabs = React.createClass({
6160
paneWidth: React.PropTypes.oneOfType([
6261
React.PropTypes.number,
6362
React.PropTypes.object
64-
])
63+
]),
64+
/**
65+
* Render without clearfix if horizontally positioned
66+
*/
67+
standalone: React.PropTypes.bool
6568
},
6669

6770
getDefaultProps() {
6871
return {
6972
animation: true,
7073
tabWidth: 2,
71-
position: 'top'
74+
position: 'top',
75+
standalone: false
7276
};
7377
},
7478

@@ -114,6 +118,7 @@ const Tabs = React.createClass({
114118
bsStyle,
115119
tabWidth,
116120
paneWidth,
121+
standalone,
117122
children,
118123
...props
119124
} = this.props;
@@ -144,6 +149,11 @@ const Tabs = React.createClass({
144149
const childPanes = ValidComponentChildren.map(children, this.renderPane);
145150

146151
if (isHorizontal) {
152+
if (!standalone) {
153+
containerProps.className =
154+
classNames(containerProps.className, 'clearfix');
155+
}
156+
147157
const {tabsColProps, panesColProps} =
148158
this.getColProps({tabWidth, paneWidth});
149159

@@ -158,28 +168,21 @@ const Tabs = React.createClass({
158168
</Col>
159169
);
160170

161-
let body;
162171
if (position === 'left') {
163-
body = (
164-
<Row {...containerProps}>
172+
return (
173+
<div {...containerProps}>
165174
{tabs}
166175
{panes}
167-
</Row>
176+
</div>
168177
);
169178
} else {
170-
body = (
171-
<Row {...containerProps}>
179+
return (
180+
<div {...containerProps}>
172181
{panes}
173182
{tabs}
174-
</Row>
183+
</div>
175184
);
176185
}
177-
178-
return (
179-
<Grid>
180-
{body}
181-
</Grid>
182-
);
183186
} else {
184187
return (
185188
<div {...containerProps}>

test/TabsSpec.js

+21-18
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ import React from 'react';
22
import ReactTestUtils from 'react/lib/ReactTestUtils';
33

44
import Col from '../src/Col';
5-
import Grid from '../src/Grid';
65
import Nav from '../src/Nav';
76
import NavItem from '../src/NavItem';
8-
import Row from '../src/Row';
97
import Tab from '../src/Tab';
108
import Tabs from '../src/Tabs';
119

@@ -263,18 +261,10 @@ describe('Tabs', function () {
263261
});
264262

265263
it('doesn\'t render grid elements', function () {
266-
const grids = ReactTestUtils.scryRenderedComponentsWithType(
267-
instance, Grid
268-
);
269-
const rows = ReactTestUtils.scryRenderedComponentsWithType(
270-
instance, Row
271-
);
272264
const cols = ReactTestUtils.scryRenderedComponentsWithType(
273265
instance, Col
274266
);
275267

276-
expect(grids).to.be.empty;
277-
expect(rows).to.be.empty;
278268
expect(cols).to.be.empty;
279269
});
280270
});
@@ -308,20 +298,16 @@ describe('Tabs', function () {
308298
});
309299

310300
it('renders grid elements', function () {
311-
const grids = ReactTestUtils.scryRenderedComponentsWithType(
312-
instance, Grid
313-
);
314-
const rows = ReactTestUtils.scryRenderedComponentsWithType(
315-
instance, Row
316-
);
317301
const cols = ReactTestUtils.scryRenderedComponentsWithType(
318302
instance, Col
319303
);
320304

321-
expect(grids).to.have.length(1);
322-
expect(rows).to.have.length(1);
323305
expect(cols).to.have.length(2);
324306
});
307+
308+
it('should render with clearfix', function() {
309+
expect(React.findDOMNode(instance).className).to.match(/\bclearfix\b/);
310+
});
325311
});
326312

327313
describe('when only tabWidth is provided', function() {
@@ -385,6 +371,23 @@ describe('Tabs', function () {
385371
.to.match(/\bcol-xs-7\b/).and.to.match(/\bcol-md-8\b/);
386372
});
387373
});
374+
375+
describe('when standalone', function() {
376+
let instance;
377+
378+
beforeEach(function () {
379+
instance = ReactTestUtils.renderIntoDocument(
380+
<Tabs defaultActiveKey={1} position="left" standalone>
381+
<Tab title="A Tab" eventKey={1}>Tab content</Tab>
382+
</Tabs>
383+
);
384+
});
385+
386+
it('should not render with clearfix', function() {
387+
expect(React.findDOMNode(instance).className)
388+
.to.not.match(/\bclearfix\b/);
389+
});
390+
});
388391
});
389392

390393
describe('animation', function () {

0 commit comments

Comments
 (0)