Close dropdown when clicking items
parent
0cbf3a146f
commit
8b16f81882
|
@ -1,10 +1,27 @@
|
||||||
import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown';
|
import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown';
|
||||||
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||||
|
|
||||||
const DropdownMenu = ({ icon, items, size, direction }) => {
|
const DropdownMenu = React.createClass({
|
||||||
const directionClass = (direction == "left") ? "dropdown__left" : "dropdown__right";
|
|
||||||
|
propTypes: {
|
||||||
|
icon: React.PropTypes.string.isRequired,
|
||||||
|
items: React.PropTypes.array.isRequired,
|
||||||
|
size: React.PropTypes.number.isRequired,
|
||||||
|
direction: React.PropTypes.string
|
||||||
|
},
|
||||||
|
|
||||||
|
mixins: [PureRenderMixin],
|
||||||
|
|
||||||
|
setRef (c) {
|
||||||
|
this.dropdown = c;
|
||||||
|
},
|
||||||
|
|
||||||
|
render () {
|
||||||
|
const { icon, items, size, direction } = this.props;
|
||||||
|
const directionClass = (direction === "left") ? "dropdown__left" : "dropdown__right";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dropdown>
|
<Dropdown ref={this.setRef}>
|
||||||
<DropdownTrigger className='icon-button' style={{ fontSize: `${size}px`, width: `${size}px`, lineHeight: `${size}px` }}>
|
<DropdownTrigger className='icon-button' style={{ fontSize: `${size}px`, width: `${size}px`, lineHeight: `${size}px` }}>
|
||||||
<i className={`fa fa-fw fa-${icon}`} style={{ verticalAlign: 'middle' }} />
|
<i className={`fa fa-fw fa-${icon}`} style={{ verticalAlign: 'middle' }} />
|
||||||
</DropdownTrigger>
|
</DropdownTrigger>
|
||||||
|
@ -15,18 +32,15 @@ const DropdownMenu = ({ icon, items, size, direction }) => {
|
||||||
if (typeof action === 'function') {
|
if (typeof action === 'function') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
action();
|
action();
|
||||||
|
this.dropdown.hide();
|
||||||
}
|
}
|
||||||
}}>{text}</a></li>)}
|
}}>{text}</a></li>)}
|
||||||
</ul>
|
</ul>
|
||||||
</DropdownContent>
|
</DropdownContent>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|
||||||
DropdownMenu.propTypes = {
|
});
|
||||||
icon: React.PropTypes.string.isRequired,
|
|
||||||
items: React.PropTypes.array.isRequired,
|
|
||||||
size: React.PropTypes.number.isRequired
|
|
||||||
};
|
|
||||||
|
|
||||||
export default DropdownMenu;
|
export default DropdownMenu;
|
||||||
|
|
Loading…
Reference in New Issue