2016-11-22 21:19:08 +01:00
|
|
|
import React from 'react';
|
|
|
|
import {Icon} from './common.js';
|
2017-01-13 03:03:34 +01:00
|
|
|
import {Link} from '../component/link.js';
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2017-01-13 03:03:34 +01:00
|
|
|
export let DropDownMenuItem = React.createClass({
|
2016-08-07 22:10:44 +02:00
|
|
|
propTypes: {
|
|
|
|
href: React.PropTypes.string,
|
|
|
|
label: React.PropTypes.string,
|
|
|
|
icon: React.PropTypes.string,
|
|
|
|
onClick: React.PropTypes.func,
|
|
|
|
},
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
iconPosition: 'left',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
var icon = (this.props.icon ? <Icon icon={this.props.icon} fixed /> : null);
|
|
|
|
|
|
|
|
return (
|
2017-01-13 03:03:34 +01:00
|
|
|
<a className="menu__menu-item" onClick={this.props.onClick}
|
2016-08-07 22:10:44 +02:00
|
|
|
href={this.props.href || 'javascript:'} label={this.props.label}>
|
|
|
|
{this.props.iconPosition == 'left' ? icon : null}
|
|
|
|
{this.props.label}
|
|
|
|
{this.props.iconPosition == 'left' ? null : icon}
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
2016-11-22 21:19:08 +01:00
|
|
|
});
|
2017-01-13 03:03:34 +01:00
|
|
|
|
|
|
|
export let DropDownMenu = React.createClass({
|
|
|
|
_isWindowClickBound: false,
|
|
|
|
_menuDiv: null,
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
menuOpen: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
if (this._isWindowClickBound) {
|
|
|
|
window.removeEventListener('click', this.handleWindowClick, false);
|
|
|
|
}
|
|
|
|
},
|
2017-01-13 16:44:23 +01:00
|
|
|
onMenuIconClick: function(e) {
|
2017-01-13 03:03:34 +01:00
|
|
|
this.setState({
|
|
|
|
menuOpen: !this.state.menuOpen,
|
|
|
|
});
|
|
|
|
if (!this.state.menuOpen && !this._isWindowClickBound) {
|
|
|
|
this._isWindowClickBound = true;
|
|
|
|
window.addEventListener('click', this.handleWindowClick, false);
|
2017-01-13 16:44:23 +01:00
|
|
|
e.stopPropagation();
|
2017-01-13 03:03:34 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
handleWindowClick: function(e) {
|
|
|
|
if (this.state.menuOpen &&
|
|
|
|
(!this._menuDiv || !this._menuDiv.contains(e.target))) {
|
|
|
|
this.setState({
|
|
|
|
menuOpen: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
if (!this.state.menuOpen && this._isWindowClickBound) {
|
|
|
|
this._isWindowClickBound = false;
|
|
|
|
window.removeEventListener('click', this.handleWindowClick, false);
|
|
|
|
}
|
|
|
|
return (
|
2017-02-21 07:26:59 +01:00
|
|
|
<div className="menu-container">
|
2017-01-25 04:22:36 +01:00
|
|
|
<Link ref={(span) => this._menuButton = span} button="text" icon="icon-ellipsis-v" onClick={this.onMenuIconClick} />
|
2017-01-13 03:03:34 +01:00
|
|
|
{this.state.menuOpen
|
|
|
|
? <div ref={(div) => this._menuDiv = div} className="menu">
|
|
|
|
{this.props.children}
|
|
|
|
</div>
|
|
|
|
: null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|