Skip to content

Commit 3a369cc

Browse files
committed
[fixed] Error on opening dropdown without focusable items
When dropdown without focusable items (e.g. containing only divs to display some content) is opened, exception is raised in `DropdownMenu.focusNext()` method as `items[0]` is not defined. This commit adds additional check in `focusNext()` method, skipping focusing altogether if there are no focusable items.
1 parent b9384be commit 3a369cc

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/DropdownMenu.js

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ class DropdownMenu extends React.Component {
3838
focusNext() {
3939
let { items, activeItemIndex } = this.getItemsAndActiveIndex();
4040

41+
if (items.length === 0) {
42+
return;
43+
}
44+
4145
if (activeItemIndex === items.length - 1) {
4246
items[0].focus();
4347
return;

test/DropdownSpec.js

+15
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,21 @@ describe('Dropdown', function() {
186186
buttonNode.getAttribute('aria-expanded').should.equal('false');
187187
});
188188

189+
it('opens if dropdown contains no focusable menu item', function() {
190+
const instance = ReactTestUtils.renderIntoDocument(
191+
<Dropdown title='custom child' id='dropdown'>
192+
<Dropdown.Toggle>Toggle</Dropdown.Toggle>
193+
<Dropdown.Menu>
194+
<li>Some custom nonfocusable content</li>
195+
</Dropdown.Menu>
196+
</Dropdown>
197+
);
198+
const node = React.findDOMNode(instance);
199+
const buttonNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'BUTTON'));
200+
ReactTestUtils.Simulate.click(buttonNode);
201+
node.className.should.match(/\bopen\b/);
202+
});
203+
189204
it('when focused and closed toggles open when the key "down" is pressed', function() {
190205
const instance = ReactTestUtils.renderIntoDocument(simpleDropdown);
191206
const node = React.findDOMNode(instance);

0 commit comments

Comments
 (0)