Skip to content

Commit c822837

Browse files
committed
[removed] non-standard onClick props for ListGroup and ListGroupItem
Old behaviour can be implemented using custom onClick handlers.
1 parent f26e39f commit c822837

File tree

4 files changed

+1
-56
lines changed

4 files changed

+1
-56
lines changed

src/ListGroup.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ var ListGroup = React.createClass({
2020

2121
renderListItem: function (child, index) {
2222
return cloneWithProps(child, {
23-
onClick: createChainedFunction(child.props.onClick, this.props.onClick),
2423
ref: child.ref,
2524
key: child.key ? child.key : index
2625
});

src/ListGroupItem.jsx

+1-8
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var ListGroupItem = React.createClass({
5252
<a
5353
{...this.props}
5454
className={joinClasses(this.props.className, classSet(classes))}
55-
onClick={this.handleClick}>
55+
>
5656
{this.props.header ? this.renderStructuredContent() : this.props.children}
5757
</a>
5858
);
@@ -82,13 +82,6 @@ var ListGroupItem = React.createClass({
8282
header: header,
8383
content: content
8484
};
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-
}
9285
}
9386
});
9487

test/ListGroupItemSpec.jsx

-22
Original file line numberDiff line numberDiff line change
@@ -68,26 +68,4 @@ describe('ListGroupItem', function () {
6868
assert.ok(instance.getDOMNode().lastChild.className.match(/\blist-group-item-text\b/));
6969
});
7070

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-
});
9371
});

test/ListGroupSpec.jsx

-25
Original file line numberDiff line numberDiff line change
@@ -26,29 +26,4 @@ describe('ListGroup', function () {
2626
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance.refs.child2, 'list-group-item'));
2727
});
2828

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-
5429
});

0 commit comments

Comments
 (0)