Skip to content

Commit f9ea411

Browse files
committed
[changed] navbar navExpanded to expanded
1 parent 0b5662d commit f9ea411

File tree

4 files changed

+39
-20
lines changed

4 files changed

+39
-20
lines changed

docs/src/ComponentsPage.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,8 @@ const ComponentsPage = React.createClass({
525525
<h4>Additional Import Options</h4>
526526
<p>
527527
The Navbar Header, Toggle, Brand, and Collapse components are available as static properties
528-
the <code>{"<Navbar/>"}</code> component, but you can also,
529-
import them directly from the <code>/lib</code> directory
528+
the <code>{"<Navbar/>"}</code> component but you can also import them directly from
529+
the <code>/lib</code> directory
530530
like: <code>{'require("react-bootstrap/lib/NavbarHeader")'}</code>.
531531
</p>
532532
</div>
@@ -540,7 +540,7 @@ const ComponentsPage = React.createClass({
540540
<p>
541541
By setting the prop <code>defaultNavExpanded</code> the Navbar will start
542542
expanded by default. You can also finely control the collapsing behavior by using
543-
the <code>navExpanded</code> and <code>onToggle</code> props.
543+
the <code>expanded</code> and <code>onToggle</code> props.
544544
</p>
545545

546546
<ReactPlayground codeText={Samples.NavbarCollapsible} />

src/Navbar.js

+29-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
/* eslint react/no-multi-comp: 0 */
12
import React, { PropTypes } from 'react';
23
import uncontrollable from 'uncontrollable';
34
import classNames from 'classnames';
45
import elementType from 'react-prop-types/lib/elementType';
6+
import deprecated from 'react-prop-types/lib/deprecated';
57
import deprecationWarning from './utils/deprecationWarning';
68
import ValidComponentChildren from './utils/ValidComponentChildren';
79

@@ -20,9 +22,11 @@ let has = (obj, key) => obj && {}.hasOwnProperty.call(obj, key);
2022
function shouldRenderOldNavbar(component) {
2123
let props = component.props;
2224
return (
25+
has(props, 'brand') ||
2326
has(props, 'toggleButton') ||
2427
has(props, 'toggleNavKey') ||
25-
has(props, 'brand') ||
28+
has(props, 'navExpanded') ||
29+
has(props, 'defaultNavExpanded') ||
2630
// this should be safe b/c the new version requires wrapping in a Header
2731
ValidComponentChildren.findValidComponents(
2832
props.children, child => child.props.bsRole === 'brand'
@@ -72,14 +76,20 @@ let Navbar = React.createClass({
7276
*
7377
* @controllable onToggle
7478
*/
75-
navExpanded: React.PropTypes.bool
79+
expanded: React.PropTypes.bool,
80+
81+
/**
82+
* @deprecated
83+
*/
84+
navExpanded: deprecated(React.PropTypes.bool,
85+
'Use `expanded` and `defaultExpanded` instead.')
7686
},
7787

7888
childContextTypes: {
7989
$bs_navbar: PropTypes.bool,
8090
$bs_navbar_bsClass: PropTypes.string,
8191
$bs_navbar_onToggle: PropTypes.func,
82-
$bs_navbar_navExpanded: PropTypes.bool,
92+
$bs_navbar_expanded: PropTypes.bool,
8393
},
8494

8595
getDefaultProps() {
@@ -99,16 +109,16 @@ let Navbar = React.createClass({
99109
$bs_navbar: true,
100110
$bs_navbar_bsClass: this.props.bsClass,
101111
$bs_navbar_onToggle: this.handleToggle,
102-
$bs_navbar_navExpanded: this.props.navExpanded
112+
$bs_navbar_expanded: this.props.expanded
103113
};
104114
},
105115

106116
handleToggle() {
107-
this.props.onToggle(!this.props.navExpanded);
117+
this.props.onToggle(!this.props.expanded);
108118
},
109119

110120
isNavExpanded() {
111-
return !!this.props.navExpanded;
121+
return !!this.props.expanded;
112122
},
113123

114124
render() {
@@ -127,7 +137,8 @@ let Navbar = React.createClass({
127137
if (shouldRenderOldNavbar(this)) {
128138
deprecationWarning({ message:
129139
'Rendering a deprecated version of the Navbar due to the use of deprecated ' +
130-
'props. Please use the new Navbar api, and remove `toggleButton`, `toggleNavKey`, `brand` or ' +
140+
'props. Please use the new Navbar api, and remove `toggleButton`, ' +
141+
'`toggleNavKey`, `brand`, `navExpanded`, `defaultNavExpanded` props or the ' +
131142
'use of the `<NavBrand>` component outside of a `<Navbar.Header>`. \n\n' +
132143
'for more details see: http://react-bootstrap.github.io/components.html#navbars'
133144
});
@@ -159,7 +170,7 @@ const NAVBAR_STATES = [DEFAULT, INVERSE];
159170

160171
Navbar = bsStyles(NAVBAR_STATES, DEFAULT,
161172
bsClasses('navbar',
162-
uncontrollable(Navbar, { navExpanded: 'onToggle' })
173+
uncontrollable(Navbar, { expanded: 'onToggle' })
163174
)
164175
);
165176

@@ -177,8 +188,16 @@ function createSimpleWrapper(tag, suffix, displayName) {
177188

178189
wrapper.displayName = displayName;
179190

180-
wrapper.propTypes = { componentClass: elementType};
181-
wrapper.defaultProps = { componentClass: tag };
191+
wrapper.propTypes = {
192+
componentClass: elementType,
193+
pullRight: React.PropTypes.bool,
194+
pullLeft: React.PropTypes.bool,
195+
};
196+
wrapper.defaultProps = {
197+
componentClass: tag,
198+
pullRight: false,
199+
pullLeft: false
200+
};
182201

183202
wrapper.contextTypes = {
184203
$bs_navbar_bsClass: PropTypes.string

src/NavbarCollapse.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ let NavbarCollapse = React.createClass({
66

77
contextTypes: {
88
$bs_navbar_bsClass: PropTypes.string,
9-
$bs_navbar_navExpanded: PropTypes.bool
9+
$bs_navbar_expanded: PropTypes.bool
1010
},
1111

1212
render() {
1313
let { children, ...props } = this.props;
1414
let {
1515
$bs_navbar_bsClass: bsClass = 'navbar',
16-
$bs_navbar_navExpanded: expanded,
16+
$bs_navbar_expanded: expanded,
1717
} = this.context;
1818

1919
return (

test/NavbarSpec.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ describe('Navbar', () => {
172172
ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'navbar-collapse');
173173
});
174174

175-
it('Should pass navExpanded to Collapse', () => {
175+
it('Should pass expanded to Collapse', () => {
176176
let instance = ReactTestUtils.renderIntoDocument(
177-
<Navbar defaultNavExpanded>
177+
<Navbar defaultExpanded>
178178
<Navbar.Collapse>
179179
hello
180180
</Navbar.Collapse>
@@ -183,7 +183,7 @@ describe('Navbar', () => {
183183

184184
let collapse = ReactTestUtils.findRenderedComponentWithType(instance, Navbar.Collapse);
185185

186-
expect(collapse.context.$bs_navbar_navExpanded).to.equal(true);
186+
expect(collapse.context.$bs_navbar_expanded).to.equal(true);
187187
});
188188

189189
it('Should wire the toggle to the collapse', () => {
@@ -201,11 +201,11 @@ describe('Navbar', () => {
201201
let toggle = ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'navbar-toggle');
202202
let collapse = ReactTestUtils.findRenderedComponentWithType(instance, Navbar.Collapse);
203203

204-
expect(collapse.context.$bs_navbar_navExpanded).to.not.be.ok;
204+
expect(collapse.context.$bs_navbar_expanded).to.not.be.ok;
205205

206206
ReactTestUtils.Simulate.click(ReactDOM.findDOMNode(toggle));
207207

208-
expect(collapse.context.$bs_navbar_navExpanded).to.equal(true);
208+
expect(collapse.context.$bs_navbar_expanded).to.equal(true);
209209
});
210210

211211
it('Should pass `bsClass` down to sub components', () => {

0 commit comments

Comments
 (0)