Skip to content

Commit bad277e

Browse files
committed
[changed] Use PropTypes.node for validation and fix/add tests
Previously the ButtonInput and FormControls.Static were using a PropType check of either number or string. This change moves the check to node so that you can pass in elements as well as numbers and strings.
1 parent d679b2b commit bad277e

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

src/utils/childrenValueInputValidation.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import React from 'react';
22
import { singlePropFrom } from './CustomPropTypes';
33

44
const propList = ['children', 'value'];
5-
const typeList = [React.PropTypes.number, React.PropTypes.string];
65

76
export default function valueValidation(props, propName, componentName) {
87
let error = singlePropFrom(propList)(props, propName, componentName);
8+
99
if (!error) {
10-
const oneOfType = React.PropTypes.oneOfType(typeList);
11-
error = oneOfType(props, propName, componentName);
10+
error = React.PropTypes.node(props, propName, componentName);
1211
}
12+
1313
return error;
1414
}

test/ButtonInputSpec.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ describe('ButtonInput', () =>{
4242
ReactTestUtils.renderIntoDocument(
4343
<ButtonInput value="button" bsStyle="danger" />
4444
);
45-
46-
console.warn.called.should.be.false;
4745
});
4846

4947
it('throws warning about wrong type for bsStyle=error', function () {
@@ -72,11 +70,9 @@ describe('ButtonInput', () =>{
7270
assert.notInstanceOf(result, Error);
7371
});
7472

75-
it('does not allow elements for children', function () {
73+
it('allows elements as children', function () {
7674
ReactTestUtils.renderIntoDocument(
7775
<ButtonInput><span>blah</span></ButtonInput>
7876
);
79-
80-
shouldWarn('propType: Invalid');
8177
});
8278
});

test/FormControlsSpec.js

+6
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,11 @@ describe('Form Controls', function () {
3333

3434
result.should.be.instanceOf(Error);
3535
});
36+
37+
it('allows elements as children', function () {
38+
ReactTestUtils.renderIntoDocument(
39+
<FormControls.Static><span>blah</span></FormControls.Static>
40+
);
41+
});
3642
});
3743
});

0 commit comments

Comments
 (0)