Skip to content

Commit 459ab0c

Browse files
committed
[added] react-bootstrap#460 ListGroupItem outputs <button> when an onClick handler is set.
1 parent 537f52c commit 459ab0c

File tree

5 files changed

+39
-14
lines changed

5 files changed

+39
-14
lines changed

docs/examples/ListGroupLinked.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
function alertClicked () {
2+
alert('You clicked the third ListGroupItem');
3+
}
4+
15
const listgroupInstance = (
26
<ListGroup>
37
<ListGroupItem href='#link1'>Link 1</ListGroupItem>
48
<ListGroupItem href='#link2'>Link 2</ListGroupItem>
5-
<ListGroupItem href='#linkN'>...</ListGroupItem>
9+
<ListGroupItem onClick={alertClicked}>
10+
Trigger an alert
11+
</ListGroupItem>
612
</ListGroup>
713
);
814

src/ListGroup.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,26 @@ class ListGroup extends React.Component {
99
(item, index) => cloneElement(item, { key: item.key ? item.key : index })
1010
);
1111

12-
let childrenAnchors = false;
12+
let shouldRenderDiv = false;
1313

1414
if (!this.props.children) {
15-
return this.renderDiv(items);
15+
shouldRenderDiv = true;
1616
} else {
1717
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;
2020
}
21-
2221
});
23-
2422
}
2523

26-
if (childrenAnchors){
24+
if (shouldRenderDiv){
2725
return this.renderDiv(items);
2826
} else {
2927
return this.renderUL(items);
3028
}
3129
}
3230

33-
isAnchor(props){
31+
isAnchorOrButton(props){
3432
return (props.href || props.onClick);
3533
}
3634

src/ListGroupItem.js

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React, { cloneElement } from 'react';
22
import BootstrapMixin from './BootstrapMixin';
33
import classNames from 'classnames';
4-
import SafeAnchor from './SafeAnchor';
54

65
const ListGroupItem = React.createClass({
76
mixins: [BootstrapMixin],
@@ -32,8 +31,10 @@ const ListGroupItem = React.createClass({
3231
classes.active = this.props.active;
3332
classes.disabled = this.props.disabled;
3433

35-
if (this.props.href || this.props.onClick) {
34+
if (this.props.href) {
3635
return this.renderAnchor(classes);
36+
} else if (this.props.onClick) {
37+
return this.renderButton(classes);
3738
} else if (this.props.listItem) {
3839
return this.renderLi(classes);
3940
} else {
@@ -52,12 +53,23 @@ const ListGroupItem = React.createClass({
5253

5354
renderAnchor(classes) {
5455
return (
55-
<SafeAnchor
56+
<a
5657
{...this.props}
5758
className={classNames(this.props.className, classes)}
5859
>
5960
{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>
6173
);
6274
},
6375

test/ListGroupItemSpec.js

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ describe('ListGroupItem', function () {
2020
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'list-group-item'));
2121
});
2222

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+
2332
it('Should output an "li" if "listItem" prop is set', function () {
2433
let instance = ReactTestUtils.renderIntoDocument(
2534
<ListGroupItem listItem>Item 1</ListGroupItem>

test/ListGroupSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ describe('ListGroup', function () {
131131
</ListGroup>
132132
);
133133
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');
135135
assert.equal(React.findDOMNode(instance).lastChild.nodeName, 'SPAN');
136136
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'list-group'));
137137
});

0 commit comments

Comments
 (0)