374 lines
13 KiB
TypeScript
374 lines
13 KiB
TypeScript
|
/* eslint-disable */
|
||
|
// @ts-nocheck
|
||
|
import React, { useState, useEffect } from 'react';
|
||
|
import Resizable from 're-resizable';
|
||
|
import Draggable from 'react-draggable';
|
||
|
import { Session } from 'meteor/session';
|
||
|
import { withTracker } from 'meteor/react-meteor-data';
|
||
|
import { useSubscription } from '@apollo/client';
|
||
|
import { useVideoStreams } from '/imports/ui/components/video-provider/video-provider-graphql/hooks';
|
||
|
import {
|
||
|
layoutSelect,
|
||
|
layoutSelectInput,
|
||
|
layoutSelectOutput,
|
||
|
layoutDispatch,
|
||
|
} from '/imports/ui/components/layout/context';
|
||
|
import Settings from '/imports/ui/services/settings';
|
||
|
import { LAYOUT_TYPE, ACTIONS, CAMERADOCK_POSITION } from '/imports/ui/components/layout/enums';
|
||
|
import { sortVideoStreams } from '/imports/ui/components/video-provider/stream-sorting';
|
||
|
import { CURRENT_PRESENTATION_PAGE_SUBSCRIPTION } from '/imports/ui/components/whiteboard/queries';
|
||
|
import useCurrentUser from '/imports/ui/core/hooks/useCurrentUser';
|
||
|
import DropAreaContainer from './drop-areas/container';
|
||
|
import VideoProviderContainer from '/imports/ui/components/video-provider/video-provider-graphql/container';
|
||
|
import Storage from '/imports/ui/services/storage/session';
|
||
|
import Styled from '../styles';
|
||
|
|
||
|
const { defaultSorting: DEFAULT_SORTING } = window.meetingClientSettings.public.kurento.cameraSortingModes;
|
||
|
|
||
|
const WebcamComponentGraphql = ({
|
||
|
cameraDock,
|
||
|
swapLayout,
|
||
|
focusedId,
|
||
|
layoutContextDispatch,
|
||
|
fullscreen,
|
||
|
isPresenter,
|
||
|
displayPresentation,
|
||
|
cameraOptimalGridSize: cameraSize,
|
||
|
isRTL,
|
||
|
isGridEnabled,
|
||
|
}) => {
|
||
|
const [isResizing, setIsResizing] = useState(false);
|
||
|
const [isDragging, setIsDragging] = useState(false);
|
||
|
const [isFullscreen, setIsFullScreen] = useState(false);
|
||
|
const [resizeStart, setResizeStart] = useState({ width: 0, height: 0 });
|
||
|
const [cameraMaxWidth, setCameraMaxWidth] = useState(0);
|
||
|
const [draggedAtLeastOneTime, setDraggedAtLeastOneTime] = useState(false);
|
||
|
|
||
|
const lastSize = Storage.getItem('webcamSize') || { width: 0, height: 0 };
|
||
|
const { width: lastWidth, height: lastHeight } = lastSize;
|
||
|
|
||
|
const isCameraTopOrBottom = cameraDock.position === CAMERADOCK_POSITION.CONTENT_TOP
|
||
|
|| cameraDock.position === CAMERADOCK_POSITION.CONTENT_BOTTOM;
|
||
|
const isCameraLeftOrRight = cameraDock.position === CAMERADOCK_POSITION.CONTENT_LEFT
|
||
|
|| cameraDock.position === CAMERADOCK_POSITION.CONTENT_RIGHT;
|
||
|
const isCameraSidebar = cameraDock.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM;
|
||
|
|
||
|
useEffect(() => {
|
||
|
const handleVisibility = () => {
|
||
|
if (document.hidden) {
|
||
|
document.dispatchEvent(new MouseEvent('mouseup', { bubbles: true }));
|
||
|
}
|
||
|
};
|
||
|
|
||
|
document.addEventListener('visibilitychange', handleVisibility);
|
||
|
|
||
|
return () => {
|
||
|
document.removeEventListener('visibilitychange', handleVisibility);
|
||
|
};
|
||
|
}, []);
|
||
|
|
||
|
useEffect(() => {
|
||
|
setIsFullScreen(fullscreen.group === 'webcams');
|
||
|
}, [fullscreen]);
|
||
|
|
||
|
useEffect(() => {
|
||
|
const newCameraMaxWidth = (isPresenter && cameraDock.presenterMaxWidth) ? cameraDock.presenterMaxWidth : cameraDock.maxWidth;
|
||
|
setCameraMaxWidth(newCameraMaxWidth);
|
||
|
|
||
|
if (isCameraLeftOrRight && cameraDock.width > newCameraMaxWidth) {
|
||
|
layoutContextDispatch(
|
||
|
{
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_SIZE,
|
||
|
value: {
|
||
|
width: newCameraMaxWidth,
|
||
|
height: cameraDock.height,
|
||
|
browserWidth: window.innerWidth,
|
||
|
browserHeight: window.innerHeight,
|
||
|
},
|
||
|
},
|
||
|
);
|
||
|
Storage.setItem('webcamSize', { width: newCameraMaxWidth, height: lastHeight });
|
||
|
}
|
||
|
|
||
|
const cams = document.getElementById('cameraDock');
|
||
|
cams?.setAttribute("data-position", cameraDock.position);
|
||
|
}, [cameraDock.position, cameraDock.maxWidth, isPresenter, displayPresentation]);
|
||
|
|
||
|
const handleVideoFocus = (id) => {
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_FOCUSED_CAMERA_ID,
|
||
|
value: focusedId !== id ? id : false,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const onResizeHandle = (deltaWidth, deltaHeight) => {
|
||
|
if (cameraDock.resizableEdge.top || cameraDock.resizableEdge.bottom) {
|
||
|
layoutContextDispatch(
|
||
|
{
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_SIZE,
|
||
|
value: {
|
||
|
width: cameraDock.width,
|
||
|
height: resizeStart.height + deltaHeight,
|
||
|
browserWidth: window.innerWidth,
|
||
|
browserHeight: window.innerHeight,
|
||
|
},
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
if (cameraDock.resizableEdge.left || cameraDock.resizableEdge.right) {
|
||
|
layoutContextDispatch(
|
||
|
{
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_SIZE,
|
||
|
value: {
|
||
|
width: resizeStart.width + deltaWidth,
|
||
|
height: cameraDock.height,
|
||
|
browserWidth: window.innerWidth,
|
||
|
browserHeight: window.innerHeight,
|
||
|
},
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleWebcamDragStart = () => {
|
||
|
setIsDragging(true);
|
||
|
document.body.style.overflow = 'hidden';
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_IS_DRAGGING,
|
||
|
value: true,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
const handleWebcamDragStop = (e) => {
|
||
|
setIsDragging(false);
|
||
|
setDraggedAtLeastOneTime(false);
|
||
|
document.body.style.overflow = 'auto';
|
||
|
|
||
|
if (Object.values(CAMERADOCK_POSITION).includes(e.target.id) && draggedAtLeastOneTime) {
|
||
|
const layout = document.getElementById('layout');
|
||
|
layout?.setAttribute("data-cam-position", e?.target?.id);
|
||
|
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_POSITION,
|
||
|
value: e.target.id,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_IS_DRAGGING,
|
||
|
value: false,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
let draggableOffset = {
|
||
|
left: isDragging && (isCameraTopOrBottom || isCameraSidebar)
|
||
|
? ((cameraDock.width - cameraSize.width) / 2)
|
||
|
: 0,
|
||
|
top: isDragging && isCameraLeftOrRight
|
||
|
? ((cameraDock.height - cameraSize.height) / 2)
|
||
|
: 0,
|
||
|
};
|
||
|
|
||
|
if (isRTL) {
|
||
|
draggableOffset.left = draggableOffset.left * -1;
|
||
|
}
|
||
|
const isIphone = !!(navigator.userAgent.match(/iPhone/i));
|
||
|
|
||
|
const mobileWidth = `${isDragging ? cameraSize.width : cameraDock.width}pt`;
|
||
|
const mobileHeight = `${isDragging ? cameraSize.height : cameraDock.height}pt`;
|
||
|
const isDesktopWidth = isDragging ? cameraSize.width : cameraDock.width;
|
||
|
const isDesktopHeight = isDragging ? cameraSize.height : cameraDock.height;
|
||
|
const camOpacity = isDragging ? 0.5 : undefined;
|
||
|
return (
|
||
|
<>
|
||
|
{isDragging ? <DropAreaContainer /> : null}
|
||
|
<Styled.ResizableWrapper
|
||
|
horizontal={cameraDock.position === CAMERADOCK_POSITION.CONTENT_TOP
|
||
|
|| cameraDock.position === CAMERADOCK_POSITION.CONTENT_BOTTOM}
|
||
|
vertical={cameraDock.position === CAMERADOCK_POSITION.CONTENT_LEFT
|
||
|
|| cameraDock.position === CAMERADOCK_POSITION.CONTENT_RIGHT}
|
||
|
>
|
||
|
<Draggable
|
||
|
handle="video"
|
||
|
bounds="html"
|
||
|
onStart={handleWebcamDragStart}
|
||
|
onDrag={() => {
|
||
|
if (!draggedAtLeastOneTime) {
|
||
|
setDraggedAtLeastOneTime(true);
|
||
|
}
|
||
|
}}
|
||
|
onStop={handleWebcamDragStop}
|
||
|
onMouseDown={
|
||
|
cameraDock.isDraggable ? (e) => e.preventDefault() : undefined
|
||
|
}
|
||
|
disabled={!cameraDock.isDraggable || isResizing || isFullscreen}
|
||
|
position={
|
||
|
{
|
||
|
x: cameraDock.left - cameraDock.right + draggableOffset.left,
|
||
|
y: cameraDock.top + draggableOffset.top,
|
||
|
}
|
||
|
}
|
||
|
>
|
||
|
<Resizable
|
||
|
minWidth={isDragging ? cameraSize.width : cameraDock.minWidth}
|
||
|
minHeight={isDragging ? cameraSize.height : cameraDock.minHeight}
|
||
|
maxWidth={isDragging ? cameraSize.width : cameraMaxWidth}
|
||
|
maxHeight={isDragging ? cameraSize.height : cameraDock.maxHeight}
|
||
|
size={{
|
||
|
width: isDragging ? cameraSize.width : cameraDock.width,
|
||
|
height: isDragging ? cameraSize.height : cameraDock.height,
|
||
|
}}
|
||
|
onResizeStart={() => {
|
||
|
setIsResizing(true);
|
||
|
setResizeStart({ width: cameraDock.width, height: cameraDock.height });
|
||
|
onResizeHandle(cameraDock.width, cameraDock.height);
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_IS_RESIZING,
|
||
|
value: true,
|
||
|
});
|
||
|
}}
|
||
|
onResize={(e, direction, ref, d) => {
|
||
|
onResizeHandle(d.width, d.height);
|
||
|
}}
|
||
|
onResizeStop={() => {
|
||
|
setResizeStart({ width: 0, height: 0 });
|
||
|
setTimeout(() => setIsResizing(false), 500);
|
||
|
layoutContextDispatch({
|
||
|
type: ACTIONS.SET_CAMERA_DOCK_IS_RESIZING,
|
||
|
value: false,
|
||
|
});
|
||
|
}}
|
||
|
enable={{
|
||
|
top: !isFullscreen && !isDragging && !swapLayout && cameraDock.resizableEdge.top,
|
||
|
bottom: !isFullscreen && !isDragging && !swapLayout
|
||
|
&& cameraDock.resizableEdge.bottom,
|
||
|
left: !isFullscreen && !isDragging && !swapLayout && cameraDock.resizableEdge.left,
|
||
|
right: !isFullscreen && !isDragging && !swapLayout && cameraDock.resizableEdge.right,
|
||
|
topLeft: false,
|
||
|
topRight: false,
|
||
|
bottomLeft: false,
|
||
|
bottomRight: false,
|
||
|
}}
|
||
|
style={{
|
||
|
position: 'absolute',
|
||
|
zIndex: isCameraSidebar && !isDragging ? 0 : cameraDock.zIndex,
|
||
|
}}
|
||
|
>
|
||
|
<Styled.Draggable
|
||
|
isDraggable={cameraDock.isDraggable && !isFullscreen && !isDragging}
|
||
|
isDragging={isDragging}
|
||
|
id="cameraDock"
|
||
|
role="region"
|
||
|
draggable={cameraDock.isDraggable && !isFullscreen ? 'true' : undefined}
|
||
|
style={{
|
||
|
width: isIphone ? mobileWidth : isDesktopWidth,
|
||
|
height: isIphone ? mobileHeight : isDesktopHeight,
|
||
|
opacity: camOpacity,
|
||
|
background: null,
|
||
|
}}
|
||
|
>
|
||
|
<VideoProviderContainer
|
||
|
{...{
|
||
|
swapLayout,
|
||
|
cameraDock,
|
||
|
focusedId,
|
||
|
handleVideoFocus,
|
||
|
isGridEnabled,
|
||
|
}}
|
||
|
/>
|
||
|
</Styled.Draggable>
|
||
|
</Resizable>
|
||
|
</Draggable>
|
||
|
</Styled.ResizableWrapper>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
interface WebcamContainerGraphqlProps {
|
||
|
audioModalIsOpen: boolean;
|
||
|
isLayoutSwapped: boolean;
|
||
|
layoutType: string;
|
||
|
paginationEnabled: boolean;
|
||
|
viewParticipantsWebcams: boolean;
|
||
|
}
|
||
|
|
||
|
const WebcamContainerGraphql: React.FC<WebcamContainerGraphqlProps> = ({
|
||
|
audioModalIsOpen,
|
||
|
isLayoutSwapped,
|
||
|
layoutType,
|
||
|
paginationEnabled,
|
||
|
viewParticipantsWebcams,
|
||
|
}) => {
|
||
|
const fullscreen = layoutSelect((i) => i.fullscreen);
|
||
|
const isRTL = layoutSelect((i) => i.isRTL);
|
||
|
const cameraDockInput = layoutSelectInput((i) => i.cameraDock);
|
||
|
const presentation = layoutSelectOutput((i) => i.presentation);
|
||
|
const cameraDock = layoutSelectOutput((i) => i.cameraDock);
|
||
|
const layoutContextDispatch = layoutDispatch();
|
||
|
const { data: presentationPageData } = useSubscription(CURRENT_PRESENTATION_PAGE_SUBSCRIPTION);
|
||
|
const presentationPage = presentationPageData?.pres_page_curr[0] || {};
|
||
|
const hasPresentation = !!presentationPage?.presentationId;
|
||
|
|
||
|
const swapLayout = !hasPresentation || isLayoutSwapped;
|
||
|
|
||
|
let floatingOverlay = false;
|
||
|
let hideOverlay = false;
|
||
|
|
||
|
if (swapLayout) {
|
||
|
floatingOverlay = true;
|
||
|
hideOverlay = true;
|
||
|
}
|
||
|
|
||
|
const { cameraOptimalGridSize } = cameraDockInput;
|
||
|
const { display: displayPresentation } = presentation;
|
||
|
|
||
|
const { data: currentUserData } = useCurrentUser((user) => ({
|
||
|
presenter: user.presenter,
|
||
|
}));
|
||
|
|
||
|
const isGridEnabled = layoutType === LAYOUT_TYPE.VIDEO_FOCUS;
|
||
|
|
||
|
const { streams: videoUsers, gridUsers } = useVideoStreams(isGridEnabled, paginationEnabled, viewParticipantsWebcams);
|
||
|
|
||
|
let usersVideo;
|
||
|
if (gridUsers.length > 0) {
|
||
|
usersVideo = videoUsers.concat(gridUsers);
|
||
|
} else {
|
||
|
usersVideo = videoUsers;
|
||
|
}
|
||
|
|
||
|
return !audioModalIsOpen && (usersVideo.length > 0 || isGridEnabled)
|
||
|
? (
|
||
|
<WebcamComponentGraphql
|
||
|
{...{
|
||
|
swapLayout,
|
||
|
usersVideo,
|
||
|
focusedId: cameraDock.focusedId,
|
||
|
cameraDock,
|
||
|
cameraOptimalGridSize,
|
||
|
layoutContextDispatch,
|
||
|
fullscreen,
|
||
|
isPresenter: currentUserData?.presenter,
|
||
|
displayPresentation,
|
||
|
isRTL,
|
||
|
isGridEnabled,
|
||
|
floatingOverlay,
|
||
|
hideOverlay,
|
||
|
}}
|
||
|
/>
|
||
|
)
|
||
|
: null;
|
||
|
};
|
||
|
|
||
|
export default withTracker<{
|
||
|
audioModalIsOpen: boolean,
|
||
|
}, WebcamContainerGraphqlProps>(() => {
|
||
|
const data = {
|
||
|
audioModalIsOpen: Session.get('audioModalIsOpen'),
|
||
|
paginationEnabled: Settings.application.paginationEnabled,
|
||
|
viewParticipantsWebcams: Settings.dataSaving.viewParticipantsWebcams,
|
||
|
};
|
||
|
|
||
|
return data;
|
||
|
})(WebcamContainerGraphql);
|