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

510 lines
14 KiB
React
Raw Normal View History

2019-03-01 05:39:57 +08:00
import React, { Component, 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-11 21:49:06 +08:00
import _ from 'lodash';
import browser from 'browser-detect';
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';
2019-07-10 07:11:48 +08:00
import { withDraggableContext } from './context';
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
2019-07-10 07:11:48 +08:00
const { webcamsDefaultPlacement } = Meteor.settings.public.layout;
const BROWSER_ISMOBILE = browser().mobile;
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,
};
2019-07-30 03:42:11 +08:00
const dispatchResizeEvent = () => window.dispatchEvent(new Event('resize'));
2019-07-24 06:24:31 +08:00
2019-07-10 07:11:48 +08:00
class WebcamDraggable extends Component {
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.onResize.bind(this), 500);
2019-09-18 02:25:28 +08:00
this.onResizeStop = this.onResizeStop.bind(this);
2019-03-01 05:39:57 +08:00
}
componentDidMount() {
2019-07-30 23:03:29 +08:00
window.addEventListener('resize', this.debouncedOnResize);
document.addEventListener('fullscreenchange', this.onFullscreenChange);
}
2019-06-26 20:02:29 +08:00
componentDidUpdate(prevProps) {
const { swapLayout, webcamDraggableState } = this.props;
const { placement } = webcamDraggableState;
const { webcamDraggableState: prevWebcamDraggableState } = prevProps;
const { placement: prevPlacement } = prevWebcamDraggableState;
2019-11-06 05:42:35 +08:00
if (prevProps.swapLayout !== swapLayout) {
2019-07-10 07:11:48 +08:00
setTimeout(() => this.forceUpdate(), 500);
}
if (prevPlacement !== placement) {
setTimeout(() => this.forceUpdate(), 200);
setTimeout(() => window.dispatchEvent(new Event('resize')), 400);
}
2019-07-10 07:11:48 +08:00
}
2019-07-30 23:03:29 +08:00
componentWillUnmount() {
window.removeEventListener('resize', this.debouncedOnResize);
document.removeEventListener('fullscreenchange', this.onFullscreenChange);
}
onFullscreenChange() {
this.forceUpdate();
}
2019-07-10 07:11:48 +08:00
onResize() {
const { webcamDraggableState, webcamDraggableDispatch } = this.props;
const { mediaSize } = webcamDraggableState;
const { width: stateWidth, height: stateHeight } = mediaSize;
const { width, height } = this.getMediaBounds();
if (stateWidth !== width || stateHeight !== height) {
webcamDraggableDispatch(
{
type: 'setMediaSize',
value: {
width,
height,
},
},
2019-06-25 23:40:57 +08:00
);
2019-10-15 05:30:13 +08:00
this.onResizeStop();
2019-09-18 02:25:28 +08:00
}
2019-09-18 02:25:28 +08:00
}
onResizeStop() {
const { webcamDraggableState, webcamDraggableDispatch } = this.props;
const { optimalGrid } = webcamDraggableState;
if (optimalGrid) {
2019-09-18 02:25:28 +08:00
webcamDraggableDispatch(
{
type: 'setVideoListSize',
value: {
width: optimalGrid.width,
height: optimalGrid.height,
2019-09-18 02:25:28 +08:00
},
},
);
}
window.dispatchEvent(new Event('resize'));
2019-03-01 05:39:57 +08:00
}
2019-07-10 07:11:48 +08:00
getMediaBounds() {
const { refMediaContainer, webcamDraggableState, webcamDraggableDispatch } = this.props;
const { mediaSize: mediaState } = webcamDraggableState;
const { current: mediaContainer } = refMediaContainer;
2019-07-10 07:11:48 +08:00
if (mediaContainer) {
const mediaContainerRect = mediaContainer.getBoundingClientRect();
2019-03-01 05:39:57 +08:00
const {
2019-08-08 04:57:41 +08:00
top, left, width: newWidth, height: newHeight,
} = mediaContainerRect;
2019-08-06 05:17:39 +08:00
if ((mediaState.width === 0 || mediaState.height === 0) && (newWidth > 0 && newHeight > 0)) {
2019-07-10 07:11:48 +08:00
webcamDraggableDispatch(
{
type: 'setMediaSize',
value: {
2019-08-06 05:17:39 +08:00
newWidth,
newHeight,
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 {
top,
left,
2019-08-08 04:57:41 +08:00
width: newWidth,
height: newHeight,
2019-07-10 07:11:48 +08:00
};
2019-03-01 05:39:57 +08:00
}
return false;
2019-03-01 05:39:57 +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
}
2019-07-10 07:11:48 +08:00
calculatePosition() {
const { top: mediaTop, left: mediaLeft } = this.getMediaBounds();
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' });
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Right')) {
webcamDraggableDispatch({ type: 'setplacementToRight' });
// webcamDraggableDispatch(
// {
// type: 'setLastPosition',
// value: {
// x: 0,
// y: 0,
// },
// },
// );
} else if (targetClassname.includes('Bottom')) {
webcamDraggableDispatch({ type: 'setplacementToBottom' });
2019-11-26 00:38:00 +08:00
} else if (targetClassname.includes('Left')) {
webcamDraggableDispatch({ type: 'setplacementToLeft' });
// webcamDraggableDispatch(
// {
// type: 'setLastPosition',
// value: {
// x: 0,
// y: 0,
// },
// },
// );
}
2019-03-01 05:39:57 +08:00
}
2019-07-10 07:11:48 +08:00
webcamDraggableDispatch({ type: 'dragEnd' });
2019-06-03 22:33:06 +08:00
window.dispatchEvent(new Event('resize'));
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,
2019-11-26 00:38:00 +08:00
refMediaContainer,
2019-03-01 05:39:57 +08:00
} = this.props;
2019-06-25 23:40:57 +08:00
const {
dragging,
isCameraFullscreen,
videoListSize,
videoRef,
optimalGrid,
} = webcamDraggableState;
2019-07-10 07:11:48 +08:00
let placement = Storage.getItem('webcamPlacement');
const lastPosition = Storage.getItem('webcamLastPosition') || { x: 0, y: 0 };
let position = lastPosition;
if (!placement) {
placement = webcamsDefaultPlacement;
}
2019-06-25 23:40:57 +08:00
let videoRefWidth;
if (videoRef) {
const videoRefRect = videoRef.getBoundingClientRect();
const {
width: vWidth,
} = videoRefRect;
videoRefWidth = vWidth;
}
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
});
2019-11-26 00:38:00 +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,
2019-12-03 04:21:34 +08:00
[styles.fullWidth]: (
(
placement === 'top'
|| placement === 'bottom'
)
|| swapLayout
2019-12-03 04:21:34 +08:00
)
&& !dragging,
[styles.fullHeight]: (
(
placement === 'left'
&& placement === 'right'
)
|| swapLayout
)
&& !dragging,
2019-12-03 04:21:34 +08:00
[styles.overlayToTop]: placement === 'top' && !dragging,
2019-11-26 00:38:00 +08:00
[styles.overlayToRight]: placement === 'right' && !dragging,
2019-07-10 07:11:48 +08:00
[styles.overlayToBottom]: placement === 'bottom' && !dragging,
2019-11-26 00:38:00 +08:00
[styles.overlayToLeft]: placement === 'left' && !dragging,
2019-03-01 05:39:57 +08:00
[styles.dragging]: dragging,
2019-11-26 00:38:00 +08:00
[styles.hide]: (
(
placement === 'left'
|| placement === 'right'
)
&& layout === 'vertical'
)
2019-12-03 04:21:34 +08:00
|| (
(
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,
});
let resizeWidth;
let resizeHeight;
if ((placement === 'top' || placement === 'bottom') && !dragging) {
resizeWidth = '100%';
resizeHeight = videoListSize.height;
}
if ((placement === 'left' || placement === 'right') && !dragging) {
resizeWidth = videoRefWidth;
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
handleWrapperClass="resizeWrapper"
2019-07-30 03:42:11 +08:00
onResize={dispatchResizeEvent}
2019-09-18 02:25:28 +08:00
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;
2019-07-10 07:11:48 +08:00
export default withDraggableContext(WebcamDraggable);