2018-10-30 05:02:23 +00:00
|
|
|
/* @flow */
|
2017-08-22 19:22:06 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2022-09-27 07:10:28 +00:00
|
|
|
import { DialogPortal, Drawer, JitsiPortal } from '../../../toolbox/components/web';
|
2021-10-06 09:53:27 +00:00
|
|
|
import { isMobileBrowser } from '../../environment/utils';
|
2021-11-01 09:39:19 +00:00
|
|
|
import { connect } from '../../redux';
|
2021-10-06 09:53:27 +00:00
|
|
|
import { getContextMenuStyle } from '../functions.web';
|
2017-08-22 19:22:06 +00:00
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of {@link Popover}.
|
|
|
|
*/
|
|
|
|
type Props = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A child React Element to use as the trigger for showing the dialog.
|
|
|
|
*/
|
|
|
|
children: React$Node,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Additional CSS classnames to apply to the root of the {@code Popover}
|
|
|
|
* component.
|
|
|
|
*/
|
|
|
|
className: string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ReactElement to display within the dialog.
|
|
|
|
*/
|
|
|
|
content: Object,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether displaying of the popover should be prevented.
|
|
|
|
*/
|
|
|
|
disablePopover: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An id attribute to apply to the root of the {@code Popover}
|
|
|
|
* component.
|
|
|
|
*/
|
|
|
|
id: string,
|
|
|
|
|
2021-06-30 16:12:12 +00:00
|
|
|
/**
|
|
|
|
* Callback to invoke when the popover has closed.
|
|
|
|
*/
|
|
|
|
onPopoverClose: Function,
|
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
/**
|
|
|
|
* Callback to invoke when the popover has opened.
|
|
|
|
*/
|
|
|
|
onPopoverOpen: Function,
|
|
|
|
|
2021-01-04 13:30:23 +00:00
|
|
|
/**
|
|
|
|
* Whether to display the Popover as a drawer.
|
|
|
|
*/
|
|
|
|
overflowDrawer: boolean,
|
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
/**
|
|
|
|
* From which side of the dialog trigger the dialog should display. The
|
|
|
|
* value will be passed to {@code InlineDialog}.
|
|
|
|
*/
|
2021-11-01 09:39:19 +00:00
|
|
|
position: string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the popover is visible or not.
|
|
|
|
*/
|
|
|
|
visible: boolean
|
2018-10-30 05:02:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} state of {@link Popover}.
|
|
|
|
*/
|
|
|
|
type State = {
|
|
|
|
|
2021-10-06 09:53:27 +00:00
|
|
|
/**
|
|
|
|
* The style to apply to the context menu in order to position it correctly.
|
|
|
|
*/
|
2021-12-15 13:18:41 +00:00
|
|
|
contextMenuStyle: Object
|
2018-10-30 05:02:23 +00:00
|
|
|
};
|
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Implements a React {@code Component} for showing an {@code InlineDialog} on
|
|
|
|
* mouseenter of the trigger and contents, and hiding the dialog on mouseleave.
|
|
|
|
*
|
2021-11-04 21:10:43 +00:00
|
|
|
* @augments Component
|
2017-08-22 19:22:06 +00:00
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
class Popover extends Component<Props, State> {
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Default values for {@code Popover} component's properties.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
static defaultProps = {
|
|
|
|
className: '',
|
|
|
|
id: ''
|
|
|
|
};
|
|
|
|
|
2021-09-14 07:43:52 +00:00
|
|
|
/**
|
|
|
|
* Reference to the dialog container.
|
|
|
|
*/
|
|
|
|
_containerRef: Object;
|
|
|
|
|
2021-10-06 09:53:27 +00:00
|
|
|
_contextMenuRef: HTMLElement;
|
2021-09-14 07:43:52 +00:00
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new {@code Popover} instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
constructor(props: Props) {
|
2017-08-22 19:22:06 +00:00
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2021-10-06 09:53:27 +00:00
|
|
|
contextMenuStyle: null
|
2017-08-22 19:22:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once for every instance.
|
|
|
|
this._onHideDialog = this._onHideDialog.bind(this);
|
|
|
|
this._onShowDialog = this._onShowDialog.bind(this);
|
2021-06-10 12:48:44 +00:00
|
|
|
this._onKeyPress = this._onKeyPress.bind(this);
|
2021-09-14 07:43:52 +00:00
|
|
|
this._containerRef = React.createRef();
|
2021-06-10 12:48:44 +00:00
|
|
|
this._onEscKey = this._onEscKey.bind(this);
|
2021-09-10 12:17:57 +00:00
|
|
|
this._onThumbClick = this._onThumbClick.bind(this);
|
2021-09-14 07:43:52 +00:00
|
|
|
this._onTouchStart = this._onTouchStart.bind(this);
|
2021-10-06 09:53:27 +00:00
|
|
|
this._setContextMenuRef = this._setContextMenuRef.bind(this);
|
|
|
|
this._setContextMenuStyle = this._setContextMenuStyle.bind(this);
|
|
|
|
this._getCustomDialogStyle = this._getCustomDialogStyle.bind(this);
|
2021-01-04 13:30:23 +00:00
|
|
|
}
|
|
|
|
|
2021-09-14 07:43:52 +00:00
|
|
|
/**
|
|
|
|
* Sets up a touch event listener to attach.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentDidMount() {
|
|
|
|
window.addEventListener('touchstart', this._onTouchStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the listener set up in the {@code componentDidMount} method.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentWillUnmount() {
|
|
|
|
window.removeEventListener('touchstart', this._onTouchStart);
|
2021-06-30 16:12:12 +00:00
|
|
|
}
|
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2021-11-01 09:39:19 +00:00
|
|
|
const { children, className, content, id, overflowDrawer, visible } = this.props;
|
2021-01-04 13:30:23 +00:00
|
|
|
|
|
|
|
if (overflowDrawer) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className = { className }
|
|
|
|
id = { id }
|
2021-09-10 12:17:57 +00:00
|
|
|
onClick = { this._onShowDialog }>
|
2021-01-04 13:30:23 +00:00
|
|
|
{ children }
|
2021-10-04 14:07:05 +00:00
|
|
|
<JitsiPortal>
|
2021-01-04 13:30:23 +00:00
|
|
|
<Drawer
|
2021-11-01 09:39:19 +00:00
|
|
|
isOpen = { visible }
|
2021-01-04 13:30:23 +00:00
|
|
|
onClose = { this._onHideDialog }>
|
|
|
|
{ content }
|
|
|
|
</Drawer>
|
2021-10-04 14:07:05 +00:00
|
|
|
</JitsiPortal>
|
2021-01-04 13:30:23 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
return (
|
|
|
|
<div
|
2021-01-04 13:30:23 +00:00
|
|
|
className = { className }
|
|
|
|
id = { id }
|
2021-09-10 12:17:57 +00:00
|
|
|
onClick = { this._onThumbClick }
|
2021-06-10 12:48:44 +00:00
|
|
|
onKeyPress = { this._onKeyPress }
|
2017-08-22 19:22:06 +00:00
|
|
|
onMouseEnter = { this._onShowDialog }
|
2021-09-14 07:43:52 +00:00
|
|
|
onMouseLeave = { this._onHideDialog }
|
|
|
|
ref = { this._containerRef }>
|
2021-11-01 09:39:19 +00:00
|
|
|
{ visible && (
|
2021-10-06 09:53:27 +00:00
|
|
|
<DialogPortal
|
|
|
|
getRef = { this._setContextMenuRef }
|
|
|
|
setSize = { this._setContextMenuStyle }
|
|
|
|
style = { this.state.contextMenuStyle }>
|
|
|
|
{this._renderContent()}
|
|
|
|
</DialogPortal>
|
|
|
|
)}
|
|
|
|
{ children }
|
2017-08-22 19:22:06 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-06 09:53:27 +00:00
|
|
|
_setContextMenuStyle: (size: Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the context menu dialog style for positioning it on screen.
|
|
|
|
*
|
|
|
|
* @param {DOMRectReadOnly} size -The size info of the current context menu.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_setContextMenuStyle(size) {
|
|
|
|
const style = this._getCustomDialogStyle(size);
|
|
|
|
|
|
|
|
this.setState({ contextMenuStyle: style });
|
|
|
|
}
|
|
|
|
|
|
|
|
_setContextMenuRef: (elem: HTMLElement) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the context menu's ref.
|
|
|
|
*
|
|
|
|
* @param {HTMLElement} elem -The html element of the context menu.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_setContextMenuRef(elem) {
|
|
|
|
this._contextMenuRef = elem;
|
|
|
|
}
|
|
|
|
|
2021-09-14 07:43:52 +00:00
|
|
|
_onTouchStart: (event: TouchEvent) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide dialog on touch outside of the context menu.
|
|
|
|
*
|
|
|
|
* @param {TouchEvent} event - The touch event.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onTouchStart(event) {
|
2021-11-01 09:39:19 +00:00
|
|
|
if (this.props.visible
|
2021-09-14 07:43:52 +00:00
|
|
|
&& !this.props.overflowDrawer
|
2021-10-06 09:53:27 +00:00
|
|
|
&& this._contextMenuRef
|
|
|
|
&& this._contextMenuRef.contains
|
|
|
|
&& !this._contextMenuRef.contains(event.target)) {
|
2021-09-14 07:43:52 +00:00
|
|
|
this._onHideDialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
_onHideDialog: () => void;
|
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Stops displaying the {@code InlineDialog}.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onHideDialog() {
|
2021-10-06 09:53:27 +00:00
|
|
|
this.setState({
|
|
|
|
contextMenuStyle: null
|
|
|
|
});
|
2021-06-30 16:12:12 +00:00
|
|
|
|
|
|
|
if (this.props.onPopoverClose) {
|
|
|
|
this.props.onPopoverClose();
|
|
|
|
}
|
2017-08-22 19:22:06 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 12:48:44 +00:00
|
|
|
_onShowDialog: (Object) => void;
|
2018-10-30 05:02:23 +00:00
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Displays the {@code InlineDialog} and calls any registered onPopoverOpen
|
|
|
|
* callbacks.
|
|
|
|
*
|
2021-06-10 12:48:44 +00:00
|
|
|
* @param {Object} event - The mouse event or the keypress event to intercept.
|
2017-08-22 19:22:06 +00:00
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2021-01-04 13:30:23 +00:00
|
|
|
_onShowDialog(event) {
|
2021-09-14 07:43:52 +00:00
|
|
|
event && event.stopPropagation();
|
2017-08-22 19:22:06 +00:00
|
|
|
|
2021-11-01 09:39:19 +00:00
|
|
|
if (!this.props.disablePopover) {
|
|
|
|
this.props.onPopoverOpen();
|
2017-08-22 19:22:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-10 12:17:57 +00:00
|
|
|
_onThumbClick: (Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prevents switching from tile view to stage view on accidentally clicking
|
|
|
|
* the popover thumbs.
|
|
|
|
*
|
|
|
|
* @param {Object} event - The mouse event or the keypress event to intercept.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onThumbClick(event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
2021-06-10 12:48:44 +00:00
|
|
|
_onKeyPress: (Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* KeyPress handler for accessibility.
|
|
|
|
*
|
|
|
|
* @param {Object} e - The key event to handle.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onKeyPress(e) {
|
|
|
|
if (e.key === ' ' || e.key === 'Enter') {
|
|
|
|
e.preventDefault();
|
2021-11-01 09:39:19 +00:00
|
|
|
if (this.props.visible) {
|
2021-06-10 12:48:44 +00:00
|
|
|
this._onHideDialog();
|
|
|
|
} else {
|
|
|
|
this._onShowDialog(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onEscKey: (Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* KeyPress handler for accessibility.
|
|
|
|
*
|
|
|
|
* @param {Object} e - The key event to handle.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onEscKey(e) {
|
|
|
|
if (e.key === 'Escape') {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2021-11-01 09:39:19 +00:00
|
|
|
if (this.props.visible) {
|
2021-06-10 12:48:44 +00:00
|
|
|
this._onHideDialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 09:53:27 +00:00
|
|
|
_getCustomDialogStyle: (DOMRectReadOnly) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets style for positioning the context menu on screen in regards to the trigger's
|
|
|
|
* position.
|
|
|
|
*
|
|
|
|
* @param {DOMRectReadOnly} size -The current context menu's size info.
|
|
|
|
*
|
|
|
|
* @returns {Object} - The new style of the context menu.
|
|
|
|
*/
|
|
|
|
_getCustomDialogStyle(size) {
|
|
|
|
if (this._containerRef && this._containerRef.current) {
|
|
|
|
const bounds = this._containerRef.current.getBoundingClientRect();
|
|
|
|
|
|
|
|
return getContextMenuStyle(bounds, size, this.props.position);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-22 19:22:06 +00:00
|
|
|
/**
|
|
|
|
* Renders the React Element to be displayed in the {@code InlineDialog}.
|
|
|
|
* Also adds padding to support moving the mouse from the trigger to the
|
|
|
|
* dialog to prevent mouseleave events.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_renderContent() {
|
2021-12-15 13:18:41 +00:00
|
|
|
const { content } = this.props;
|
2017-08-22 19:22:06 +00:00
|
|
|
|
|
|
|
return (
|
2021-06-10 12:48:44 +00:00
|
|
|
<div
|
2021-12-15 13:18:41 +00:00
|
|
|
className = 'popover'
|
2021-06-10 12:48:44 +00:00
|
|
|
onKeyDown = { this._onEscKey }>
|
2017-08-22 19:22:06 +00:00
|
|
|
{ content }
|
2021-10-06 09:53:27 +00:00
|
|
|
{!isMobileBrowser() && (
|
|
|
|
<>
|
|
|
|
<div className = 'popover-mousemove-padding-top' />
|
|
|
|
<div className = 'popover-mousemove-padding-right' />
|
|
|
|
<div className = 'popover-mousemove-padding-left' />
|
|
|
|
<div className = 'popover-mousemove-padding-bottom' />
|
|
|
|
</>)}
|
2017-08-22 19:22:06 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-01 09:39:19 +00:00
|
|
|
/**
|
|
|
|
* Maps (parts of) the Redux state to the associated {@code Popover}'s props.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @param {Object} ownProps - The own props of the component.
|
|
|
|
* @private
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
overflowDrawer: state['features/toolbox'].overflowDrawer
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(_mapStateToProps)(Popover);
|