1
+ /* eslint react/no-multi-comp: 0 */
1
2
import React , { PropTypes } from 'react' ;
2
3
import uncontrollable from 'uncontrollable' ;
3
4
import classNames from 'classnames' ;
4
5
import elementType from 'react-prop-types/lib/elementType' ;
6
+ import deprecated from 'react-prop-types/lib/deprecated' ;
5
7
import deprecationWarning from './utils/deprecationWarning' ;
6
8
import ValidComponentChildren from './utils/ValidComponentChildren' ;
7
9
@@ -20,9 +22,11 @@ let has = (obj, key) => obj && {}.hasOwnProperty.call(obj, key);
20
22
function shouldRenderOldNavbar ( component ) {
21
23
let props = component . props ;
22
24
return (
25
+ has ( props , 'brand' ) ||
23
26
has ( props , 'toggleButton' ) ||
24
27
has ( props , 'toggleNavKey' ) ||
25
- has ( props , 'brand' ) ||
28
+ has ( props , 'navExpanded' ) ||
29
+ has ( props , 'defaultNavExpanded' ) ||
26
30
// this should be safe b/c the new version requires wrapping in a Header
27
31
ValidComponentChildren . findValidComponents (
28
32
props . children , child => child . props . bsRole === 'brand'
@@ -72,14 +76,20 @@ let Navbar = React.createClass({
72
76
*
73
77
* @controllable onToggle
74
78
*/
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.' )
76
86
} ,
77
87
78
88
childContextTypes : {
79
89
$bs_navbar : PropTypes . bool ,
80
90
$bs_navbar_bsClass : PropTypes . string ,
81
91
$bs_navbar_onToggle : PropTypes . func ,
82
- $bs_navbar_navExpanded : PropTypes . bool ,
92
+ $bs_navbar_expanded : PropTypes . bool ,
83
93
} ,
84
94
85
95
getDefaultProps ( ) {
@@ -99,16 +109,16 @@ let Navbar = React.createClass({
99
109
$bs_navbar : true ,
100
110
$bs_navbar_bsClass : this . props . bsClass ,
101
111
$bs_navbar_onToggle : this . handleToggle ,
102
- $bs_navbar_navExpanded : this . props . navExpanded
112
+ $bs_navbar_expanded : this . props . expanded
103
113
} ;
104
114
} ,
105
115
106
116
handleToggle ( ) {
107
- this . props . onToggle ( ! this . props . navExpanded ) ;
117
+ this . props . onToggle ( ! this . props . expanded ) ;
108
118
} ,
109
119
110
120
isNavExpanded ( ) {
111
- return ! ! this . props . navExpanded ;
121
+ return ! ! this . props . expanded ;
112
122
} ,
113
123
114
124
render ( ) {
@@ -127,7 +137,8 @@ let Navbar = React.createClass({
127
137
if ( shouldRenderOldNavbar ( this ) ) {
128
138
deprecationWarning ( { message :
129
139
'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 ' +
131
142
'use of the `<NavBrand>` component outside of a `<Navbar.Header>`. \n\n' +
132
143
'for more details see: http://react-bootstrap.github.io/components.html#navbars'
133
144
} ) ;
@@ -159,7 +170,7 @@ const NAVBAR_STATES = [DEFAULT, INVERSE];
159
170
160
171
Navbar = bsStyles ( NAVBAR_STATES , DEFAULT ,
161
172
bsClasses ( 'navbar' ,
162
- uncontrollable ( Navbar , { navExpanded : 'onToggle' } )
173
+ uncontrollable ( Navbar , { expanded : 'onToggle' } )
163
174
)
164
175
) ;
165
176
@@ -177,8 +188,16 @@ function createSimpleWrapper(tag, suffix, displayName) {
177
188
178
189
wrapper . displayName = displayName ;
179
190
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
+ } ;
182
201
183
202
wrapper . contextTypes = {
184
203
$bs_navbar_bsClass : PropTypes . string
0 commit comments