Skip to content

Commit 2f8c454

Browse files
committed
[changed] Assert ProgressBar children can be ProgressBar only.
1 parent 54dd9fa commit 2f8c454

File tree

2 files changed

+39
-8
lines changed

2 files changed

+39
-8
lines changed

src/ProgressBar.js

+27-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { cloneElement } from 'react';
1+
import React, { cloneElement, PropTypes } from 'react';
22
import Interpolate from './Interpolate';
33
import BootstrapMixin from './BootstrapMixin';
44
import classNames from 'classnames';
@@ -7,13 +7,14 @@ import ValidComponentChildren from './utils/ValidComponentChildren';
77

88
const ProgressBar = React.createClass({
99
propTypes: {
10-
min: React.PropTypes.number,
11-
now: React.PropTypes.number,
12-
max: React.PropTypes.number,
13-
label: React.PropTypes.node,
14-
srOnly: React.PropTypes.bool,
15-
striped: React.PropTypes.bool,
16-
active: React.PropTypes.bool
10+
min: PropTypes.number,
11+
now: PropTypes.number,
12+
max: PropTypes.number,
13+
label: PropTypes.node,
14+
srOnly: PropTypes.bool,
15+
striped: PropTypes.bool,
16+
active: PropTypes.bool,
17+
children: onlyProgressBar
1718
},
1819

1920
mixins: [BootstrapMixin],
@@ -127,4 +128,22 @@ const ProgressBar = React.createClass({
127128
}
128129
});
129130

131+
/**
132+
* Custom propTypes checker
133+
*/
134+
function onlyProgressBar(props, propName, componentName) {
135+
if (props[propName]) {
136+
let error, childIdentifier;
137+
138+
React.Children.forEach(props[propName], (child) => {
139+
if (child.type !== ProgressBar) {
140+
childIdentifier = (child.type.displayName ? child.type.displayName : child.type);
141+
error = new Error(`Children of ${componentName} can contain only ProgressBar components. Found ${childIdentifier}`);
142+
}
143+
});
144+
145+
return error;
146+
}
147+
}
148+
130149
export default ProgressBar;

test/ProgressBarSpec.js

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import ReactTestUtils from 'react/lib/ReactTestUtils';
33
import ProgressBar from '../src/ProgressBar';
4+
import {shouldWarn} from './helpers';
45

56
const getProgressBarNode = function (wrapper) {
67
return React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithClass(wrapper, 'progress-bar'));
@@ -181,4 +182,15 @@ describe('ProgressBar', function () {
181182
assert.equal(bar2.style.width, '30%');
182183
});
183184

185+
it('allows only ProgressBar in children', function () {
186+
ReactTestUtils.renderIntoDocument(
187+
<ProgressBar>
188+
<ProgressBar key={1} />
189+
<div />
190+
<ProgressBar key={2} />
191+
</ProgressBar>
192+
);
193+
194+
shouldWarn('Failed propType');
195+
});
184196
});

0 commit comments

Comments
 (0)