File tree 4 files changed +1
-56
lines changed
4 files changed +1
-56
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ var ListGroup = React.createClass({
20
20
21
21
renderListItem : function ( child , index ) {
22
22
return cloneWithProps ( child , {
23
- onClick : createChainedFunction ( child . props . onClick , this . props . onClick ) ,
24
23
ref : child . ref ,
25
24
key : child . key ? child . key : index
26
25
} ) ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ var ListGroupItem = React.createClass({
52
52
< a
53
53
{ ...this . props }
54
54
className = { joinClasses ( this . props . className , classSet ( classes ) ) }
55
- onClick = { this . handleClick } >
55
+ >
56
56
{ this . props . header ? this . renderStructuredContent ( ) : this . props . children }
57
57
</ a >
58
58
) ;
@@ -82,13 +82,6 @@ var ListGroupItem = React.createClass({
82
82
header : header ,
83
83
content : content
84
84
} ;
85
- } ,
86
-
87
- handleClick : function ( e ) {
88
- if ( this . props . onClick ) {
89
- e . preventDefault ( ) ;
90
- this . props . onClick ( this . props . eventKey , this . props . href , this . props . target ) ;
91
- }
92
85
}
93
86
} ) ;
94
87
Original file line number Diff line number Diff line change @@ -68,26 +68,4 @@ describe('ListGroupItem', function () {
68
68
assert . ok ( instance . getDOMNode ( ) . lastChild . className . match ( / \b l i s t - g r o u p - i t e m - t e x t \b / ) ) ;
69
69
} ) ;
70
70
71
- it ( 'Should call "onClick" when item is clicked' , function ( done ) {
72
- function handleClick ( key , href ) {
73
- assert . equal ( key , '2' ) ;
74
- assert . equal ( href , "#link" ) ;
75
- done ( ) ;
76
- }
77
- var instance = ReactTestUtils . renderIntoDocument (
78
- < ListGroupItem onClick = { handleClick } eventKey = '2' href = "#link" > Item</ ListGroupItem >
79
- ) ;
80
- ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance , 'a' ) ) ;
81
- } ) ;
82
-
83
- it ( 'Should call "onClick" with target attribute' , function ( done ) {
84
- function handleClick ( key , href , target ) {
85
- assert . equal ( target , '_blank' ) ;
86
- done ( ) ;
87
- }
88
- var instance = ReactTestUtils . renderIntoDocument (
89
- < ListGroupItem onClick = { handleClick } eventKey = '2' href = "#link" target = '_blank' > Item</ ListGroupItem >
90
- ) ;
91
- ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance , 'a' ) ) ;
92
- } ) ;
93
71
} ) ;
Original file line number Diff line number Diff line change @@ -26,29 +26,4 @@ describe('ListGroup', function () {
26
26
assert . ok ( ReactTestUtils . findRenderedDOMComponentWithClass ( instance . refs . child2 , 'list-group-item' ) ) ;
27
27
} ) ;
28
28
29
- it ( 'Should call "onClick" when child item is clicked' , function ( done ) {
30
- var item1Called = false ,
31
- item2Called = false ;
32
- function handleClick ( key , href ) {
33
- if ( key === 1 ) {
34
- item1Called = true ;
35
- } else if ( key === 2 ) {
36
- item2Called = true ;
37
- }
38
- if ( item1Called && item2Called ) {
39
- done ( ) ;
40
- }
41
- }
42
- var instance = ReactTestUtils . renderIntoDocument (
43
- < ListGroup onClick = { handleClick } >
44
- < ListGroupItem eventKey = { 1 } ref = "item1" > Item 1</ ListGroupItem >
45
- < ListGroupItem eventKey = { 2 } ref = "item2" > Item 2</ ListGroupItem >
46
- < ListGroupItem eventKey = { 3 } ref = "item3" > Item 3</ ListGroupItem >
47
- </ ListGroup >
48
- ) ;
49
- ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance . refs . item3 , 'a' ) ) ;
50
- ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance . refs . item2 , 'a' ) ) ;
51
- ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance . refs . item1 , 'a' ) ) ;
52
- } ) ;
53
-
54
29
} ) ;
You can’t perform that action at this time.
0 commit comments