File tree 3 files changed +25
-4
lines changed
3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,15 @@ class ListGroup extends React.Component {
16
16
} else if ( React . Children . count ( this . props . children ) === 1 && ! Array . isArray ( this . props . children ) ) {
17
17
let child = this . props . children ;
18
18
19
- childrenAnchors = child . props . href ? true : false ;
19
+ childrenAnchors = this . isAnchor ( child . props ) ;
20
20
21
21
} else {
22
22
23
23
childrenAnchors = Array . prototype . some . call ( this . props . children , ( child ) => {
24
- return ! Array . isArray ( child ) ? child . props . href : Array . prototype . some . call ( child , ( subChild ) => {
25
- return subChild . props . href ;
24
+ return ! Array . isArray ( child ) ? this . isAnchor ( child . props ) : Array . prototype . some . call ( child , ( subChild ) => {
25
+ return this . isAnchor ( subChild . props ) ;
26
26
} ) ;
27
+
27
28
} ) ;
28
29
29
30
}
@@ -35,6 +36,10 @@ class ListGroup extends React.Component {
35
36
}
36
37
}
37
38
39
+ isAnchor ( props ) {
40
+ return ( props . href || props . onClick ) ;
41
+ }
42
+
38
43
renderUL ( items ) {
39
44
let listItems = ValidComponentChildren . map ( items ,
40
45
( item , index ) => cloneElement ( item , { listItem : true } )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const ListGroupItem = React.createClass({
31
31
classes . active = this . props . active ;
32
32
classes . disabled = this . props . disabled ;
33
33
34
- if ( this . props . href || this . props . target || this . props . onClick ) {
34
+ if ( this . props . href || this . props . onClick ) {
35
35
return this . renderAnchor ( classes ) ;
36
36
} else if ( this . props . listItem ) {
37
37
return this . renderLi ( classes ) ;
Original file line number Diff line number Diff line change @@ -120,4 +120,20 @@ describe('ListGroup', function () {
120
120
assert . equal ( React . findDOMNode ( instance ) . lastChild . nodeName , 'SPAN' ) ;
121
121
assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group' ) ) ;
122
122
} ) ;
123
+
124
+
125
+
126
+ it ( 'Should output a "div" when "ListGroupItem" children have an onClick handler' , function ( ) {
127
+ let instance = ReactTestUtils . renderIntoDocument (
128
+ < ListGroup >
129
+ < ListGroupItem onClick = { ( ) => null } > 1st Child</ ListGroupItem >
130
+ < ListGroupItem > 2nd Child</ ListGroupItem >
131
+ </ ListGroup >
132
+ ) ;
133
+ assert . equal ( React . findDOMNode ( instance ) . nodeName , 'DIV' ) ;
134
+ assert . equal ( React . findDOMNode ( instance ) . firstChild . nodeName , 'A' ) ;
135
+ assert . equal ( React . findDOMNode ( instance ) . lastChild . nodeName , 'SPAN' ) ;
136
+ assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group' ) ) ;
137
+ } ) ;
138
+
123
139
} ) ;
You can’t perform that action at this time.
0 commit comments