File tree 5 files changed +39
-14
lines changed
5 files changed +39
-14
lines changed Original file line number Diff line number Diff line change
1
+ function alertClicked ( ) {
2
+ alert ( 'You clicked the third ListGroupItem' ) ;
3
+ }
4
+
1
5
const listgroupInstance = (
2
6
< ListGroup >
3
7
< ListGroupItem href = '#link1' > Link 1</ ListGroupItem >
4
8
< ListGroupItem href = '#link2' > Link 2</ ListGroupItem >
5
- < ListGroupItem href = '#linkN' > ...</ ListGroupItem >
9
+ < ListGroupItem onClick = { alertClicked } >
10
+ Trigger an alert
11
+ </ ListGroupItem >
6
12
</ ListGroup >
7
13
) ;
8
14
Original file line number Diff line number Diff line change @@ -9,28 +9,26 @@ class ListGroup extends React.Component {
9
9
( item , index ) => cloneElement ( item , { key : item . key ? item . key : index } )
10
10
) ;
11
11
12
- let childrenAnchors = false ;
12
+ let shouldRenderDiv = false ;
13
13
14
14
if ( ! this . props . children ) {
15
- return this . renderDiv ( items ) ;
15
+ shouldRenderDiv = true ;
16
16
} else {
17
17
React . Children . forEach ( this . props . children , ( child ) => {
18
- if ( this . isAnchor ( child . props ) ) {
19
- childrenAnchors = true ;
18
+ if ( this . isAnchorOrButton ( child . props ) ) {
19
+ shouldRenderDiv = true ;
20
20
}
21
-
22
21
} ) ;
23
-
24
22
}
25
23
26
- if ( childrenAnchors ) {
24
+ if ( shouldRenderDiv ) {
27
25
return this . renderDiv ( items ) ;
28
26
} else {
29
27
return this . renderUL ( items ) ;
30
28
}
31
29
}
32
30
33
- isAnchor ( props ) {
31
+ isAnchorOrButton ( props ) {
34
32
return ( props . href || props . onClick ) ;
35
33
}
36
34
Original file line number Diff line number Diff line change 1
1
import React , { cloneElement } from 'react' ;
2
2
import BootstrapMixin from './BootstrapMixin' ;
3
3
import classNames from 'classnames' ;
4
- import SafeAnchor from './SafeAnchor' ;
5
4
6
5
const ListGroupItem = React . createClass ( {
7
6
mixins : [ BootstrapMixin ] ,
@@ -32,8 +31,10 @@ const ListGroupItem = React.createClass({
32
31
classes . active = this . props . active ;
33
32
classes . disabled = this . props . disabled ;
34
33
35
- if ( this . props . href || this . props . onClick ) {
34
+ if ( this . props . href ) {
36
35
return this . renderAnchor ( classes ) ;
36
+ } else if ( this . props . onClick ) {
37
+ return this . renderButton ( classes ) ;
37
38
} else if ( this . props . listItem ) {
38
39
return this . renderLi ( classes ) ;
39
40
} else {
@@ -52,12 +53,23 @@ const ListGroupItem = React.createClass({
52
53
53
54
renderAnchor ( classes ) {
54
55
return (
55
- < SafeAnchor
56
+ < a
56
57
{ ...this . props }
57
58
className = { classNames ( this . props . className , classes ) }
58
59
>
59
60
{ this . props . header ? this . renderStructuredContent ( ) : this . props . children }
60
- </ SafeAnchor >
61
+ </ a >
62
+ ) ;
63
+ } ,
64
+
65
+ renderButton ( classes ) {
66
+ return (
67
+ < button
68
+ type = 'button'
69
+ { ...this . props }
70
+ className = { classNames ( this . props . className , classes ) } >
71
+ { this . props . children }
72
+ </ button >
61
73
) ;
62
74
} ,
63
75
Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ describe('ListGroupItem', function () {
20
20
assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group-item' ) ) ;
21
21
} ) ;
22
22
23
+ it ( 'Should output a "button" if an "onClick" handler is set' , function ( ) {
24
+ let noop = function ( ) { } ;
25
+ let instance = ReactTestUtils . renderIntoDocument (
26
+ < ListGroupItem onClick = { noop } > Button</ ListGroupItem >
27
+ ) ;
28
+ assert . equal ( React . findDOMNode ( instance ) . nodeName , 'BUTTON' ) ;
29
+ assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group-item' ) ) ;
30
+ } ) ;
31
+
23
32
it ( 'Should output an "li" if "listItem" prop is set' , function ( ) {
24
33
let instance = ReactTestUtils . renderIntoDocument (
25
34
< ListGroupItem listItem > Item 1</ ListGroupItem >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ describe('ListGroup', function () {
131
131
</ ListGroup >
132
132
) ;
133
133
assert . equal ( React . findDOMNode ( instance ) . nodeName , 'DIV' ) ;
134
- assert . equal ( React . findDOMNode ( instance ) . firstChild . nodeName , 'A ' ) ;
134
+ assert . equal ( React . findDOMNode ( instance ) . firstChild . nodeName , 'BUTTON ' ) ;
135
135
assert . equal ( React . findDOMNode ( instance ) . lastChild . nodeName , 'SPAN' ) ;
136
136
assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'list-group' ) ) ;
137
137
} ) ;
You can’t perform that action at this time.
0 commit comments