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';
|
2019-03-25 22:43:02 +08:00
|
|
|
import browser from 'browser-detect';
|
2019-07-30 03:42:11 +08:00
|
|
|
import Resizable from 're-resizable';
|
2019-07-24 06:24:31 +08:00
|
|
|
import PropTypes from 'prop-types';
|
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;
|
2019-03-25 22:43:02 +08:00
|
|
|
const BROWSER_ISMOBILE = browser().mobile;
|
|
|
|
|
2019-07-24 06:24:31 +08:00
|
|
|
const propTypes = {
|
|
|
|
swapLayout: PropTypes.bool,
|
|
|
|
singleWebcam: 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,
|
|
|
|
singleWebcam: true,
|
|
|
|
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-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-03 22:05:09 +08:00
|
|
|
}
|
|
|
|
|
2019-06-26 20:02:29 +08:00
|
|
|
componentDidUpdate(prevProps) {
|
2019-07-10 07:11:48 +08:00
|
|
|
const { swapLayout } = this.props;
|
|
|
|
if (prevProps.swapLayout === true && swapLayout === false) {
|
|
|
|
setTimeout(() => this.forceUpdate(), 500);
|
2019-06-25 02:37:17 +08:00
|
|
|
}
|
2019-07-10 07:11:48 +08:00
|
|
|
}
|
2019-06-25 02:37:17 +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-06-03 22:05:09 +08:00
|
|
|
}
|
2019-09-18 02:25:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
onResizeStop() {
|
|
|
|
const { webcamDraggableState, webcamDraggableDispatch } = this.props;
|
|
|
|
const { videoListRef } = webcamDraggableState;
|
|
|
|
if (videoListRef) {
|
|
|
|
const videoListRefRect = videoListRef.getBoundingClientRect();
|
|
|
|
const {
|
|
|
|
width, height,
|
|
|
|
} = videoListRefRect;
|
|
|
|
webcamDraggableDispatch(
|
|
|
|
{
|
|
|
|
type: 'setVideoListSize',
|
|
|
|
value: {
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
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;
|
2019-04-24 04:23:32 +08:00
|
|
|
const { current: mediaContainer } = refMediaContainer;
|
2019-07-10 07:11:48 +08:00
|
|
|
if (mediaContainer) {
|
2019-04-24 04:23:32 +08:00
|
|
|
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,
|
2019-04-24 04:23:32 +08:00
|
|
|
} = 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
|
|
|
}
|
2019-04-24 04:23:32 +08:00
|
|
|
return false;
|
2019-03-01 05:39:57 +08:00
|
|
|
}
|
|
|
|
|
2019-07-10 07:11:48 +08:00
|
|
|
getWebcamsListBounds() {
|
|
|
|
const { webcamDraggableState, singleWebcam } = this.props;
|
|
|
|
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: top - 10, // 10 = margin
|
|
|
|
left: left - (singleWebcam ? 10 : 0), // 10 = margin
|
|
|
|
width: width + (singleWebcam ? 20 : 0), // 20 = margin
|
|
|
|
height: height + 20, // 20 = margin
|
|
|
|
};
|
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
|
|
|
}
|
|
|
|
|
2019-07-10 07:11:48 +08:00
|
|
|
async handleWebcamDragStart() {
|
|
|
|
const { webcamDraggableDispatch, singleWebcam } = this.props;
|
|
|
|
const { x, y } = await this.calculatePosition();
|
2019-03-01 05:39:57 +08:00
|
|
|
|
2019-07-10 07:11:48 +08:00
|
|
|
webcamDraggableDispatch({ type: 'dragStart' });
|
2019-06-22 04:52:43 +08:00
|
|
|
|
2019-07-10 07:11:48 +08:00
|
|
|
webcamDraggableDispatch(
|
|
|
|
{
|
|
|
|
type: 'setTempPosition',
|
|
|
|
value: {
|
|
|
|
x: singleWebcam ? x : 0,
|
|
|
|
y,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
2019-03-01 05:39:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
handleWebcamDragStop(e, position) {
|
2019-07-10 07:11:48 +08:00
|
|
|
const { webcamDraggableDispatch, singleWebcam } = this.props;
|
2019-08-06 05:17:39 +08:00
|
|
|
const targetClassname = JSON.stringify(e.target.className);
|
2019-03-01 05:39:57 +08:00
|
|
|
const { x, y } = position;
|
|
|
|
|
2019-08-01 22:19:16 +08:00
|
|
|
if (targetClassname && targetClassname.includes('Top')) {
|
2019-07-10 07:11:48 +08:00
|
|
|
webcamDraggableDispatch({ type: 'setplacementToTop' });
|
2019-08-01 22:19:16 +08:00
|
|
|
} else if (targetClassname && targetClassname.includes('Bottom')) {
|
2019-07-10 07:11:48 +08:00
|
|
|
webcamDraggableDispatch({ type: 'setplacementToBottom' });
|
|
|
|
} else if (singleWebcam) {
|
|
|
|
webcamDraggableDispatch(
|
|
|
|
{
|
|
|
|
type: 'setLastPosition',
|
|
|
|
value: {
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
webcamDraggableDispatch({ type: 'setplacementToFloating' });
|
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,
|
|
|
|
singleWebcam,
|
2019-03-01 05:39:57 +08:00
|
|
|
swapLayout,
|
|
|
|
hideOverlay,
|
|
|
|
disableVideo,
|
2019-05-28 06:18:26 +08:00
|
|
|
audioModalIsOpen,
|
2019-03-01 05:39:57 +08:00
|
|
|
} = this.props;
|
2019-06-25 23:40:57 +08:00
|
|
|
|
2019-09-18 02:25:28 +08:00
|
|
|
const { dragging, isCameraFullscreen, videoListSize } = 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
|
|
|
|
2019-07-10 07:11:48 +08:00
|
|
|
if (dragging) {
|
|
|
|
position = webcamDraggableState.tempPosition;
|
|
|
|
} else if (!dragging && placement === 'floating' && singleWebcam) {
|
|
|
|
position = webcamDraggableState.lastPosition;
|
|
|
|
} else {
|
|
|
|
position = {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
};
|
|
|
|
}
|
2019-06-08 04:45:54 +08:00
|
|
|
|
2019-07-27 03:42:39 +08:00
|
|
|
if (swapLayout || isCameraFullscreen || BROWSER_ISMOBILE) {
|
2019-07-10 07:11:48 +08:00
|
|
|
position = {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
};
|
2019-06-08 04:45:54 +08:00
|
|
|
}
|
|
|
|
|
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 && singleWebcam && placement === 'floating' ? mediaWidth - webcamsWidth : position.x,
|
|
|
|
y: isOverflowHeight
|
|
|
|
&& !dragging && !swapLayout && singleWebcam && placement === 'floating' ? mediaHeight - (webcamsHeight + 1) : position.y,
|
|
|
|
};
|
2019-03-01 05:39:57 +08:00
|
|
|
|
|
|
|
const contentClassName = cx({
|
|
|
|
[styles.content]: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const overlayClassName = cx({
|
|
|
|
[styles.overlay]: true,
|
|
|
|
[styles.hideOverlay]: hideOverlay,
|
2019-07-10 07:11:48 +08:00
|
|
|
[styles.floatingOverlay]: (singleWebcam && placement === 'floating') || dragging,
|
2019-09-18 02:25:28 +08:00
|
|
|
[styles.autoWidth]: singleWebcam,
|
2019-09-11 03:41:11 +08:00
|
|
|
[styles.full]: !singleWebcam,
|
2019-07-10 07:11:48 +08:00
|
|
|
[styles.overlayToTop]: (placement === 'floating' && !singleWebcam)
|
|
|
|
|| (placement === 'top' && !dragging),
|
|
|
|
[styles.overlayToBottom]: placement === 'bottom' && !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,
|
2019-07-27 03:42:39 +08:00
|
|
|
[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,
|
2019-07-27 03:42:39 +08:00
|
|
|
[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
|
|
|
});
|
|
|
|
|
|
|
|
const dropZoneBgBottomClassName = cx({
|
2019-07-10 07:11:48 +08:00
|
|
|
[styles.dropZoneBgBottom]: true,
|
2019-03-01 05:39:57 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<div
|
|
|
|
className={dropZoneTopClassName}
|
2019-07-10 07:11:48 +08:00
|
|
|
style={{ height: !singleWebcam ? '50%' : '20%' }}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className={dropZoneBgTopClassName}
|
|
|
|
/>
|
|
|
|
</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()}
|
2019-07-27 03:42:39 +08:00
|
|
|
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={
|
|
|
|
singleWebcam
|
|
|
|
? {
|
|
|
|
height: videoListSize.height,
|
|
|
|
width: videoListSize.width,
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
height: videoListSize.height,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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={{
|
2019-09-18 02:25:28 +08:00
|
|
|
top: !(placement === 'top'),
|
|
|
|
bottom: !(placement === 'bottom'),
|
2019-07-30 03:42:11 +08:00
|
|
|
left: false,
|
2019-09-18 02:25:28 +08:00
|
|
|
right: false,
|
|
|
|
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={{
|
2019-07-10 07:11:48 +08:00
|
|
|
marginLeft: singleWebcam
|
|
|
|
&& !(placement === 'bottom' || placement === 'top')
|
|
|
|
? 10
|
|
|
|
: 0,
|
|
|
|
marginRight: singleWebcam
|
|
|
|
&& !(placement === 'bottom' || placement === 'top')
|
|
|
|
? 10
|
|
|
|
: 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-07-10 07:11:48 +08:00
|
|
|
style={{ height: !singleWebcam ? '50%' : '20%' }}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className={dropZoneBgBottomClassName}
|
|
|
|
/>
|
|
|
|
</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);
|