bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/layout/layout-manager/customLayout.jsx

703 lines
25 KiB
React
Raw Normal View History

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';
import { ACTIONS, CAMERADOCK_POSITION, PANELS } from '../enums';
import Storage from '/imports/ui/services/storage/session';
2021-05-18 04:25:07 +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) => {
const { bannerAreaHeight, calculatesActionbarHeight, isMobile } = props;
2021-09-23 21:34:36 +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();
const { isResizing } = cameraDockInput;
const prevDeviceType = usePrevious(deviceType);
const prevIsResizing = usePrevious(isResizing);
const throttledCalculatesLayout = _.throttle(() => calculatesLayout(),
50, { trailing: true, leading: true });
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-05-18 04:25:07 +08:00
useEffect(() => {
if (deviceType === null) return;
2021-05-18 04:25:07 +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 {
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
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-05-18 04:25:07 +08:00
const init = () => {
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,
sidebarNavPanel: sidebarNavigationInput.sidebarNavPanel,
2021-05-18 04:25:07 +08:00
},
sidebarContent: {
isOpen: false,
sidebarContentPanel: sidebarContentInput.sidebarContentPanel,
2021-05-18 04:25:07 +08:00
},
sidebarContentHorizontalResizer: {
isOpen: false,
},
presentation: {
isOpen: presentationInput.isOpen,
slidesLength: presentationInput.slidesLength,
2021-05-18 04:25:07 +08:00
currentSlide: {
...presentationInput.currentSlide,
2021-05-18 04:25:07 +08:00
},
},
cameraDock: {
numCameras: cameraDockInput.numCameras,
2021-05-18 04:25:07 +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 {
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: {
isOpen: input.sidebarNavigation.isOpen || sidebarContentPanel !== PANELS.NONE || false,
2021-05-18 04:25:07 +08:00
},
sidebarContent: {
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: {
isOpen: presentationInput.isOpen,
slidesLength: presentationInput.slidesLength,
2021-05-18 04:25:07 +08:00
currentSlide: {
...presentationInput.currentSlide,
2021-05-18 04:25:07 +08:00
},
},
cameraDock: {
numCameras: cameraDockInput.numCameras,
2021-05-18 04:25:07 +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),
});
}
throttledCalculatesLayout();
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarContentHeight = (cameraDockHeight) => {
const { isOpen } = presentationInput;
2021-05-18 04:25:07 +08:00
let sidebarContentHeight = 0;
if (sidebarContentInput.isOpen) {
if (isMobile) {
2021-08-09 22:24:02 +08:00
sidebarContentHeight = windowHeight() - DEFAULT_VALUES.navBarHeight;
} else if (cameraDockInput.numCameras > 0
&& cameraDockInput.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM
&& 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
}
sidebarContentHeight -= bannerAreaHeight();
2021-05-18 04:25:07 +08:00
}
return sidebarContentHeight;
};
2021-05-18 04:25:07 +08:00
const calculatesCameraDockBounds = (sidebarNavWidth, sidebarContentWidth, mediaAreaBounds) => {
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
if (Object.keys(baseBounds).length > 0) {
2021-09-23 21:34:36 +08:00
return baseBounds;
}
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;
const lastSize = Storage.getItem('webcamSize') || { width: 0, height: 0 };
let { width: lastWidth, height: lastHeight } = lastSize;
2021-09-23 21:34:36 +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;
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;
}
if (isCameraTop || isCameraBottom) {
if ((lastHeight === 0 && !isResizing) || (isCameraTop && isMobile)) {
cameraDockHeight = min(
max((mediaAreaBounds.height * 0.2), cameraDockMinHeight),
(mediaAreaBounds.height - cameraDockMinHeight),
);
} else {
const height = isResizing ? cameraDockInput.height : lastHeight;
cameraDockHeight = min(
max(height, cameraDockMinHeight),
(mediaAreaBounds.height - cameraDockMinHeight),
);
2021-09-23 21:34:36 +08:00
}
cameraDockBounds.top = navBarHeight;
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
}
return cameraDockBounds;
}
2021-09-23 21:34:36 +08:00
if (isCameraLeft || isCameraRight) {
if (lastWidth === 0 && !isResizing) {
cameraDockWidth = min(
max((mediaAreaBounds.width * 0.2), cameraDockMinWidth),
(mediaAreaBounds.width - cameraDockMinWidth),
);
} else {
const width = isResizing ? cameraDockInput.width : lastWidth;
cameraDockWidth = min(
max(width, cameraDockMinWidth),
(mediaAreaBounds.width - cameraDockMinWidth),
);
2021-09-23 21:34:36 +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;
}
return cameraDockBounds;
2021-05-18 04:25:07 +08:00
}
if (isCameraSidebar) {
if (lastHeight === 0 && !isResizing) {
cameraDockHeight = min(
max((windowHeight() * 0.2), cameraDockMinHeight),
(windowHeight() - cameraDockMinHeight),
);
} else {
const height = isResizing ? cameraDockInput.height : lastHeight;
cameraDockHeight = min(
max(height, cameraDockMinHeight),
(windowHeight() - cameraDockMinHeight),
);
}
2021-09-23 21:34:36 +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-05-18 04:25:07 +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()
- (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 = {};
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
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;
mediaBounds.zIndex = 0;
return mediaBounds;
}
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;
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;
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;
mediaBounds.top = navBarHeight + bannerAreaHeight();
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;
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;
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;
mediaBounds.left = !isRTL ? sizeValue : 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.SIDEBAR_CONTENT_BOTTOM: {
2021-06-15 21:55:46 +08:00
mediaBounds.width = mediaAreaWidth;
mediaBounds.height = mediaAreaHeight;
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;
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
}
const calculatesLayout = () => {
const {
calculatesNavbarBounds,
calculatesActionbarBounds,
calculatesSidebarNavWidth,
calculatesSidebarNavHeight,
calculatesSidebarNavBounds,
calculatesSidebarContentWidth,
calculatesSidebarContentBounds,
calculatesMediaAreaBounds,
isTablet,
} = props;
const { position: cameraPosition } = cameraDockInput;
const { camerasMargin, captionsMargin } = DEFAULT_VALUES;
2021-05-18 04:25:07 +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);
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,
);
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,
);
const sidebarSize = sidebarContentWidth.width + sidebarNavWidth.width;
const { height: actionBarHeight } = calculatesActionbarHeight();
2021-05-18 04:25:07 +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: {
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,
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: {
display: actionbarInput.hasActionBar,
2021-05-18 04:25:07 +08:00
width: actionbarBounds.width,
height: actionbarBounds.height,
innerHeight: actionbarBounds.innerHeight,
2021-05-18 04:25:07 +08:00
top: actionbarBounds.top,
left: actionbarBounds.left,
padding: actionbarBounds.padding,
2021-05-18 04:25:07 +08:00
tabOrder: DEFAULT_VALUES.actionBarTabOrder,
zIndex: actionbarBounds.zIndex,
},
});
layoutContextDispatch({
type: ACTIONS.SET_CAPTIONS_OUTPUT,
value: {
left: !isRTL ? (sidebarSize + captionsMargin) : null,
right: isRTL ? (sidebarSize + captionsMargin) : null,
maxWidth: mediaAreaBounds.width - (captionsMargin * 2),
},
});
2021-08-05 19:03:24 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_OUTPUT,
value: {
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,
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: {
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,
currentPanelType,
2021-05-18 04:25:07 +08:00
tabOrder: DEFAULT_VALUES.sidebarContentTabOrder,
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: {
display: cameraDockInput.numCameras > 0,
position: cameraDockInput.position,
2021-05-18 04:25:07 +08:00
minWidth: cameraDockBounds.minWidth,
width: cameraDockBounds.width,
maxWidth: cameraDockBounds.maxWidth,
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,
isDraggable: !isMobile && !isTablet,
resizableEdge: {
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-05-18 04:25:07 +08:00
zIndex: cameraDockBounds.zIndex,
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: {
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,
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,
right: isRTL ? (mediaBounds.right + horizontalCameraDiff) : null,
2021-06-16 20:53:27 +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-05-18 04:25:07 +08:00
return null;
};
2021-05-18 04:25:07 +08:00
export default CustomLayout;