Skip to content

Commit ce564cb

Browse files
committed
[fixed] any props not known by DropdownMenu are passed through to the underlying ul
1 parent 6f6fed1 commit ce564cb

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

src/DropdownMenu.js

+13-14
Original file line numberDiff line numberDiff line change
@@ -80,37 +80,36 @@ class DropdownMenu extends React.Component {
8080
}
8181

8282
render() {
83-
const items = ValidComponentChildren.map(this.props.children, child => {
84-
let {
85-
children,
86-
onKeyDown,
87-
onSelect
88-
} = child.props || {};
83+
let {children, onSelect, pullRight, className, labelledBy, open, onClose, ...props} = this.props;
84+
85+
const items = ValidComponentChildren.map(children, child => {
86+
let childProps = child.props || {};
8987

9088
return React.cloneElement(child, {
91-
onKeyDown: createChainedFunction(onKeyDown, this.handleKeyDown),
92-
onSelect: createChainedFunction(onSelect, this.props.onSelect)
93-
}, children);
89+
onKeyDown: createChainedFunction(childProps.onKeyDown, this.handleKeyDown),
90+
onSelect: createChainedFunction(childProps.onSelect, onSelect)
91+
}, childProps.children);
9492
});
9593

9694
const classes = {
9795
'dropdown-menu': true,
98-
'dropdown-menu-right': this.props.pullRight
96+
'dropdown-menu-right': pullRight
9997
};
10098

10199
let list = (
102100
<ul
103-
className={classNames(this.props.className, classes)}
101+
className={classNames(className, classes)}
104102
role="menu"
105-
aria-labelledby={this.props.labelledBy}
103+
aria-labelledby={labelledBy}
104+
{...props}
106105
>
107106
{items}
108107
</ul>
109108
);
110109

111-
if (this.props.open) {
110+
if (open) {
112111
list = (
113-
<RootCloseWrapper noWrap onRootClose={this.props.onClose}>
112+
<RootCloseWrapper noWrap onRootClose={onClose}>
114113
{list}
115114
</RootCloseWrapper>
116115
);

0 commit comments

Comments
 (0)