Skip to content

Commit 6bad1e8

Browse files
committed
[fixed] Explicitly disallow justified Navbar Navs
Per upstream TWBS docs, they're not supported
1 parent 80b963e commit 6bad1e8

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

src/Nav.js

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
import React, { cloneElement } from 'react';
2-
import BootstrapMixin from './BootstrapMixin';
3-
import Collapse from './Collapse';
41
import classNames from 'classnames';
2+
import React, { cloneElement } from 'react';
3+
import all from 'react-prop-types/lib/all';
54

65
import ValidComponentChildren from './utils/ValidComponentChildren';
76
import createChainedFunction from './utils/createChainedFunction';
87

8+
import BootstrapMixin from './BootstrapMixin';
9+
import Collapse from './Collapse';
10+
911
const Nav = React.createClass({
1012
mixins: [BootstrapMixin],
1113

@@ -14,7 +16,17 @@ const Nav = React.createClass({
1416
activeKey: React.PropTypes.any,
1517
bsStyle: React.PropTypes.oneOf(['tabs', 'pills']),
1618
stacked: React.PropTypes.bool,
17-
justified: React.PropTypes.bool,
19+
/**
20+
* Make `NavItem`s equal widths on small or larger displays and stacked
21+
* otherwise. Not supported for `Nav`s in `Navbar`s.
22+
*/
23+
justified: all(
24+
React.PropTypes.bool,
25+
({justified, navbar}) => (
26+
justified && navbar ?
27+
Error('justified navbar `Nav`s are not supported') : null
28+
)
29+
),
1830
onSelect: React.PropTypes.func,
1931
collapsible: React.PropTypes.bool,
2032
/**

test/NavSpec.js

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import Button from '../src/Button';
55
import Nav from '../src/Nav';
66
import NavItem from '../src/NavItem';
77

8+
import {shouldWarn} from './helpers';
9+
810
describe('Nav', () => {
911
it('Should set the correct item active', () => {
1012
let instance = ReactTestUtils.renderIntoDocument(
@@ -178,6 +180,13 @@ describe('Nav', () => {
178180
assert.equal(navNode.id, 'nav-id');
179181
});
180182

183+
it('Should warn when attempting to use a justified navbar nav', () => {
184+
ReactTestUtils.renderIntoDocument(
185+
<Nav navbar justified />
186+
);
187+
188+
shouldWarn('justified navbar `Nav`s are not supported');
189+
});
181190

182191
describe('Web Accessibility', () => {
183192

0 commit comments

Comments
 (0)