bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/media/webcam-draggable-overlay/component.jsx

525 lines
16 KiB
React
Raw Normal View History

import React, { PureComponent, Fragment } from 'react';
2019-07-10 07:11:48 +08:00
import Draggable from 'react-draggable';
2019-03-01 05:39:57 +08:00
import cx from 'classnames';
2019-07-24 06:24:31 +08:00
import PropTypes from 'prop-types';
2019-07-30 03:42:11 +08:00
import Resizable from 're-resizable';
import { isMobile, isIPad13 } from 'react-device-detect';
import { withDraggableConsumer } from './context';
2019-07-10 07:11:48 +08:00
import VideoProviderContainer from '/imports/ui/components/video-provider/container';
2019-06-20 04:55:43 +08:00
import { styles } from '../styles.scss';
2019-07-10 07:11:48 +08:00
import Storage from '../../../services/storage/session';
2020-04-23 22:07:44 +08:00
import { withLayoutConsumer } from '/imports/ui/components/layout/context';
import { WEBCAMSAREA_MIN_PERCENT } from '/imports/ui/components/layout/layout-manager';
2019-03-01 05:39:57 +08:00
const BROWSER_ISMOBILE = isMobile || isIPad13;
2019-07-24 06:24:31 +08:00
const propTypes = {
swapLayout: PropTypes.bool,
hideOverlay: PropTypes.bool,
disableVideo: PropTypes.bool,
audioModalIsOpen: PropTypes.bool,
webcamDraggableState: PropTypes.objectOf(Object).isRequired,
webcamDraggableDispatch: PropTypes.func.isRequired,
refMediaContainer: PropTypes.shape({ current: PropTypes.instanceOf(Element) }),
};
const defaultProps = {
swapLayout: false,
hideOverlay: false,
disableVideo: false,
audioModalIsOpen: false,
refMediaContainer: null,
};
class WebcamDraggable extends PureComponent {
2019-03-01 05:39:57 +08:00
constructor(props) {
super(props);
2020-04-23 22:07:44 +08:00
const { layoutContextState } = props;
const { webcamsPlacement, mediaBounds } = layoutContextState;
this.state = {
webcamsAreaResizable: {
width: webcamsPlacement === 'top' || webcamsPlacement === 'bottom' ? mediaBounds.width : mediaBounds.width * WEBCAMSAREA_MIN_PERCENT,
height: webcamsPlacement === 'left' || webcamsPlacement === 'right' ? mediaBounds.height : mediaBounds.height * WEBCAMSAREA_MIN_PERCENT,
},
resizing: false,
};
2019-03-01 05:39:57 +08:00
this.handleWebcamDragStart = this.handleWebcamDragStart.bind(this);
this.handleWebcamDragStop = this.handleWebcamDragStop.bind(this);
2019-07-30 23:03:29 +08:00
this.onFullscreenChange = this.onFullscreenChange.bind(this);
2019-09-18 02:25:28 +08:00
this.onResizeStop = this.onResizeStop.bind(this);
this.onResizeStart = this.onResizeStart.bind(this);
2019-03-01 05:39:57 +08:00
}
componentDidMount() {
2020-04-23 22:07:44 +08:00
const { webcamDraggableState } = this.props;
const {
lastPlacementLandscape,
lastPlacementPortrait,
} = webcamDraggableState;
const { layoutContextState, layoutContextDispatch } = this.props;
const { presentationOrientation } = layoutContextState;
2019-07-30 23:03:29 +08:00
document.addEventListener('fullscreenchange', this.onFullscreenChange);
window.addEventListener('orientationchange', () => setTimeout(this.recalculateAreaSize, 500));
2020-04-23 22:07:44 +08:00
if (presentationOrientation === 'landscape') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: !lastPlacementLandscape ? 'top' : lastPlacementLandscape,
});
}
if (presentationOrientation === 'portrait') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: !lastPlacementPortrait ? 'left' : lastPlacementPortrait,
});
}
}
componentDidUpdate(prevProps) {
2020-04-23 22:07:44 +08:00
// const { swapLayout } = this.props;
// Webcam Draggable Context
const { webcamDraggableState } = this.props;
const {
lastPlacementLandscape,
lastPlacementPortrait,
} = webcamDraggableState;
2020-04-23 22:07:44 +08:00
// Layout Context
const { layoutContextState, layoutContextDispatch } = this.props;
const { layoutContextState: prevLayoutContextState } = prevProps;
const {
webcamsAreaSize,
presentationOrientation,
} = layoutContextState;
const {
webcamsAreaSize: prevWebcamsAreaSize,
presentationOrientation: prevPresentationOrientation,
} = prevLayoutContextState;
if (webcamsAreaSize.width !== prevWebcamsAreaSize.width
|| webcamsAreaSize.height !== prevWebcamsAreaSize.height) {
this.setWebcamsAreaResizable(webcamsAreaSize.width, webcamsAreaSize.height);
}
2020-04-23 22:07:44 +08:00
if (prevPresentationOrientation !== presentationOrientation) {
const storagePlacement = Storage.getItem('webcamsPlacement');
if ((prevPresentationOrientation == null || prevPresentationOrientation === 'portrait') && presentationOrientation === 'landscape') {
if (storagePlacement !== lastPlacementLandscape && lastPlacementLandscape === 'top') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'top',
});
}
if (storagePlacement !== lastPlacementLandscape && lastPlacementLandscape === 'bottom') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'bottom',
});
}
}
2020-04-23 22:07:44 +08:00
if ((prevPresentationOrientation == null || prevPresentationOrientation === 'landscape') && presentationOrientation === 'portrait') {
if (storagePlacement !== lastPlacementPortrait && lastPlacementPortrait === 'left') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'left',
});
}
if (storagePlacement !== lastPlacementPortrait && lastPlacementPortrait === 'right') {
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'right',
});
}
}
}
2019-07-10 07:11:48 +08:00
}
2019-07-30 23:03:29 +08:00
componentWillUnmount() {
window.removeEventListener('resize', this.debouncedOnResize);
2019-07-30 23:03:29 +08:00
document.removeEventListener('fullscreenchange', this.onFullscreenChange);
}
onFullscreenChange() {
this.forceUpdate();
}
onResizeStart() {
this.setState({ resizing: true });
}
2020-04-23 22:07:44 +08:00
onResizeStop(resizableWidth, resizableHeight) {
const { webcamsAreaResizable } = this.state;
const { layoutContextState, layoutContextDispatch } = this.props;
const { webcamsPlacement, webcamsAreaSize } = layoutContextState;
2020-04-23 22:07:44 +08:00
layoutContextDispatch(
{
type: 'setAutoArrangeLayout',
value: false,
},
);
const newWebcamsAreaResizable = {
width: Math.trunc(webcamsAreaResizable.width) + resizableWidth,
height: Math.trunc(webcamsAreaResizable.height) + resizableHeight,
};
2020-04-23 22:07:44 +08:00
2020-05-01 06:18:03 +08:00
if (webcamsPlacement === 'top' || webcamsPlacement === 'bottom') {
layoutContextDispatch(
{
type: 'setWebcamsAreaUserSetsHeight',
value: newWebcamsAreaResizable.height,
},
);
}
if (webcamsPlacement === 'right' || webcamsPlacement === 'left') {
layoutContextDispatch(
{
type: 'setWebcamsAreaUserSetsWidth',
value: newWebcamsAreaResizable.height,
},
);
}
2020-04-23 22:07:44 +08:00
layoutContextDispatch(
{
type: 'setWebcamsAreaSize',
value: {
width: webcamsPlacement === 'top' || webcamsPlacement === 'bottom' ? webcamsAreaSize.width : newWebcamsAreaResizable.width,
height: webcamsPlacement === 'left' || webcamsPlacement === 'right' ? webcamsAreaSize.height : newWebcamsAreaResizable.height,
2020-05-01 06:18:03 +08:00
},
2020-04-23 22:07:44 +08:00
},
);
2019-03-01 05:39:57 +08:00
2020-04-23 22:07:44 +08:00
this.setState({
webcamsAreaResizable: {
width: webcamsPlacement === 'top' || webcamsPlacement === 'bottom' ? webcamsAreaSize.width : newWebcamsAreaResizable.width,
height: webcamsPlacement === 'left' || webcamsPlacement === 'right' ? webcamsAreaSize.height : newWebcamsAreaResizable.height,
},
});
2019-03-01 05:39:57 +08:00
2020-04-23 22:07:44 +08:00
setTimeout(() => this.setState({ resizing: false }), 500);
window.dispatchEvent(new Event('webcamAreaResize'));
}
2020-04-23 22:07:44 +08:00
setWebcamsAreaResizable(width, height) {
this.setState({
webcamsAreaResizable: { width, height },
});
}
2020-07-06 20:58:50 +08:00
2019-07-10 07:11:48 +08:00
getWebcamsListBounds() {
const { webcamDraggableState } = this.props;
2019-07-10 07:11:48 +08:00
const { videoListRef } = webcamDraggableState;
if (videoListRef) {
const videoListRefRect = videoListRef.getBoundingClientRect();
2019-03-01 05:39:57 +08:00
const {
2019-07-10 07:11:48 +08:00
top, left, width, height,
} = videoListRefRect;
return {
2020-04-23 22:07:44 +08:00
top,
left,
width,
height,
2019-07-10 07:11:48 +08:00
};
2019-03-01 05:39:57 +08:00
}
2019-07-10 07:11:48 +08:00
return false;
2019-06-11 02:25:55 +08:00
}
calculatePosition() {
2020-04-23 22:07:44 +08:00
const { layoutContextState } = this.props;
const { mediaBounds } = layoutContextState;
const { top: mediaTop, left: mediaLeft } = mediaBounds;
2019-07-10 07:11:48 +08:00
const { top: webcamsListTop, left: webcamsListLeft } = this.getWebcamsListBounds();
const x = webcamsListLeft - mediaLeft;
const y = webcamsListTop - mediaTop;
return {
x,
y,
};
2019-03-01 05:39:57 +08:00
}
handleWebcamDragStart() {
const { webcamDraggableDispatch } = this.props;
const { x, y } = this.calculatePosition();
2019-07-10 07:11:48 +08:00
webcamDraggableDispatch({ type: 'dragStart' });
webcamDraggableDispatch(
{
type: 'setTempPosition',
value: {
x,
2019-07-10 07:11:48 +08:00
y,
},
},
);
2019-03-01 05:39:57 +08:00
}
handleWebcamDragStop(e) {
2020-04-23 22:07:44 +08:00
const { webcamDraggableDispatch, layoutContextDispatch } = this.props;
2019-08-06 05:17:39 +08:00
const targetClassname = JSON.stringify(e.target.className);
2019-11-26 00:38:00 +08:00
if (targetClassname) {
if (targetClassname.includes('Top')) {
2020-04-23 22:07:44 +08:00
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'top',
});
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Right')) {
2020-04-23 22:07:44 +08:00
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'right',
});
} else if (targetClassname.includes('Bottom')) {
2020-04-23 22:07:44 +08:00
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'bottom',
});
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Left')) {
2020-04-23 22:07:44 +08:00
layoutContextDispatch({
type: 'setWebcamsPlacement',
value: 'left',
});
}
2019-03-01 05:39:57 +08:00
}
2019-07-10 07:11:48 +08:00
webcamDraggableDispatch({ type: 'dragEnd' });
2020-04-23 22:07:44 +08:00
window.dispatchEvent(new Event('webcamAreaResize'));
2019-03-01 05:39:57 +08:00
}
render() {
const {
2020-04-23 22:07:44 +08:00
layoutContextState,
2019-07-10 07:11:48 +08:00
webcamDraggableState,
2019-03-01 05:39:57 +08:00
swapLayout,
hideOverlay,
disableVideo,
audioModalIsOpen,
2019-03-01 05:39:57 +08:00
} = this.props;
2019-06-25 23:40:57 +08:00
2020-04-23 22:07:44 +08:00
const { resizing, webcamsAreaResizable } = this.state;
const { mediaBounds } = layoutContextState;
const {
dragging,
isCameraFullscreen,
optimalGrid,
} = webcamDraggableState;
2020-04-23 22:07:44 +08:00
const webcamsPlacement = Storage.getItem('webcamsPlacement');
2019-07-10 07:11:48 +08:00
const lastPosition = Storage.getItem('webcamLastPosition') || { x: 0, y: 0 };
2019-07-10 07:11:48 +08:00
let position = lastPosition;
2019-06-25 23:40:57 +08:00
2019-07-10 07:11:48 +08:00
if (dragging) {
position = webcamDraggableState.tempPosition;
} else if (!dragging) {
2019-07-10 07:11:48 +08:00
position = webcamDraggableState.lastPosition;
} else {
position = {
x: 0,
y: 0,
};
}
if (swapLayout || isCameraFullscreen || BROWSER_ISMOBILE) {
2019-07-10 07:11:48 +08:00
position = {
x: 0,
y: 0,
};
}
2019-07-10 07:11:48 +08:00
const {
width: mediaWidth,
height: mediaHeight,
2020-04-23 22:07:44 +08:00
} = mediaBounds;
2019-03-01 05:39:57 +08:00
const {
2019-07-10 07:11:48 +08:00
width: webcamsWidth,
height: webcamsHeight,
} = this.getWebcamsListBounds();
const isOverflowWidth = (lastPosition.x + webcamsWidth) > mediaWidth;
const isOverflowHeight = (lastPosition.y + webcamsHeight) > mediaHeight;
position = {
x: isOverflowWidth
&& !dragging && !swapLayout ? mediaWidth - webcamsWidth : position.x,
2019-07-10 07:11:48 +08:00
y: isOverflowHeight
&& !dragging && !swapLayout ? mediaHeight - (webcamsHeight + 1) : position.y,
2019-07-10 07:11:48 +08:00
};
2019-03-01 05:39:57 +08:00
const contentClassName = cx({
[styles.content]: true,
2019-11-26 00:38:00 +08:00
[styles.fullWidth]: swapLayout,
[styles.fullHeight]: swapLayout,
2019-03-01 05:39:57 +08:00
});
const overlayClassName = cx({
[styles.overlay]: true,
[styles.hideOverlay]: hideOverlay,
2019-12-03 04:21:34 +08:00
[styles.floatingOverlay]: dragging,
[styles.autoWidth]: dragging,
2020-04-23 22:07:44 +08:00
[styles.overlayToTop]: webcamsPlacement === 'top' && !dragging,
[styles.overlayToRight]: webcamsPlacement === 'right' && !dragging,
[styles.overlayToBottom]: webcamsPlacement === 'bottom' && !dragging,
[styles.overlayToLeft]: webcamsPlacement === 'left' && !dragging,
2019-03-01 05:39:57 +08:00
[styles.dragging]: dragging,
});
const dropZoneTopClassName = cx({
[styles.dropZoneTop]: true,
2019-07-10 07:11:48 +08:00
[styles.show]: dragging,
[styles.hide]: !dragging,
[styles.cursorGrabbing]: dragging && !isCameraFullscreen,
2019-03-01 05:39:57 +08:00
});
2019-11-26 00:38:00 +08:00
const dropZoneLeftClassName = cx({
[styles.dropZoneLeft]: true,
[styles.show]: dragging,
[styles.hide]: !dragging,
[styles.cursorGrabbing]: dragging && !isCameraFullscreen,
});
2019-03-01 05:39:57 +08:00
const dropZoneBottomClassName = cx({
[styles.dropZoneBottom]: true,
2019-07-10 07:11:48 +08:00
[styles.show]: dragging,
[styles.hide]: !dragging,
[styles.cursorGrabbing]: dragging && !isCameraFullscreen,
2019-03-01 05:39:57 +08:00
});
2019-11-26 00:38:00 +08:00
const dropZoneRightClassName = cx({
[styles.dropZoneRight]: true,
[styles.show]: dragging,
[styles.hide]: !dragging,
[styles.cursorGrabbing]: dragging && !isCameraFullscreen,
});
2019-03-01 05:39:57 +08:00
const dropZoneBgTopClassName = cx({
2019-07-10 07:11:48 +08:00
[styles.dropZoneBgTop]: true,
2019-03-01 05:39:57 +08:00
});
2019-11-26 00:38:00 +08:00
const dropZoneBgLeftClassName = cx({
[styles.dropZoneBgLeft]: true,
});
2019-03-01 05:39:57 +08:00
const dropZoneBgBottomClassName = cx({
2019-07-10 07:11:48 +08:00
[styles.dropZoneBgBottom]: true,
2019-03-01 05:39:57 +08:00
});
2019-11-26 00:38:00 +08:00
const dropZoneBgRightClassName = cx({
[styles.dropZoneBgRight]: true,
});
2019-03-01 05:39:57 +08:00
return (
<Fragment>
<div
className={dropZoneTopClassName}
2019-11-26 00:38:00 +08:00
style={{ height: '15vh' }}
2019-07-10 07:11:48 +08:00
>
<div
className={dropZoneBgTopClassName}
/>
</div>
2019-11-26 00:38:00 +08:00
<div
className={dropZoneLeftClassName}
style={{
width: '15vh',
height: `calc(${mediaHeight}px - (15vh * 2))`,
}}
>
<div
className={dropZoneBgLeftClassName}
/>
</div>
2019-03-01 05:39:57 +08:00
<Draggable
handle="video"
2019-03-05 01:29:40 +08:00
bounds="#container"
2019-03-01 05:39:57 +08:00
onStart={this.handleWebcamDragStart}
onStop={this.handleWebcamDragStop}
2019-04-12 00:35:23 +08:00
onMouseDown={e => e.preventDefault()}
2020-04-23 22:07:44 +08:00
disabled={swapLayout || isCameraFullscreen || BROWSER_ISMOBILE || resizing}
2019-07-10 07:11:48 +08:00
position={position}
2019-03-01 05:39:57 +08:00
>
2019-07-30 03:42:11 +08:00
<Resizable
2020-04-23 22:07:44 +08:00
minWidth={mediaBounds.width * WEBCAMSAREA_MIN_PERCENT}
minHeight={mediaBounds.height * WEBCAMSAREA_MIN_PERCENT}
2019-09-18 02:25:28 +08:00
size={
{
2020-04-23 22:07:44 +08:00
height: dragging ? optimalGrid.height : webcamsAreaResizable.height,
width: dragging ? optimalGrid.width : webcamsAreaResizable.width,
}
2019-09-18 02:25:28 +08:00
}
lockAspectRatio
2019-09-18 02:25:28 +08:00
handleWrapperClass="resizeWrapper"
onResizeStart={this.onResizeStart}
2020-04-23 22:07:44 +08:00
onResizeStop={(e, direction, ref, d) => {
this.onResizeStop(d.width, d.height);
}}
2019-07-30 03:42:11 +08:00
enable={{
2020-04-23 22:07:44 +08:00
top: (webcamsPlacement === 'bottom') && !swapLayout,
bottom: (webcamsPlacement === 'top') && !swapLayout,
left: (webcamsPlacement === 'right') && !swapLayout,
right: (webcamsPlacement === 'left') && !swapLayout,
2019-09-18 02:25:28 +08:00
topLeft: false,
topRight: false,
bottomLeft: false,
bottomRight: false,
2019-07-30 03:42:11 +08:00
}}
className={
!swapLayout
? overlayClassName
: contentClassName}
2019-06-25 23:40:57 +08:00
style={{
marginLeft: 0,
marginRight: 0,
2019-06-25 23:40:57 +08:00
}}
2019-03-01 05:39:57 +08:00
>
2019-07-30 03:42:11 +08:00
{
!disableVideo
&& !audioModalIsOpen
? (
<VideoProviderContainer
swapLayout={swapLayout}
/>
)
: null
}
</Resizable>
2019-03-01 05:39:57 +08:00
</Draggable>
<div
className={dropZoneBottomClassName}
2019-11-26 00:38:00 +08:00
style={{ height: '15vh' }}
2019-07-10 07:11:48 +08:00
>
<div
className={dropZoneBgBottomClassName}
/>
</div>
2019-11-26 00:38:00 +08:00
<div
className={dropZoneRightClassName}
style={{
width: '15vh',
height: `calc(${mediaHeight}px - (15vh * 2))`,
}}
>
<div
className={dropZoneBgRightClassName}
/>
</div>
2019-03-01 05:39:57 +08:00
</Fragment>
);
}
}
2019-07-24 06:24:31 +08:00
WebcamDraggable.propTypes = propTypes;
WebcamDraggable.defaultProps = defaultProps;
2020-04-23 22:07:44 +08:00
export default withDraggableConsumer(withLayoutConsumer(WebcamDraggable));