2015-11-27 15:37:40 +00:00
|
|
|
/*
|
2016-01-07 04:06:39 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-27 15:37:40 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-10-11 16:56:17 +00:00
|
|
|
const classNames = require('classnames');
|
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
2017-12-26 01:03:18 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2015-11-27 15:37:40 +00:00
|
|
|
|
|
|
|
// Shamelessly ripped off Modal.js. There's probably a better way
|
|
|
|
// of doing reusable widgets like dialog boxes & menus where we go and
|
|
|
|
// pass in a custom control as the actual body.
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
ContextualMenuContainerId: "mx_ContextualMenu_Container",
|
|
|
|
|
2016-08-10 15:34:49 +00:00
|
|
|
propTypes: {
|
2018-04-04 12:38:07 +00:00
|
|
|
top: PropTypes.number,
|
|
|
|
bottom: PropTypes.number,
|
|
|
|
left: PropTypes.number,
|
|
|
|
right: PropTypes.number,
|
2017-12-26 01:03:18 +00:00
|
|
|
menuWidth: PropTypes.number,
|
|
|
|
menuHeight: PropTypes.number,
|
|
|
|
chevronOffset: PropTypes.number,
|
|
|
|
menuColour: PropTypes.string,
|
|
|
|
chevronFace: PropTypes.string, // top, bottom, left, right
|
2018-04-04 12:38:07 +00:00
|
|
|
// Function to be called on menu close
|
|
|
|
onFinished: PropTypes.func,
|
|
|
|
menuPaddingTop: PropTypes.number,
|
|
|
|
menuPaddingRight: PropTypes.number,
|
|
|
|
menuPaddingBottom: PropTypes.number,
|
|
|
|
menuPaddingLeft: PropTypes.number,
|
2016-07-28 13:32:59 +00:00
|
|
|
},
|
|
|
|
|
2015-11-27 15:37:40 +00:00
|
|
|
getOrCreateContainer: function() {
|
2017-10-11 16:56:17 +00:00
|
|
|
let container = document.getElementById(this.ContextualMenuContainerId);
|
2015-11-27 15:37:40 +00:00
|
|
|
|
|
|
|
if (!container) {
|
|
|
|
container = document.createElement("div");
|
|
|
|
container.id = this.ContextualMenuContainerId;
|
|
|
|
document.body.appendChild(container);
|
|
|
|
}
|
|
|
|
|
|
|
|
return container;
|
|
|
|
},
|
|
|
|
|
2017-01-20 14:22:27 +00:00
|
|
|
createMenu: function(Element, props) {
|
2017-10-11 16:56:17 +00:00
|
|
|
const self = this;
|
2015-11-27 15:37:40 +00:00
|
|
|
|
2018-01-18 12:03:24 +00:00
|
|
|
const closeMenu = function(...args) {
|
2015-11-27 15:37:40 +00:00
|
|
|
ReactDOM.unmountComponentAtNode(self.getOrCreateContainer());
|
|
|
|
|
2016-07-26 16:25:16 +00:00
|
|
|
if (props && props.onFinished) {
|
2018-01-18 12:03:24 +00:00
|
|
|
props.onFinished.apply(null, args);
|
2016-07-26 16:25:16 +00:00
|
|
|
}
|
2015-11-27 15:37:40 +00:00
|
|
|
};
|
|
|
|
|
2018-01-18 12:04:00 +00:00
|
|
|
// Close the menu on window resize
|
|
|
|
const windowResize = function() {
|
|
|
|
closeMenu();
|
|
|
|
};
|
|
|
|
|
2017-10-15 03:43:47 +00:00
|
|
|
const position = {};
|
|
|
|
let chevronFace = null;
|
|
|
|
|
|
|
|
if (props.top) {
|
|
|
|
position.top = props.top;
|
|
|
|
} else {
|
|
|
|
position.bottom = props.bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.left) {
|
|
|
|
position.left = props.left;
|
|
|
|
chevronFace = 'left';
|
|
|
|
} else {
|
|
|
|
position.right = props.right;
|
|
|
|
chevronFace = 'right';
|
|
|
|
}
|
2015-11-27 15:37:40 +00:00
|
|
|
|
2017-10-11 16:56:17 +00:00
|
|
|
const chevronOffset = {};
|
2017-10-15 03:43:47 +00:00
|
|
|
if (props.chevronFace) {
|
|
|
|
chevronFace = props.chevronFace;
|
|
|
|
}
|
|
|
|
if (chevronFace === 'top' || chevronFace === 'bottom') {
|
|
|
|
chevronOffset.left = props.chevronOffset;
|
|
|
|
} else {
|
2016-08-10 15:34:49 +00:00
|
|
|
chevronOffset.top = props.chevronOffset;
|
|
|
|
}
|
|
|
|
|
2017-01-17 14:11:01 +00:00
|
|
|
// To override the default chevron colour, if it's been set
|
2017-10-11 16:56:17 +00:00
|
|
|
let chevronCSS = "";
|
2016-08-10 15:34:49 +00:00
|
|
|
if (props.menuColour) {
|
|
|
|
chevronCSS = `
|
|
|
|
.mx_ContextualMenu_chevron_left:after {
|
|
|
|
border-right-color: ${props.menuColour};
|
|
|
|
}
|
|
|
|
.mx_ContextualMenu_chevron_right:after {
|
|
|
|
border-left-color: ${props.menuColour};
|
|
|
|
}
|
2017-10-15 03:43:47 +00:00
|
|
|
.mx_ContextualMenu_chevron_top:after {
|
|
|
|
border-left-color: ${props.menuColour};
|
|
|
|
}
|
|
|
|
.mx_ContextualMenu_chevron_bottom:after {
|
|
|
|
border-left-color: ${props.menuColour};
|
|
|
|
}
|
2017-01-20 14:22:27 +00:00
|
|
|
`;
|
2016-07-28 13:32:59 +00:00
|
|
|
}
|
|
|
|
|
2017-10-15 03:43:47 +00:00
|
|
|
const chevron = <div style={chevronOffset} className={"mx_ContextualMenu_chevron_" + chevronFace}></div>;
|
2017-10-11 16:56:17 +00:00
|
|
|
const className = 'mx_ContextualMenu_wrapper';
|
2015-11-27 15:37:40 +00:00
|
|
|
|
2017-10-11 16:56:17 +00:00
|
|
|
const menuClasses = classNames({
|
2016-07-27 15:09:07 +00:00
|
|
|
'mx_ContextualMenu': true,
|
2017-10-15 03:43:47 +00:00
|
|
|
'mx_ContextualMenu_left': chevronFace === 'left',
|
|
|
|
'mx_ContextualMenu_right': chevronFace === 'right',
|
|
|
|
'mx_ContextualMenu_top': chevronFace === 'top',
|
|
|
|
'mx_ContextualMenu_bottom': chevronFace === 'bottom',
|
2016-07-27 15:09:07 +00:00
|
|
|
});
|
|
|
|
|
2017-10-11 16:56:17 +00:00
|
|
|
const menuStyle = {};
|
2016-07-27 16:43:48 +00:00
|
|
|
if (props.menuWidth) {
|
2016-08-10 15:34:49 +00:00
|
|
|
menuStyle.width = props.menuWidth;
|
2016-07-27 16:43:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (props.menuHeight) {
|
2016-08-10 15:34:49 +00:00
|
|
|
menuStyle.height = props.menuHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.menuColour) {
|
2016-08-11 16:34:05 +00:00
|
|
|
menuStyle["backgroundColor"] = props.menuColour;
|
2016-07-27 16:43:48 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 17:50:30 +00:00
|
|
|
if (!isNaN(Number(props.menuPaddingTop))) {
|
|
|
|
menuStyle["paddingTop"] = props.menuPaddingTop;
|
|
|
|
}
|
2018-04-04 12:37:52 +00:00
|
|
|
if (!isNaN(Number(props.menuPaddingLeft))) {
|
|
|
|
menuStyle["paddingLeft"] = props.menuPaddingLeft;
|
|
|
|
}
|
|
|
|
if (!isNaN(Number(props.menuPaddingBottom))) {
|
|
|
|
menuStyle["paddingBottom"] = props.menuPaddingBottom;
|
|
|
|
}
|
|
|
|
if (!isNaN(Number(props.menuPaddingRight))) {
|
|
|
|
menuStyle["paddingRight"] = props.menuPaddingRight;
|
|
|
|
}
|
2018-02-08 17:50:30 +00:00
|
|
|
|
2015-11-27 15:37:40 +00:00
|
|
|
// FIXME: If a menu uses getDefaultProps it clobbers the onFinished
|
|
|
|
// property set here so you can't close the menu from a button click!
|
2017-10-11 16:56:17 +00:00
|
|
|
const menu = (
|
2016-07-27 15:09:07 +00:00
|
|
|
<div className={className} style={position}>
|
2016-08-10 15:34:49 +00:00
|
|
|
<div className={menuClasses} style={menuStyle}>
|
2017-10-11 16:56:17 +00:00
|
|
|
{ chevron }
|
2018-01-18 12:04:00 +00:00
|
|
|
<Element {...props} onFinished={closeMenu} onResize={windowResize} />
|
2015-11-27 15:37:40 +00:00
|
|
|
</div>
|
|
|
|
<div className="mx_ContextualMenu_background" onClick={closeMenu}></div>
|
2017-10-11 16:56:17 +00:00
|
|
|
<style>{ chevronCSS }</style>
|
2015-11-27 15:37:40 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
ReactDOM.render(menu, this.getOrCreateContainer());
|
|
|
|
|
|
|
|
return {close: closeMenu};
|
|
|
|
},
|
|
|
|
};
|