Skip to content

Commit 83cdaa3

Browse files
author
André Ligné
committedAug 10, 2015
[added] formControlFeedback prop to Glyphicon
Less typing when passing a `Glyphicon` as feedbackIcon into an `Input`.
1 parent 4f1fd83 commit 83cdaa3

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
 

‎src/Glyphicon.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,22 @@ const Glyphicon = React.createClass({
77
mixins: [BootstrapMixin],
88

99
propTypes: {
10-
glyph: React.PropTypes.oneOf(styleMaps.GLYPHS).isRequired
10+
glyph: React.PropTypes.oneOf(styleMaps.GLYPHS).isRequired,
11+
formControlFeedback: React.PropTypes.bool
1112
},
1213

1314
getDefaultProps() {
1415
return {
15-
bsClass: 'glyphicon'
16+
bsClass: 'glyphicon',
17+
formControlFeedback: false
1618
};
1719
},
1820

1921
render() {
2022
let classes = this.getBsClassSet();
2123

2224
classes['glyphicon-' + this.props.glyph] = true;
25+
classes['form-control-feedback'] = this.props.formControlFeedback;
2326

2427
return (
2528
<span {...this.props} className={classNames(this.props.className, classes)}>

‎test/GlyphiconSpec.js

+18
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,22 @@ describe('Glyphicon', function () {
1010
assert.ok(React.findDOMNode(instance).className.match(/\bglyphicon\b/));
1111
assert.ok(React.findDOMNode(instance).className.match(/\bglyphicon-star\b/));
1212
});
13+
14+
it('renders without the .form-control-feedback class', function () {
15+
let instance = ReactTestUtils.renderIntoDocument(
16+
<Glyphicon glyph='star' />
17+
);
18+
19+
assert.notOk(React.findDOMNode(instance).className.match(/\bform-control-feedback\b/));
20+
});
21+
22+
context('when setting the formControlFeedback prop', function () {
23+
it('should have the .form-control-feedback class set', function () {
24+
let instance = ReactTestUtils.renderIntoDocument(
25+
<Glyphicon formControlFeedback glyph='star' />
26+
);
27+
28+
assert.ok(React.findDOMNode(instance).className.match(/\bform-control-feedback\b/));
29+
});
30+
});
1331
});

0 commit comments

Comments
 (0)
Please sign in to comment.