2021-09-09 21:51:18 +08:00
|
|
|
import { useEffect, useRef } from 'react';
|
2021-05-18 04:25:07 +08:00
|
|
|
import _ from 'lodash';
|
2021-09-11 04:48:52 +08:00
|
|
|
import { layoutSelect, layoutSelectInput, layoutDispatch } from '/imports/ui/components/layout/context';
|
2021-08-05 19:03:24 +08:00
|
|
|
import DEFAULT_VALUES from '/imports/ui/components/layout/defaultValues';
|
|
|
|
import { INITIAL_INPUT_STATE } from '/imports/ui/components/layout/initState';
|
2021-09-25 01:38:44 +08:00
|
|
|
import { ACTIONS, CAMERADOCK_POSITION, PANELS } from '../enums';
|
2022-02-24 21:24:05 +08:00
|
|
|
import Storage from '/imports/ui/services/storage/session';
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-07-13 03:47:06 +08:00
|
|
|
const windowWidth = () => window.document.documentElement.clientWidth;
|
|
|
|
const windowHeight = () => window.document.documentElement.clientHeight;
|
2021-05-18 04:25:07 +08:00
|
|
|
const min = (value1, value2) => (value1 <= value2 ? value1 : value2);
|
|
|
|
const max = (value1, value2) => (value1 >= value2 ? value1 : value2);
|
|
|
|
|
2021-09-23 21:34:36 +08:00
|
|
|
const CustomLayout = (props) => {
|
2021-09-25 01:38:44 +08:00
|
|
|
const { bannerAreaHeight, calculatesActionbarHeight, isMobile } = props;
|
2021-09-23 21:34:36 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
function usePrevious(value) {
|
|
|
|
const ref = useRef();
|
|
|
|
useEffect(() => {
|
|
|
|
ref.current = value;
|
|
|
|
});
|
|
|
|
return ref.current;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-09-11 04:48:52 +08:00
|
|
|
const input = layoutSelect((i) => i.input);
|
|
|
|
const deviceType = layoutSelect((i) => i.deviceType);
|
|
|
|
const isRTL = layoutSelect((i) => i.isRTL);
|
|
|
|
const fullscreen = layoutSelect((i) => i.fullscreen);
|
|
|
|
const fontSize = layoutSelect((i) => i.fontSize);
|
|
|
|
const currentPanelType = layoutSelect((i) => i.currentPanelType);
|
|
|
|
|
|
|
|
const presentationInput = layoutSelectInput((i) => i.presentation);
|
|
|
|
const sidebarNavigationInput = layoutSelectInput((i) => i.sidebarNavigation);
|
|
|
|
const sidebarContentInput = layoutSelectInput((i) => i.sidebarContent);
|
|
|
|
const cameraDockInput = layoutSelectInput((i) => i.cameraDock);
|
|
|
|
const actionbarInput = layoutSelectInput((i) => i.actionBar);
|
|
|
|
const navbarInput = layoutSelectInput((i) => i.navBar);
|
|
|
|
const layoutContextDispatch = layoutDispatch();
|
2021-09-09 21:51:18 +08:00
|
|
|
|
2022-03-23 02:29:49 +08:00
|
|
|
const { isResizing } = cameraDockInput;
|
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const prevDeviceType = usePrevious(deviceType);
|
2022-03-23 02:29:49 +08:00
|
|
|
const prevIsResizing = usePrevious(isResizing);
|
2021-09-09 21:51:18 +08:00
|
|
|
|
|
|
|
const throttledCalculatesLayout = _.throttle(() => calculatesLayout(),
|
2021-09-10 01:12:05 +08:00
|
|
|
50, { trailing: true, leading: true });
|
2021-09-09 21:51:18 +08:00
|
|
|
|
|
|
|
useEffect(() => {
|
2021-05-18 04:25:07 +08:00
|
|
|
window.addEventListener('resize', () => {
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_BROWSER_SIZE,
|
|
|
|
value: {
|
|
|
|
width: window.document.documentElement.clientWidth,
|
|
|
|
height: window.document.documentElement.clientHeight,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
2021-09-09 21:51:18 +08:00
|
|
|
}, []);
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
useEffect(() => {
|
|
|
|
if (deviceType === null) return;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
if (deviceType !== prevDeviceType) {
|
|
|
|
// reset layout if deviceType changed
|
|
|
|
// not all options is supported in all devices
|
|
|
|
init();
|
2021-05-18 04:25:07 +08:00
|
|
|
} else {
|
2021-09-09 21:51:18 +08:00
|
|
|
throttledCalculatesLayout();
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
2021-09-10 01:43:06 +08:00
|
|
|
}, [input, deviceType, isRTL, fontSize, fullscreen]);
|
2021-07-12 21:22:26 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const calculatesDropAreas = (sidebarNavWidth, sidebarContentWidth, cameraDockBounds) => {
|
|
|
|
const { height: actionBarHeight } = calculatesActionbarHeight();
|
2021-08-09 22:24:02 +08:00
|
|
|
const mediaAreaHeight = windowHeight()
|
2021-07-22 22:42:45 +08:00
|
|
|
- (DEFAULT_VALUES.navBarHeight + actionBarHeight);
|
2021-08-09 22:24:02 +08:00
|
|
|
const mediaAreaWidth = windowWidth() - (sidebarNavWidth + sidebarContentWidth);
|
2021-05-18 04:25:07 +08:00
|
|
|
const DROP_ZONE_DEFAUL_SIZE = 100;
|
|
|
|
const dropZones = {};
|
2021-07-27 22:48:08 +08:00
|
|
|
const sidebarSize = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_TOP] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: !isRTL ? sidebarSize : null,
|
|
|
|
right: isRTL ? sidebarSize : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: mediaAreaWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_RIGHT] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight + DROP_ZONE_DEFAUL_SIZE,
|
2021-08-09 22:24:02 +08:00
|
|
|
left: !isRTL ? windowWidth() - DROP_ZONE_DEFAUL_SIZE : 0,
|
2021-05-18 04:25:07 +08:00
|
|
|
height: mediaAreaHeight
|
|
|
|
- (2 * DROP_ZONE_DEFAUL_SIZE),
|
|
|
|
width: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_BOTTOM] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight
|
|
|
|
+ mediaAreaHeight
|
|
|
|
- DROP_ZONE_DEFAUL_SIZE,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: !isRTL ? sidebarSize : null,
|
|
|
|
right: isRTL ? sidebarSize : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: mediaAreaWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_LEFT] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight + DROP_ZONE_DEFAUL_SIZE,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: !isRTL ? sidebarSize : null,
|
|
|
|
right: isRTL ? sidebarSize : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
height: mediaAreaHeight
|
|
|
|
- (2 * DROP_ZONE_DEFAUL_SIZE),
|
|
|
|
width: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM] = {
|
2021-08-09 22:24:02 +08:00
|
|
|
top: windowHeight() - DROP_ZONE_DEFAUL_SIZE,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: !isRTL ? sidebarNavWidth : null,
|
|
|
|
right: isRTL ? sidebarNavWidth : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: sidebarContentWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
return dropZones;
|
2021-09-09 21:51:18 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const init = () => {
|
2021-09-25 01:38:44 +08:00
|
|
|
if (isMobile) {
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_LAYOUT_INPUT,
|
|
|
|
value: _.defaultsDeep({
|
|
|
|
sidebarNavigation: {
|
|
|
|
isOpen: false,
|
2021-09-09 21:51:18 +08:00
|
|
|
sidebarNavPanel: sidebarNavigationInput.sidebarNavPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContent: {
|
|
|
|
isOpen: false,
|
2021-09-09 21:51:18 +08:00
|
|
|
sidebarContentPanel: sidebarContentInput.sidebarContentPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContentHorizontalResizer: {
|
|
|
|
isOpen: false,
|
|
|
|
},
|
|
|
|
presentation: {
|
2021-09-14 02:41:52 +08:00
|
|
|
isOpen: presentationInput.isOpen,
|
2021-09-09 21:51:18 +08:00
|
|
|
slidesLength: presentationInput.slidesLength,
|
2021-05-18 04:25:07 +08:00
|
|
|
currentSlide: {
|
2021-09-09 21:51:18 +08:00
|
|
|
...presentationInput.currentSlide,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cameraDock: {
|
2021-09-09 21:51:18 +08:00
|
|
|
numCameras: cameraDockInput.numCameras,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
2022-07-27 21:56:04 +08:00
|
|
|
externalVideo: {
|
|
|
|
hasExternalVideo: input.externalVideo.hasExternalVideo,
|
|
|
|
},
|
|
|
|
screenShare: {
|
|
|
|
hasScreenShare: input.screenShare.hasScreenShare,
|
|
|
|
width: input.screenShare.width,
|
|
|
|
height: input.screenShare.height,
|
|
|
|
},
|
2021-05-18 04:25:07 +08:00
|
|
|
}, INITIAL_INPUT_STATE),
|
|
|
|
});
|
|
|
|
} else {
|
2021-09-09 21:51:18 +08:00
|
|
|
const { sidebarContentPanel } = sidebarContentInput;
|
2021-07-14 21:53:10 +08:00
|
|
|
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_LAYOUT_INPUT,
|
|
|
|
value: _.defaultsDeep({
|
|
|
|
sidebarNavigation: {
|
2022-01-04 03:47:56 +08:00
|
|
|
isOpen: input.sidebarNavigation.isOpen || sidebarContentPanel !== PANELS.NONE || false,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContent: {
|
2021-07-22 02:34:34 +08:00
|
|
|
isOpen: sidebarContentPanel !== PANELS.NONE,
|
2021-07-14 21:53:10 +08:00
|
|
|
sidebarContentPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContentHorizontalResizer: {
|
|
|
|
isOpen: false,
|
|
|
|
},
|
|
|
|
presentation: {
|
2021-09-14 02:41:52 +08:00
|
|
|
isOpen: presentationInput.isOpen,
|
2021-09-09 21:51:18 +08:00
|
|
|
slidesLength: presentationInput.slidesLength,
|
2021-05-18 04:25:07 +08:00
|
|
|
currentSlide: {
|
2021-09-09 21:51:18 +08:00
|
|
|
...presentationInput.currentSlide,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cameraDock: {
|
2021-09-09 21:51:18 +08:00
|
|
|
numCameras: cameraDockInput.numCameras,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
2022-07-22 01:40:12 +08:00
|
|
|
externalVideo: {
|
|
|
|
hasExternalVideo: input.externalVideo.hasExternalVideo,
|
|
|
|
},
|
|
|
|
screenShare: {
|
|
|
|
hasScreenShare: input.screenShare.hasScreenShare,
|
2022-07-22 07:25:15 +08:00
|
|
|
width: input.screenShare.width,
|
|
|
|
height: input.screenShare.height,
|
2022-07-22 01:40:12 +08:00
|
|
|
},
|
2021-05-18 04:25:07 +08:00
|
|
|
}, INITIAL_INPUT_STATE),
|
|
|
|
});
|
|
|
|
}
|
2021-09-09 21:51:18 +08:00
|
|
|
throttledCalculatesLayout();
|
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const calculatesSidebarContentHeight = (cameraDockHeight) => {
|
|
|
|
const { isOpen } = presentationInput;
|
2021-05-18 04:25:07 +08:00
|
|
|
let sidebarContentHeight = 0;
|
2021-09-09 21:51:18 +08:00
|
|
|
if (sidebarContentInput.isOpen) {
|
2021-09-25 01:38:44 +08:00
|
|
|
if (isMobile) {
|
2021-08-09 22:24:02 +08:00
|
|
|
sidebarContentHeight = windowHeight() - DEFAULT_VALUES.navBarHeight;
|
2021-09-09 21:51:18 +08:00
|
|
|
} else if (cameraDockInput.numCameras > 0
|
|
|
|
&& cameraDockInput.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM
|
2021-07-23 04:37:46 +08:00
|
|
|
&& isOpen) {
|
2021-08-09 22:24:02 +08:00
|
|
|
sidebarContentHeight = windowHeight() - cameraDockHeight;
|
2021-05-18 04:25:07 +08:00
|
|
|
} else {
|
2021-08-09 22:24:02 +08:00
|
|
|
sidebarContentHeight = windowHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
2021-09-09 21:51:18 +08:00
|
|
|
sidebarContentHeight -= bannerAreaHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
return sidebarContentHeight;
|
2021-09-09 21:51:18 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const calculatesCameraDockBounds = (sidebarNavWidth, sidebarContentWidth, mediaAreaBounds) => {
|
2021-09-24 04:43:02 +08:00
|
|
|
const { baseCameraDockBounds } = props;
|
2021-07-27 22:48:08 +08:00
|
|
|
const sidebarSize = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-23 21:34:36 +08:00
|
|
|
const baseBounds = baseCameraDockBounds(mediaAreaBounds, sidebarSize);
|
|
|
|
|
2021-09-24 04:46:50 +08:00
|
|
|
// do not proceed if using values from LayoutEngine
|
2021-09-24 03:21:06 +08:00
|
|
|
if (Object.keys(baseBounds).length > 0) {
|
2021-09-23 21:34:36 +08:00
|
|
|
return baseBounds;
|
|
|
|
}
|
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
const {
|
|
|
|
camerasMargin,
|
|
|
|
cameraDockMinHeight,
|
|
|
|
cameraDockMinWidth,
|
|
|
|
navBarHeight,
|
|
|
|
presentationToolbarMinWidth,
|
|
|
|
} = DEFAULT_VALUES;
|
2021-09-23 21:34:36 +08:00
|
|
|
|
2021-05-18 04:25:07 +08:00
|
|
|
const cameraDockBounds = {};
|
|
|
|
|
2021-09-23 21:34:36 +08:00
|
|
|
let cameraDockHeight = 0;
|
|
|
|
let cameraDockWidth = 0;
|
2022-03-23 02:29:49 +08:00
|
|
|
|
2022-02-24 21:24:05 +08:00
|
|
|
const lastSize = Storage.getItem('webcamSize') || { width: 0, height: 0 };
|
2022-03-23 02:29:49 +08:00
|
|
|
let { width: lastWidth, height: lastHeight } = lastSize;
|
2021-09-23 21:34:36 +08:00
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
if (cameraDockInput.isDragging) cameraDockBounds.zIndex = 99;
|
|
|
|
else cameraDockBounds.zIndex = 1;
|
|
|
|
|
|
|
|
const isCameraTop = cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_TOP;
|
|
|
|
const isCameraBottom = cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_BOTTOM;
|
|
|
|
const isCameraLeft = cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_LEFT;
|
|
|
|
const isCameraRight = cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_RIGHT;
|
|
|
|
const isCameraSidebar = cameraDockInput.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM;
|
2022-03-23 02:29:49 +08:00
|
|
|
|
|
|
|
const stoppedResizing = prevIsResizing && !isResizing;
|
|
|
|
if (stoppedResizing) {
|
|
|
|
const isCameraTopOrBottom = cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_TOP
|
|
|
|
|| cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_BOTTOM;
|
|
|
|
|
|
|
|
Storage.setItem('webcamSize', {
|
|
|
|
width: isCameraTopOrBottom || isCameraSidebar
|
|
|
|
? lastWidth : cameraDockInput.width,
|
|
|
|
height: isCameraTopOrBottom || isCameraSidebar
|
|
|
|
? cameraDockInput.height : lastHeight,
|
|
|
|
});
|
|
|
|
|
|
|
|
const updatedLastSize = Storage.getItem('webcamSize');
|
|
|
|
lastWidth = updatedLastSize.width;
|
|
|
|
lastHeight = updatedLastSize.height;
|
|
|
|
}
|
2021-09-24 03:21:06 +08:00
|
|
|
|
|
|
|
if (isCameraTop || isCameraBottom) {
|
2022-02-24 21:24:05 +08:00
|
|
|
if ((lastHeight === 0 && !isResizing) || (isCameraTop && isMobile)) {
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockHeight = min(
|
|
|
|
max((mediaAreaBounds.height * 0.2), cameraDockMinHeight),
|
|
|
|
(mediaAreaBounds.height - cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
} else {
|
2022-02-24 21:24:05 +08:00
|
|
|
const height = isResizing ? cameraDockInput.height : lastHeight;
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockHeight = min(
|
2022-02-24 21:24:05 +08:00
|
|
|
max(height, cameraDockMinHeight),
|
2021-09-24 03:21:06 +08:00
|
|
|
(mediaAreaBounds.height - cameraDockMinHeight),
|
|
|
|
);
|
2021-09-23 21:34:36 +08:00
|
|
|
}
|
|
|
|
|
2022-01-26 00:56:52 +08:00
|
|
|
cameraDockBounds.top = navBarHeight;
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockBounds.left = mediaAreaBounds.left;
|
|
|
|
cameraDockBounds.right = isRTL ? sidebarSize : null;
|
|
|
|
cameraDockBounds.minWidth = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.width = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.maxWidth = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.minHeight = cameraDockMinHeight;
|
|
|
|
cameraDockBounds.height = cameraDockHeight;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height * 0.8;
|
|
|
|
|
|
|
|
if (isCameraBottom) {
|
|
|
|
cameraDockBounds.top += (mediaAreaBounds.height - cameraDockHeight);
|
2021-09-23 21:34:36 +08:00
|
|
|
}
|
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
return cameraDockBounds;
|
|
|
|
}
|
2021-09-23 21:34:36 +08:00
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
if (isCameraLeft || isCameraRight) {
|
2022-02-24 21:24:05 +08:00
|
|
|
if (lastWidth === 0 && !isResizing) {
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockWidth = min(
|
|
|
|
max((mediaAreaBounds.width * 0.2), cameraDockMinWidth),
|
|
|
|
(mediaAreaBounds.width - cameraDockMinWidth),
|
|
|
|
);
|
|
|
|
} else {
|
2022-02-24 21:24:05 +08:00
|
|
|
const width = isResizing ? cameraDockInput.width : lastWidth;
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockWidth = min(
|
2022-02-24 21:24:05 +08:00
|
|
|
max(width, cameraDockMinWidth),
|
2021-09-24 03:21:06 +08:00
|
|
|
(mediaAreaBounds.width - cameraDockMinWidth),
|
|
|
|
);
|
2021-09-23 21:34:36 +08:00
|
|
|
}
|
2021-07-13 03:47:06 +08:00
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockBounds.top = navBarHeight + bannerAreaHeight();
|
|
|
|
cameraDockBounds.minWidth = cameraDockMinWidth;
|
|
|
|
cameraDockBounds.width = cameraDockWidth;
|
|
|
|
cameraDockBounds.maxWidth = mediaAreaBounds.width * 0.8;
|
|
|
|
cameraDockBounds.presenterMaxWidth = mediaAreaBounds.width
|
|
|
|
- presentationToolbarMinWidth
|
|
|
|
- camerasMargin;
|
|
|
|
cameraDockBounds.minHeight = cameraDockMinHeight;
|
|
|
|
cameraDockBounds.height = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height;
|
|
|
|
// button size in vertical position
|
|
|
|
cameraDockBounds.height -= 20;
|
|
|
|
|
|
|
|
if (isCameraRight) {
|
|
|
|
const sizeValue = (mediaAreaBounds.left + mediaAreaBounds.width) - cameraDockWidth;
|
|
|
|
cameraDockBounds.left = !isRTL ? sizeValue - camerasMargin : 0;
|
|
|
|
cameraDockBounds.right = isRTL ? sizeValue + sidebarSize - camerasMargin : null;
|
|
|
|
} else if (isCameraLeft) {
|
2021-09-23 21:34:36 +08:00
|
|
|
cameraDockBounds.left = mediaAreaBounds.left + camerasMargin;
|
|
|
|
cameraDockBounds.right = isRTL ? sidebarSize + (camerasMargin * 2) : null;
|
|
|
|
}
|
2021-07-17 03:39:58 +08:00
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
return cameraDockBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
if (isCameraSidebar) {
|
2022-02-24 21:24:05 +08:00
|
|
|
if (lastHeight === 0 && !isResizing) {
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockHeight = min(
|
|
|
|
max((windowHeight() * 0.2), cameraDockMinHeight),
|
|
|
|
(windowHeight() - cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
} else {
|
2022-02-24 21:24:05 +08:00
|
|
|
const height = isResizing ? cameraDockInput.height : lastHeight;
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockHeight = min(
|
2022-02-24 21:24:05 +08:00
|
|
|
max(height, cameraDockMinHeight),
|
2021-09-24 03:21:06 +08:00
|
|
|
(windowHeight() - cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
}
|
2021-09-23 21:34:36 +08:00
|
|
|
|
2021-09-24 03:21:06 +08:00
|
|
|
cameraDockBounds.top = windowHeight() - cameraDockHeight;
|
|
|
|
cameraDockBounds.left = !isRTL ? sidebarNavWidth : 0;
|
|
|
|
cameraDockBounds.right = isRTL ? sidebarNavWidth : 0;
|
|
|
|
cameraDockBounds.minWidth = sidebarContentWidth;
|
|
|
|
cameraDockBounds.width = sidebarContentWidth;
|
|
|
|
cameraDockBounds.maxWidth = sidebarContentWidth;
|
|
|
|
cameraDockBounds.minHeight = cameraDockMinHeight;
|
|
|
|
cameraDockBounds.height = cameraDockHeight;
|
|
|
|
cameraDockBounds.maxHeight = windowHeight() * 0.8;
|
|
|
|
}
|
2021-05-18 04:25:07 +08:00
|
|
|
return cameraDockBounds;
|
2021-09-09 21:51:18 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const calculatesMediaBounds = (sidebarNavWidth, sidebarContentWidth, cameraDockBounds) => {
|
|
|
|
const { isOpen } = presentationInput;
|
|
|
|
const { height: actionBarHeight } = calculatesActionbarHeight();
|
2021-08-09 22:24:02 +08:00
|
|
|
const mediaAreaHeight = windowHeight()
|
2021-09-14 02:41:52 +08:00
|
|
|
- (DEFAULT_VALUES.navBarHeight + actionBarHeight + bannerAreaHeight());
|
2021-08-09 22:24:02 +08:00
|
|
|
const mediaAreaWidth = windowWidth() - (sidebarNavWidth + sidebarContentWidth);
|
2021-06-15 21:55:46 +08:00
|
|
|
const mediaBounds = {};
|
2021-07-13 03:47:06 +08:00
|
|
|
const { element: fullscreenElement } = fullscreen;
|
2021-07-29 19:50:57 +08:00
|
|
|
const { navBarHeight, camerasMargin } = DEFAULT_VALUES;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-07-17 03:39:58 +08:00
|
|
|
if (!isOpen) {
|
|
|
|
mediaBounds.width = 0;
|
|
|
|
mediaBounds.height = 0;
|
|
|
|
mediaBounds.top = 0;
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? 0 : null;
|
|
|
|
mediaBounds.right = isRTL ? 0 : null;
|
2021-07-17 03:39:58 +08:00
|
|
|
mediaBounds.zIndex = 0;
|
|
|
|
return mediaBounds;
|
|
|
|
}
|
|
|
|
|
2021-10-29 04:08:47 +08:00
|
|
|
if (fullscreenElement === 'Presentation' || fullscreenElement === 'Screenshare' || fullscreenElement === 'ExternalVideo') {
|
2021-08-09 22:24:02 +08:00
|
|
|
mediaBounds.width = windowWidth();
|
|
|
|
mediaBounds.height = windowHeight();
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.top = 0;
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? 0 : null;
|
|
|
|
mediaBounds.right = isRTL ? 0 : null;
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.zIndex = 99;
|
|
|
|
return mediaBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-07-27 22:48:08 +08:00
|
|
|
const sidebarSize = sidebarNavWidth + sidebarContentWidth;
|
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
if (cameraDockInput.numCameras > 0 && !cameraDockInput.isDragging) {
|
|
|
|
switch (cameraDockInput.position) {
|
2021-08-09 22:24:02 +08:00
|
|
|
case CAMERADOCK_POSITION.CONTENT_TOP: {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
2021-07-29 19:50:57 +08:00
|
|
|
mediaBounds.height = mediaAreaHeight - cameraDockBounds.height - camerasMargin;
|
2021-09-14 02:41:52 +08:00
|
|
|
mediaBounds.top = navBarHeight + cameraDockBounds.height + camerasMargin + bannerAreaHeight();
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarSize : null;
|
|
|
|
mediaBounds.right = isRTL ? sidebarSize : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_RIGHT: {
|
2021-09-22 04:20:32 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth - cameraDockBounds.width - (camerasMargin * 2);
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.height = mediaAreaHeight;
|
2021-09-14 02:41:52 +08:00
|
|
|
mediaBounds.top = navBarHeight + bannerAreaHeight();
|
2021-08-04 22:38:20 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarSize : null;
|
2021-08-09 22:24:02 +08:00
|
|
|
mediaBounds.right = isRTL ? sidebarSize - (camerasMargin * 2) : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_BOTTOM: {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
2021-07-29 19:50:57 +08:00
|
|
|
mediaBounds.height = mediaAreaHeight - cameraDockBounds.height - camerasMargin;
|
2021-09-14 02:41:52 +08:00
|
|
|
mediaBounds.top = navBarHeight - camerasMargin + bannerAreaHeight();
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarSize : null;
|
|
|
|
mediaBounds.right = isRTL ? sidebarSize : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_LEFT: {
|
2021-09-22 04:20:32 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth - cameraDockBounds.width - (camerasMargin * 2);
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.height = mediaAreaHeight;
|
2021-09-14 02:41:52 +08:00
|
|
|
mediaBounds.top = navBarHeight + bannerAreaHeight();
|
2021-07-27 22:48:08 +08:00
|
|
|
const sizeValue = sidebarNavWidth
|
2021-06-15 21:55:46 +08:00
|
|
|
+ sidebarContentWidth + mediaAreaWidth - mediaBounds.width;
|
2021-08-04 22:38:20 +08:00
|
|
|
mediaBounds.left = !isRTL ? sizeValue : null;
|
2021-08-04 22:58:07 +08:00
|
|
|
mediaBounds.right = isRTL ? sidebarSize : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
|
|
|
case CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM: {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
|
|
|
mediaBounds.height = mediaAreaHeight;
|
2021-09-14 02:41:52 +08:00
|
|
|
mediaBounds.top = navBarHeight + bannerAreaHeight();
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarSize : null;
|
|
|
|
mediaBounds.right = isRTL ? sidebarSize : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
|
|
|
default: {
|
2021-05-18 04:25:07 +08:00
|
|
|
console.log('presentation - camera default');
|
2021-08-09 22:24:02 +08:00
|
|
|
}
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.zIndex = 1;
|
2021-05-18 04:25:07 +08:00
|
|
|
} else {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
|
|
|
mediaBounds.height = mediaAreaHeight;
|
2021-09-09 21:51:18 +08:00
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
|
2021-07-27 22:48:08 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarSize : null;
|
|
|
|
mediaBounds.right = isRTL ? sidebarSize : null;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 21:55:46 +08:00
|
|
|
return mediaBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const calculatesLayout = () => {
|
2021-09-24 21:33:15 +08:00
|
|
|
const {
|
|
|
|
calculatesNavbarBounds,
|
|
|
|
calculatesActionbarBounds,
|
|
|
|
calculatesSidebarNavWidth,
|
|
|
|
calculatesSidebarNavHeight,
|
|
|
|
calculatesSidebarNavBounds,
|
|
|
|
calculatesSidebarContentWidth,
|
|
|
|
calculatesSidebarContentBounds,
|
|
|
|
calculatesMediaAreaBounds,
|
2021-09-25 01:38:44 +08:00
|
|
|
isTablet,
|
2021-09-24 21:33:15 +08:00
|
|
|
} = props;
|
2021-09-09 21:51:18 +08:00
|
|
|
const { position: cameraPosition } = cameraDockInput;
|
2021-08-16 21:38:39 +08:00
|
|
|
const { camerasMargin, captionsMargin } = DEFAULT_VALUES;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
const sidebarNavWidth = calculatesSidebarNavWidth();
|
|
|
|
const sidebarNavHeight = calculatesSidebarNavHeight();
|
|
|
|
const sidebarContentWidth = calculatesSidebarContentWidth();
|
2021-09-09 22:08:36 +08:00
|
|
|
const sidebarNavBounds = calculatesSidebarNavBounds();
|
|
|
|
const sidebarContentBounds = calculatesSidebarContentBounds(sidebarNavWidth.width);
|
2021-09-09 21:51:18 +08:00
|
|
|
const mediaAreaBounds = calculatesMediaAreaBounds(sidebarNavWidth.width, sidebarContentWidth.width);
|
|
|
|
const navbarBounds = calculatesNavbarBounds(mediaAreaBounds);
|
|
|
|
const actionbarBounds = calculatesActionbarBounds(mediaAreaBounds);
|
|
|
|
const cameraDockBounds = calculatesCameraDockBounds(
|
2021-05-18 04:25:07 +08:00
|
|
|
sidebarNavWidth.width, sidebarContentWidth.width, mediaAreaBounds,
|
|
|
|
);
|
2021-09-09 21:51:18 +08:00
|
|
|
const dropZoneAreas = calculatesDropAreas(sidebarNavWidth.width, sidebarContentWidth.width, cameraDockBounds);
|
|
|
|
const sidebarContentHeight = calculatesSidebarContentHeight(cameraDockBounds.height);
|
|
|
|
const mediaBounds = calculatesMediaBounds(
|
2021-05-18 04:25:07 +08:00
|
|
|
sidebarNavWidth.width, sidebarContentWidth.width, cameraDockBounds,
|
|
|
|
);
|
2022-04-28 02:32:20 +08:00
|
|
|
const sidebarSize = sidebarContentWidth.width + sidebarNavWidth.width;
|
2021-09-09 21:51:18 +08:00
|
|
|
const { height: actionBarHeight } = calculatesActionbarHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-08-04 01:03:06 +08:00
|
|
|
let horizontalCameraDiff = 0;
|
|
|
|
|
|
|
|
if (cameraPosition === CAMERADOCK_POSITION.CONTENT_LEFT) {
|
|
|
|
horizontalCameraDiff = cameraDockBounds.width + (camerasMargin * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cameraPosition === CAMERADOCK_POSITION.CONTENT_RIGHT) {
|
|
|
|
horizontalCameraDiff = camerasMargin * 2;
|
|
|
|
}
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_NAVBAR_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: navbarInput.hasNavBar,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: navbarBounds.width,
|
|
|
|
height: navbarBounds.height,
|
|
|
|
top: navbarBounds.top,
|
|
|
|
left: navbarBounds.left,
|
|
|
|
tabOrder: DEFAULT_VALUES.navBarTabOrder,
|
2021-09-24 04:43:02 +08:00
|
|
|
zIndex: navbarBounds.zIndex,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_ACTIONBAR_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: actionbarInput.hasActionBar,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: actionbarBounds.width,
|
|
|
|
height: actionbarBounds.height,
|
2021-07-22 22:04:38 +08:00
|
|
|
innerHeight: actionbarBounds.innerHeight,
|
2021-05-18 04:25:07 +08:00
|
|
|
top: actionbarBounds.top,
|
|
|
|
left: actionbarBounds.left,
|
2021-07-22 22:04:38 +08:00
|
|
|
padding: actionbarBounds.padding,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.actionBarTabOrder,
|
|
|
|
zIndex: actionbarBounds.zIndex,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-16 21:38:39 +08:00
|
|
|
layoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_CAPTIONS_OUTPUT,
|
|
|
|
value: {
|
2022-04-14 02:10:40 +08:00
|
|
|
left: !isRTL ? (sidebarSize + captionsMargin) : null,
|
|
|
|
right: isRTL ? (sidebarSize + captionsMargin) : null,
|
|
|
|
maxWidth: mediaAreaBounds.width - (captionsMargin * 2),
|
2021-08-16 21:38:39 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_SIDEBAR_NAVIGATION_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: sidebarNavigationInput.isOpen,
|
2021-05-18 04:25:07 +08:00
|
|
|
minWidth: sidebarNavWidth.minWidth,
|
|
|
|
width: sidebarNavWidth.width,
|
|
|
|
maxWidth: sidebarNavWidth.maxWidth,
|
|
|
|
height: sidebarNavHeight,
|
|
|
|
top: sidebarNavBounds.top,
|
|
|
|
left: sidebarNavBounds.left,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: sidebarNavBounds.right,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.sidebarNavTabOrder,
|
2021-09-25 01:38:44 +08:00
|
|
|
isResizable: !isMobile && !isTablet,
|
2021-05-18 04:25:07 +08:00
|
|
|
zIndex: sidebarNavBounds.zIndex,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_SIDEBAR_NAVIGATION_RESIZABLE_EDGE,
|
|
|
|
value: {
|
|
|
|
top: false,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: !isRTL,
|
2021-05-18 04:25:07 +08:00
|
|
|
bottom: false,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: isRTL,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_SIDEBAR_CONTENT_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: sidebarContentInput.isOpen,
|
2021-05-18 04:25:07 +08:00
|
|
|
minWidth: sidebarContentWidth.minWidth,
|
|
|
|
width: sidebarContentWidth.width,
|
|
|
|
maxWidth: sidebarContentWidth.maxWidth,
|
|
|
|
height: sidebarContentHeight,
|
|
|
|
top: sidebarContentBounds.top,
|
|
|
|
left: sidebarContentBounds.left,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: sidebarContentBounds.right,
|
2021-09-09 21:51:18 +08:00
|
|
|
currentPanelType,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.sidebarContentTabOrder,
|
2021-09-25 01:38:44 +08:00
|
|
|
isResizable: !isMobile && !isTablet,
|
2021-05-18 04:25:07 +08:00
|
|
|
zIndex: sidebarContentBounds.zIndex,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_SIDEBAR_CONTENT_RESIZABLE_EDGE,
|
|
|
|
value: {
|
|
|
|
top: false,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: !isRTL,
|
2021-05-18 04:25:07 +08:00
|
|
|
bottom: false,
|
2021-07-27 22:48:08 +08:00
|
|
|
left: isRTL,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_MEDIA_AREA_SIZE,
|
|
|
|
value: {
|
2021-08-09 22:24:02 +08:00
|
|
|
width: windowWidth() - sidebarNavWidth.width - sidebarContentWidth.width,
|
|
|
|
height: windowHeight() - DEFAULT_VALUES.navBarHeight - actionBarHeight,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_CAMERA_DOCK_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: cameraDockInput.numCameras > 0,
|
|
|
|
position: cameraDockInput.position,
|
2021-05-18 04:25:07 +08:00
|
|
|
minWidth: cameraDockBounds.minWidth,
|
|
|
|
width: cameraDockBounds.width,
|
|
|
|
maxWidth: cameraDockBounds.maxWidth,
|
2021-08-04 22:38:20 +08:00
|
|
|
presenterMaxWidth: cameraDockBounds.presenterMaxWidth,
|
2021-05-18 04:25:07 +08:00
|
|
|
minHeight: cameraDockBounds.minHeight,
|
|
|
|
height: cameraDockBounds.height,
|
|
|
|
maxHeight: cameraDockBounds.maxHeight,
|
|
|
|
top: cameraDockBounds.top,
|
|
|
|
left: cameraDockBounds.left,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: cameraDockBounds.right,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: 4,
|
2021-09-25 01:38:44 +08:00
|
|
|
isDraggable: !isMobile && !isTablet,
|
2021-07-13 03:47:06 +08:00
|
|
|
resizableEdge: {
|
2022-02-22 02:23:40 +08:00
|
|
|
top: (input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_BOTTOM)
|
|
|
|
|| (input.cameraDock.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM
|
|
|
|
&& input.sidebarContent.isOpen),
|
|
|
|
right: (!isRTL && input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_LEFT)
|
|
|
|
|| (isRTL && input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_RIGHT),
|
|
|
|
bottom: input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_TOP,
|
|
|
|
left: (!isRTL && input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_RIGHT)
|
|
|
|
|| (isRTL && input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_LEFT),
|
2021-07-13 03:47:06 +08:00
|
|
|
},
|
2021-05-18 04:25:07 +08:00
|
|
|
zIndex: cameraDockBounds.zIndex,
|
2022-02-11 22:30:35 +08:00
|
|
|
focusedId: input.cameraDock.focusedId,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_DROP_AREAS,
|
|
|
|
value: dropZoneAreas,
|
|
|
|
});
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_PRESENTATION_OUTPUT,
|
|
|
|
value: {
|
2021-09-09 21:51:18 +08:00
|
|
|
display: presentationInput.isOpen,
|
2021-06-15 21:55:46 +08:00
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-07-27 22:48:08 +08:00
|
|
|
right: isRTL ? (mediaBounds.right + horizontalCameraDiff) : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.presentationTabOrder,
|
|
|
|
isResizable: false,
|
2021-06-15 21:55:46 +08:00
|
|
|
zIndex: mediaBounds.zIndex,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
});
|
2021-06-15 21:47:37 +08:00
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-06-15 21:47:37 +08:00
|
|
|
type: ACTIONS.SET_SCREEN_SHARE_OUTPUT,
|
|
|
|
value: {
|
2021-06-15 21:55:46 +08:00
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-08-04 01:03:06 +08:00
|
|
|
right: isRTL ? (mediaBounds.right + horizontalCameraDiff) : null,
|
2021-07-07 03:27:28 +08:00
|
|
|
zIndex: mediaBounds.zIndex,
|
2021-06-15 21:47:37 +08:00
|
|
|
},
|
|
|
|
});
|
2021-06-16 20:53:27 +08:00
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-06-16 20:53:27 +08:00
|
|
|
type: ACTIONS.SET_EXTERNAL_VIDEO_OUTPUT,
|
|
|
|
value: {
|
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-08-04 01:03:06 +08:00
|
|
|
right: isRTL ? (mediaBounds.right + horizontalCameraDiff) : null,
|
2021-06-16 20:53:27 +08:00
|
|
|
},
|
|
|
|
});
|
2022-10-24 21:11:28 +08:00
|
|
|
|
|
|
|
layoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_SHARED_NOTES_OUTPUT,
|
|
|
|
value: {
|
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
|
|
|
right: isRTL ? (mediaBounds.right + horizontalCameraDiff) : null,
|
|
|
|
},
|
|
|
|
});
|
2021-09-09 21:51:18 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
return null;
|
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-09 21:51:18 +08:00
|
|
|
export default CustomLayout;
|