Skip to content

Commit 22da8f9

Browse files
committed
[fixed] ListGroup children array bugs. Fixes react-bootstrap#548
1 parent e75fea5 commit 22da8f9

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

src/ListGroup.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ class ListGroup extends React.Component {
1313

1414
if (!this.props.children) {
1515
return this.renderDiv(items);
16-
} else if (React.Children.count(this.props.children) === 1) {
16+
} else if (React.Children.count(this.props.children) === 1 && !Array.isArray(this.props.children)) {
1717
let child = this.props.children;
1818

1919
childrenAnchors = child.props.href ? true : false;
2020

2121
} else {
2222

2323
childrenAnchors = Array.prototype.some.call(this.props.children, (child) => {
24-
return child.props.href;
24+
return !Array.isArray(child) ? child.props.href : Array.prototype.some.call(child, (subChild) => {
25+
return subChild.props.href;
26+
});
2527
});
2628

2729
}

test/ListGroupSpec.js

+33
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,19 @@ describe('ListGroup', function () {
2525
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(items[0], 'list-group-item'));
2626
});
2727

28+
it('Should support a single "ListGroupItem" child contained in an array', function () {
29+
let child = [<ListGroupItem key={42}>Only Child in array</ListGroupItem>];
30+
let instance = ReactTestUtils.renderIntoDocument(
31+
<ListGroup>
32+
{child}
33+
</ListGroup>
34+
);
35+
36+
let items = ReactTestUtils.scryRenderedComponentsWithType(instance, ListGroupItem);
37+
38+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(items[0], 'list-group-item'));
39+
});
40+
2841
it('Should output a "ul" when single "ListGroupItem" child is a list item', function () {
2942
let instance = ReactTestUtils.renderIntoDocument(
3043
<ListGroup>
@@ -61,6 +74,26 @@ describe('ListGroup', function () {
6174
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(items[1], 'list-group-item'));
6275
});
6376

77+
it('Should support multiple "ListGroupItem" children including a subset contained in an array', function () {
78+
let itemArray = [
79+
<ListGroupItem key={0}>2nd Child nested</ListGroupItem>,
80+
<ListGroupItem key={1}>3rd Child nested</ListGroupItem>
81+
];
82+
83+
let instance = ReactTestUtils.renderIntoDocument(
84+
<ListGroup>
85+
<ListGroupItem>1st Child</ListGroupItem>
86+
{itemArray}
87+
<ListGroupItem>4th Child</ListGroupItem>
88+
</ListGroup>
89+
);
90+
91+
let items = ReactTestUtils.scryRenderedComponentsWithType(instance, ListGroupItem);
92+
93+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(items[0], 'list-group-item'));
94+
assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(items[1], 'list-group-item'));
95+
});
96+
6497
it('Should output a "ul" when children are list items', function () {
6598
let instance = ReactTestUtils.renderIntoDocument(
6699
<ListGroup>

0 commit comments

Comments
 (0)