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

576 lines
17 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';
import _ from 'lodash';
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';
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) }),
usersVideoLenght: PropTypes.number.isRequired,
2019-07-24 06:24:31 +08:00
};
const defaultProps = {
swapLayout: false,
hideOverlay: false,
disableVideo: false,
audioModalIsOpen: false,
refMediaContainer: null,
};
const dispatchResizeEvent = () => window.dispatchEvent(new Event('resize'));
2019-07-24 06:24:31 +08:00
class WebcamDraggable extends PureComponent {
2019-03-01 05:39:57 +08:00
constructor(props) {
super(props);
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);
this.debouncedOnResize = _.debounce(this.onWindowResize.bind(this), 500);
2019-09-18 02:25:28 +08:00
this.onResizeStop = this.onResizeStop.bind(this);
this.onResizeStart = this.onResizeStart.bind(this);
this.setPlacementPercent = this.setPlacementPercent.bind(this);
this.recalculateAreaSize = this.recalculateAreaSize.bind(this);
this.state = {
resizing: false,
placementPercent: 0,
};
2019-03-01 05:39:57 +08:00
}
componentDidMount() {
dispatchResizeEvent();
window.addEventListener('resize', this.debouncedOnResize);
2019-07-30 23:03:29 +08:00
document.addEventListener('fullscreenchange', this.onFullscreenChange);
window.addEventListener('orientationchange', () => setTimeout(this.recalculateAreaSize, 500));
}
componentDidUpdate(prevProps) {
const {
swapLayout,
webcamDraggableState,
webcamDraggableDispatch,
usersVideoLenght,
} = this.props;
const {
placement: statePlacement,
orientation,
lastPlacementLandscape,
lastPlacementPortrait,
} = webcamDraggableState;
const { webcamDraggableState: prevWebcamDraggableState } = prevProps;
const { placement: prevPlacement, orientation: prevOrientation } = prevWebcamDraggableState;
if (prevProps.swapLayout !== swapLayout) {
setTimeout(() => this.forceUpdate(), 500);
}
if (prevPlacement !== statePlacement) {
setTimeout(() => this.forceUpdate(), 200);
setTimeout(() => window.dispatchEvent(new Event('resize')), 500);
}
if (prevProps.usersVideoLenght !== usersVideoLenght) {
dispatchResizeEvent();
}
if (prevOrientation !== orientation) {
const storagePlacement = Storage.getItem('webcamPlacement');
if ((prevOrientation == null || prevOrientation === 'portrait') && orientation === 'landscape') {
if (storagePlacement !== lastPlacementLandscape && lastPlacementLandscape === 'top') webcamDraggableDispatch({ type: 'setplacementToTop' });
if (storagePlacement !== lastPlacementLandscape && lastPlacementLandscape === 'bottom') webcamDraggableDispatch({ type: 'setplacementToBottom' });
}
if ((prevOrientation == null || prevOrientation === 'landscape') && orientation === 'portrait') {
if (storagePlacement !== lastPlacementPortrait && lastPlacementPortrait === 'left') webcamDraggableDispatch({ type: 'setplacementToLeft' });
if (storagePlacement !== lastPlacementPortrait && lastPlacementPortrait === 'right') webcamDraggableDispatch({ type: 'setplacementToRight' });
}
}
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);
dispatchResizeEvent();
2019-07-30 23:03:29 +08:00
}
onFullscreenChange() {
this.forceUpdate();
}
onResizeStart() {
this.setState({ resizing: true });
}
onWindowResize() {
const { webcamDraggableState, webcamDraggableDispatch } = this.props;
const { mediaSize } = webcamDraggableState;
const { width: stateWidth, height: stateHeight } = mediaSize;
const { width, height } = this.getMediaBounds();
2020-06-16 23:20:24 +08:00
if (stateWidth !== width || stateHeight !== height) {
webcamDraggableDispatch(
2020-05-01 06:18:03 +08:00
{
type: 'setMediaSize',
value: {
width,
height,
},
2020-05-01 06:18:03 +08:00
},
);
setTimeout(() => window.dispatchEvent(new Event('resize')), 300);
2020-05-01 06:18:03 +08:00
}
}
onResize() {
this.setPlacementPercent();
}
2020-04-23 22:07:44 +08:00
onResizeStop() {
const { webcamDraggableState, webcamDraggableDispatch } = this.props;
const { optimalGrid } = webcamDraggableState;
if (optimalGrid) {
webcamDraggableDispatch(
2020-05-01 06:18:03 +08:00
{
type: 'setVideoListSize',
value: {
width: optimalGrid.width,
height: optimalGrid.height,
},
2020-05-01 06:18:03 +08:00
},
);
}
this.setPlacementPercent();
window.dispatchEvent(new Event('resize'));
2020-04-23 22:07:44 +08:00
setTimeout(() => this.setState({ resizing: false }), 500);
}
2019-03-01 05:39:57 +08:00
setPlacementPercent() {
const { webcamDraggableState } = this.props;
const { optimalGrid, placement } = webcamDraggableState;
if (placement === 'top' || placement === 'bottom') {
const mediaSelection = document.querySelector('section[class^=media]');
const mediaHeight = mediaSelection ? mediaSelection.offsetHeight : 0;
this.setState({ placementPercent: (optimalGrid.height * 100) / mediaHeight });
}
if (placement === 'left' || placement === 'right') {
const mediaSelection = document.querySelector('section[class^=media]');
const mediaWidth = mediaSelection ? mediaSelection.offsetWidth : 0;
this.setState({ placementPercent: (optimalGrid.width * 100) / mediaWidth });
}
2019-03-01 05:39:57 +08:00
}
getMediaBounds() {
const { refMediaContainer, webcamDraggableState, webcamDraggableDispatch } = this.props;
const { mediaSize: mediaState } = webcamDraggableState;
const { current: mediaContainer } = refMediaContainer;
if (mediaContainer) {
const mediaContainerRect = mediaContainer.getBoundingClientRect();
const {
top, left, width: newWidth, height: newHeight,
} = mediaContainerRect;
if ((mediaState.width === 0 || mediaState.height === 0) && (newWidth > 0 && newHeight > 0)) {
webcamDraggableDispatch(
{
type: 'setMediaSize',
value: {
newWidth,
newHeight,
},
},
);
}
return {
top,
left,
width: newWidth,
height: newHeight,
};
}
return false;
}
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 {
top, // 10 = margin
left, // 10 = margin
width, // 20 = margin
height, // 20 = margin
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
}
recalculateAreaSize() {
this.onResizeStart();
this.onResizeStop();
}
2020-04-23 22:07:44 +08:00
calculatePosition() {
const { top: mediaTop, left: mediaLeft } = this.getMediaBounds();
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) {
const { webcamDraggableDispatch } = 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')) {
webcamDraggableDispatch({ type: 'setplacementToTop' });
webcamDraggableDispatch({ type: 'setLastPlacementLandscapeToTop' });
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Right')) {
webcamDraggableDispatch({ type: 'setplacementToRight' });
webcamDraggableDispatch({ type: 'setLastPlacementPortraitToRight' });
} else if (targetClassname.includes('Bottom')) {
webcamDraggableDispatch({ type: 'setplacementToBottom' });
webcamDraggableDispatch({ type: 'setLastPlacementLandscapeToBottom' });
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Left')) {
webcamDraggableDispatch({ type: 'setplacementToLeft' });
webcamDraggableDispatch({ type: 'setLastPlacementPortraitToLeft' });
}
2019-03-01 05:39:57 +08:00
}
2019-07-10 07:11:48 +08:00
webcamDraggableDispatch({ type: 'dragEnd' });
window.dispatchEvent(new Event('resize'));
setTimeout(this.recalculateAreaSize, 500);
2019-03-01 05:39:57 +08:00
}
render() {
const {
2019-07-10 07:11:48 +08:00
webcamDraggableState,
2019-03-01 05:39:57 +08:00
swapLayout,
hideOverlay,
disableVideo,
audioModalIsOpen,
refMediaContainer,
2019-03-01 05:39:57 +08:00
} = this.props;
2019-06-25 23:40:57 +08:00
const {
resizing,
placementPercent,
} = this.state;
const {
dragging,
isCameraFullscreen,
videoListSize,
optimalGrid,
} = webcamDraggableState;
const placement = Storage.getItem('webcamPlacement');
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,
} = this.getMediaBounds();
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 { current: mediaContainer } = refMediaContainer;
let layout = 'vertical';
if (mediaContainer) {
const classNameMediaContainer = mediaContainer.className;
if (classNameMediaContainer.includes('containerH')) {
layout = 'horizontal';
} else {
layout = 'vertical';
}
}
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,
[styles.fullWidth]: (
(
placement === 'top'
|| placement === 'bottom'
)
|| swapLayout
)
&& !dragging,
[styles.fullHeight]: (
(
placement === 'left'
&& placement === 'right'
)
|| swapLayout
)
&& !dragging,
[styles.overlayToTop]: placement === 'top' && !dragging,
[styles.overlayToRight]: placement === 'right' && !dragging,
[styles.overlayToBottom]: placement === 'bottom' && !dragging,
[styles.overlayToLeft]: placement === 'left' && !dragging,
2019-03-01 05:39:57 +08:00
[styles.dragging]: dragging,
[styles.hide]: (
(
placement === 'left'
|| placement === 'right'
)
&& layout === 'vertical'
)
|| (
(
placement === 'top'
|| placement === 'bottom'
)
&& layout === 'horizontal'
),
2019-03-01 05:39:57 +08:00
});
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,
});
const mediaSelection = document.querySelector('section[class^=media]');
const mHeight = mediaSelection ? mediaSelection.offsetHeight : 0;
const mWidth = mediaSelection ? mediaSelection.offsetWidth : 0;
let resizeWidth;
let resizeHeight;
if (resizing && (placement === 'top' || placement === 'bottom') && !dragging) {
resizeWidth = '100%';
resizeHeight = videoListSize.height;
}
if (!resizing && (placement === 'top' || placement === 'bottom') && !dragging) {
resizeWidth = '100%';
resizeHeight = mHeight * (placementPercent / 100);
}
if (resizing && (placement === 'left' || placement === 'right') && !dragging) {
resizeWidth = videoListSize.width;
resizeHeight = '100%';
}
if (!resizing && (placement === 'left' || placement === 'right') && !dragging) {
resizeWidth = mWidth * (placementPercent / 100);
resizeHeight = '100%';
}
if (dragging) {
resizeHeight = optimalGrid.height;
resizeWidth = optimalGrid.width;
}
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()}
disabled={swapLayout || isCameraFullscreen || BROWSER_ISMOBILE}
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
2019-09-18 02:25:28 +08:00
size={
{
height: resizeHeight,
width: resizeWidth,
}
2019-09-18 02:25:28 +08:00
}
lockAspectRatio
2019-09-18 02:25:28 +08:00
handleWrapperClass="resizeWrapper"
onResizeStart={this.onResizeStart}
onResize={dispatchResizeEvent}
onResizeStop={this.onResizeStop}
2019-07-30 03:42:11 +08:00
enable={{
top: (placement === 'bottom') && !swapLayout,
bottom: (placement === 'top') && !swapLayout,
left: (placement === 'right') && !swapLayout,
right: (placement === '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;
export default withDraggableConsumer(WebcamDraggable);