webamp/js/components/ContextMenuWrapper.js
Jordan Eldredge 32098e3b62 Fix context menus in Firefox
This is a huge mess of timing.
2018-08-14 19:25:32 -07:00

83 lines
2.2 KiB
JavaScript

import React from "react";
import PropTypes from "prop-types";
import ContextMenu from "./ContextMenu";
export default class ContextMenuWraper extends React.Component {
constructor(props) {
super(props);
this.state = {
selected: false,
offsetTop: null,
offsetLeft: null
};
this._handleRightClick = this._handleRightClick.bind(this);
this._handleGlobalClick = this._handleGlobalClick.bind(this);
this._handleGlobalRightClick = this._handleGlobalRightClick.bind(this);
}
componentWillUnmount() {
this._closeMenu();
}
_closeMenu() {
this.setState({ selected: false, offsetTop: null, offsetLeft: null });
document.removeEventListener("click", this._handleGlobalClick);
document.body.removeEventListener(
"contextmenu",
this._handleGlobalRightClick
);
}
_handleGlobalRightClick() {
this._closeMenu();
}
_handleGlobalClick(e) {
if (e.button === 2) {
return;
}
this._closeMenu();
}
_handleRightClick(e) {
const { pageX, pageY } = e;
this.setState({
selected: true,
// TODO: We could do an initial render to see if the menu fits here
// and do a second render if it does not.
offsetTop: pageY,
offsetLeft: pageX
});
// Even if you right click multiple times before closeing,
// we should only end up with one global listener.
document.addEventListener("click", this._handleGlobalClick);
document.body.addEventListener("contextmenu", this._handleGlobalRightClick);
e.preventDefault();
e.stopPropagation();
}
render() {
const { children, renderContents, ...passThroughProps } = this.props;
return (
<div
onContextMenu={this._handleRightClick}
style={{ width: "100%", height: "100%" }}
{...passThroughProps}
>
<ContextMenu
selected={this.state.selected}
offsetTop={this.state.offsetTop}
offsetLeft={this.state.offsetLeft}
>
{renderContents()}
</ContextMenu>
{children}
</div>
);
}
}
ContextMenuWraper.propTypes = {
children: PropTypes.any.isRequired,
renderContents: PropTypes.func.isRequired
};