File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,22 @@ const Glyphicon = React.createClass({
7
7
mixins : [ BootstrapMixin ] ,
8
8
9
9
propTypes : {
10
- glyph : React . PropTypes . oneOf ( styleMaps . GLYPHS ) . isRequired
10
+ glyph : React . PropTypes . oneOf ( styleMaps . GLYPHS ) . isRequired ,
11
+ formControlFeedback : React . PropTypes . bool
11
12
} ,
12
13
13
14
getDefaultProps ( ) {
14
15
return {
15
- bsClass : 'glyphicon'
16
+ bsClass : 'glyphicon' ,
17
+ formControlFeedback : false
16
18
} ;
17
19
} ,
18
20
19
21
render ( ) {
20
22
let classes = this . getBsClassSet ( ) ;
21
23
22
24
classes [ 'glyphicon-' + this . props . glyph ] = true ;
25
+ classes [ 'form-control-feedback' ] = this . props . formControlFeedback ;
23
26
24
27
return (
25
28
< span { ...this . props } className = { classNames ( this . props . className , classes ) } >
Original file line number Diff line number Diff line change @@ -10,4 +10,22 @@ describe('Glyphicon', function () {
10
10
assert . ok ( React . findDOMNode ( instance ) . className . match ( / \b g l y p h i c o n \b / ) ) ;
11
11
assert . ok ( React . findDOMNode ( instance ) . className . match ( / \b g l y p h i c o n - s t a r \b / ) ) ;
12
12
} ) ;
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 ( / \b f o r m - c o n t r o l - f e e d b a c k \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 ( / \b f o r m - c o n t r o l - f e e d b a c k \b / ) ) ;
29
+ } ) ;
30
+ } ) ;
13
31
} ) ;
You can’t perform that action at this time.
0 commit comments