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

860 lines
30 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';
2021-07-14 21:53:10 +08:00
import {
DEVICE_TYPE, ACTIONS, CAMERADOCK_POSITION, PANELS,
} from '../enums';
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, baseCameraDockBounds } = props;
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 prevDeviceType = usePrevious(deviceType);
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 = () => {
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
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
},
}, 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: true,
},
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
},
}, INITIAL_INPUT_STATE),
});
}
throttledCalculatesLayout();
};
2021-05-18 04:25:07 +08:00
const calculatesNavbarBounds = (mediaAreaBounds) => {
2021-05-18 04:25:07 +08:00
return {
2021-07-27 22:48:08 +08:00
width: mediaAreaBounds.width,
2021-05-18 04:25:07 +08:00
height: DEFAULT_VALUES.navBarHeight,
top: DEFAULT_VALUES.navBarTop + bannerAreaHeight(),
2021-07-27 22:48:08 +08:00
left: !isRTL ? mediaAreaBounds.left : 0,
2021-05-18 04:25:07 +08:00
};
}
const calculatesActionbarHeight = () => {
const BASE_FONT_SIZE = 14; // 90% font size
const BASE_HEIGHT = DEFAULT_VALUES.actionBarHeight;
const PADDING = DEFAULT_VALUES.actionBarPadding;
const actionBarHeight = ((BASE_HEIGHT / BASE_FONT_SIZE) * fontSize);
2021-06-19 02:32:46 +08:00
2021-05-18 04:25:07 +08:00
return {
height: actionBarHeight + (PADDING * 2),
innerHeight: actionBarHeight,
padding: PADDING,
2021-05-18 04:25:07 +08:00
};
};
2021-05-18 04:25:07 +08:00
const calculatesActionbarBounds = (mediaAreaBounds) => {
const actionBarHeight = calculatesActionbarHeight();
2021-06-19 02:32:46 +08:00
2021-05-18 04:25:07 +08:00
return {
display: actionbarInput.hasActionBar,
2021-07-27 22:48:08 +08:00
width: mediaAreaBounds.width,
2021-07-22 22:42:45 +08:00
height: actionBarHeight.height,
innerHeight: actionBarHeight.innerHeight,
padding: actionBarHeight.padding,
2021-08-09 22:24:02 +08:00
top: windowHeight() - actionBarHeight.height,
2021-07-27 22:48:08 +08:00
left: !isRTL ? mediaAreaBounds.left : 0,
2021-05-18 04:25:07 +08:00
zIndex: 1,
};
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarNavWidth = () => {
2021-05-18 04:25:07 +08:00
const {
sidebarNavMinWidth,
sidebarNavMaxWidth,
} = DEFAULT_VALUES;
let minWidth = 0;
let width = 0;
let maxWidth = 0;
if (sidebarNavigationInput.isOpen) {
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
2021-08-09 22:24:02 +08:00
minWidth = windowWidth();
width = windowWidth();
maxWidth = windowWidth();
2021-05-18 04:25:07 +08:00
} else {
if (sidebarNavigationInput.width === 0) {
2021-08-09 22:24:02 +08:00
width = min(max((windowWidth() * 0.2), sidebarNavMinWidth), sidebarNavMaxWidth);
2021-05-18 04:25:07 +08:00
} else {
width = min(max(sidebarNavigationInput.width, sidebarNavMinWidth), sidebarNavMaxWidth);
2021-05-18 04:25:07 +08:00
}
minWidth = sidebarNavMinWidth;
maxWidth = sidebarNavMaxWidth;
}
} else {
minWidth = 0;
width = 0;
maxWidth = 0;
}
return {
minWidth,
width,
maxWidth,
};
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarNavHeight = () => {
2021-05-18 04:25:07 +08:00
let sidebarNavHeight = 0;
if (sidebarNavigationInput.isOpen) {
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
2021-08-09 22:24:02 +08:00
sidebarNavHeight = windowHeight() - DEFAULT_VALUES.navBarHeight;
2021-05-18 04:25:07 +08:00
} else {
2021-08-09 22:24:02 +08:00
sidebarNavHeight = windowHeight();
2021-05-18 04:25:07 +08:00
}
sidebarNavHeight -= bannerAreaHeight();
2021-05-18 04:25:07 +08:00
}
return sidebarNavHeight;
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarNavBounds = () => {
2021-07-27 22:48:08 +08:00
const { sidebarNavTop, navBarHeight, sidebarNavLeft } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
let top = sidebarNavTop + bannerAreaHeight();
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
top = navBarHeight + bannerAreaHeight();
}
2021-05-18 04:25:07 +08:00
return {
top,
2021-07-27 22:48:08 +08:00
left: !isRTL ? sidebarNavLeft : null,
right: isRTL ? sidebarNavLeft : null,
2021-05-18 04:25:07 +08:00
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 10 : 2,
};
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarContentWidth = () => {
2021-05-18 04:25:07 +08:00
const {
sidebarContentMinWidth,
sidebarContentMaxWidth,
} = DEFAULT_VALUES;
let minWidth = 0;
let width = 0;
let maxWidth = 0;
if (sidebarContentInput.isOpen) {
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
2021-08-09 22:24:02 +08:00
minWidth = windowWidth();
width = windowWidth();
maxWidth = windowWidth();
2021-05-18 04:25:07 +08:00
} else {
if (sidebarContentInput.width === 0) {
2021-05-18 04:25:07 +08:00
width = min(
2021-08-09 22:24:02 +08:00
max((windowWidth() * 0.2), sidebarContentMinWidth), sidebarContentMaxWidth,
2021-05-18 04:25:07 +08:00
);
} else {
width = min(max(sidebarContentInput.width, sidebarContentMinWidth),
2021-05-18 04:25:07 +08:00
sidebarContentMaxWidth);
}
minWidth = sidebarContentMinWidth;
maxWidth = sidebarContentMaxWidth;
}
} else {
minWidth = 0;
width = 0;
maxWidth = 0;
}
return {
minWidth,
width,
maxWidth,
};
};
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) {
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
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 calculatesSidebarContentBounds = (sidebarNavWidth) => {
let top = DEFAULT_VALUES.sidebarNavTop + bannerAreaHeight();
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
}
2021-05-18 04:25:07 +08:00
2021-08-09 22:24:02 +08:00
let left = deviceType === DEVICE_TYPE.MOBILE ? 0 : sidebarNavWidth;
left = !isRTL ? left : null;
let right = deviceType === DEVICE_TYPE.MOBILE ? 0 : sidebarNavWidth;
right = isRTL ? right : null;
2021-05-18 04:25:07 +08:00
return {
top,
2021-08-09 22:24:02 +08:00
left,
right,
2021-05-18 04:25:07 +08:00
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 11 : 1,
};
};
2021-05-18 04:25:07 +08:00
const calculatesMediaAreaBounds = (sidebarNavWidth, sidebarContentWidth) => {
2021-07-22 22:42:45 +08:00
const { navBarHeight } = DEFAULT_VALUES;
const { height: actionBarHeight } = calculatesActionbarHeight();
2021-05-18 04:25:07 +08:00
let left = 0;
let width = 0;
if (deviceType === DEVICE_TYPE.MOBILE) {
left = 0;
2021-08-09 22:24:02 +08:00
width = windowWidth();
2021-05-18 04:25:07 +08:00
} else {
2021-07-27 22:48:08 +08:00
left = !isRTL ? sidebarNavWidth + sidebarContentWidth : 0;
2021-08-09 22:24:02 +08:00
width = windowWidth() - sidebarNavWidth - sidebarContentWidth;
2021-05-18 04:25:07 +08:00
}
return {
width,
height: windowHeight() - (navBarHeight + actionBarHeight + bannerAreaHeight()),
top: DEFAULT_VALUES.navBarHeight + bannerAreaHeight(),
2021-05-18 04:25:07 +08:00
left,
};
};
2021-05-18 04:25:07 +08:00
const calculatesCameraDockBounds = (sidebarNavWidth, sidebarContentWidth, mediaAreaBounds) => {
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);
if(Object.keys(baseBounds).length > 0){
return baseBounds;
}
const { camerasMargin } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
const cameraDockBounds = {};
2021-09-23 21:34:36 +08:00
let cameraDockLeft = 0;
let cameraDockHeight = 0;
let cameraDockWidth = 0;
switch (cameraDockInput.position) {
case CAMERADOCK_POSITION.CONTENT_TOP: {
cameraDockLeft = mediaAreaBounds.left;
if (cameraDockInput.height === 0 || deviceType === DEVICE_TYPE.MOBILE) {
cameraDockHeight = min(
max((mediaAreaBounds.height * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
);
} else {
cameraDockHeight = min(
max(cameraDockInput.height, DEFAULT_VALUES.cameraDockMinHeight),
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
);
}
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
cameraDockBounds.left = cameraDockLeft;
cameraDockBounds.right = isRTL ? sidebarSize : null;
cameraDockBounds.minWidth = mediaAreaBounds.width;
cameraDockBounds.width = mediaAreaBounds.width;
cameraDockBounds.maxWidth = mediaAreaBounds.width;
2021-09-23 21:34:36 +08:00
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
cameraDockBounds.height = cameraDockHeight;
cameraDockBounds.maxHeight = mediaAreaBounds.height * 0.8;
break;
}
case CAMERADOCK_POSITION.CONTENT_RIGHT: {
if (cameraDockInput.width === 0) {
cameraDockWidth = min(
max((mediaAreaBounds.width * 0.2), DEFAULT_VALUES.cameraDockMinWidth),
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
);
} else {
cameraDockWidth = min(
max(cameraDockInput.width, DEFAULT_VALUES.cameraDockMinWidth),
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
);
}
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
const sizeValue = presentationInput.isOpen
? (mediaAreaBounds.left + mediaAreaBounds.width) - cameraDockWidth
: mediaAreaBounds.left;
cameraDockBounds.left = !isRTL ? sizeValue - camerasMargin : 0;
cameraDockBounds.right = isRTL ? sizeValue + sidebarSize - camerasMargin : null;
cameraDockBounds.minWidth = DEFAULT_VALUES.cameraDockMinWidth;
cameraDockBounds.width = cameraDockWidth;
cameraDockBounds.maxWidth = mediaAreaBounds.width * 0.8;
cameraDockBounds.presenterMaxWidth = mediaAreaBounds.width
- DEFAULT_VALUES.presentationToolbarMinWidth
- camerasMargin;
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
cameraDockBounds.height = mediaAreaBounds.height;
cameraDockBounds.maxHeight = mediaAreaBounds.height;
2021-09-23 21:34:36 +08:00
// button size in vertical position
cameraDockBounds.height -= 20;
break;
}
case CAMERADOCK_POSITION.CONTENT_BOTTOM: {
cameraDockLeft = mediaAreaBounds.left;
if (cameraDockInput.height === 0) {
cameraDockHeight = min(
max((mediaAreaBounds.height * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
);
} else {
cameraDockHeight = min(
max(cameraDockInput.height, DEFAULT_VALUES.cameraDockMinHeight),
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
);
}
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight
+ mediaAreaBounds.height - cameraDockHeight + bannerAreaHeight();
cameraDockBounds.left = cameraDockLeft;
2021-08-10 20:19:45 +08:00
cameraDockBounds.right = isRTL ? sidebarSize : null;
2021-09-23 21:34:36 +08:00
cameraDockBounds.minWidth = mediaAreaBounds.width;
cameraDockBounds.width = mediaAreaBounds.width;
cameraDockBounds.maxWidth = mediaAreaBounds.width;
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
cameraDockBounds.height = cameraDockHeight;
cameraDockBounds.maxHeight = mediaAreaBounds.height * 0.8;
break;
}
case CAMERADOCK_POSITION.CONTENT_LEFT: {
if (cameraDockInput.width === 0) {
cameraDockWidth = min(
max((mediaAreaBounds.width * 0.2), DEFAULT_VALUES.cameraDockMinWidth),
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
);
} else {
cameraDockWidth = min(
max(cameraDockInput.width, DEFAULT_VALUES.cameraDockMinWidth),
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
);
}
2021-09-23 21:34:36 +08:00
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
cameraDockBounds.left = mediaAreaBounds.left + camerasMargin;
cameraDockBounds.right = isRTL ? sidebarSize + (camerasMargin * 2) : null;
cameraDockBounds.minWidth = DEFAULT_VALUES.cameraDockMinWidth;
cameraDockBounds.width = cameraDockWidth;
cameraDockBounds.maxWidth = mediaAreaBounds.width * 0.8;
cameraDockBounds.presenterMaxWidth = mediaAreaBounds.width
- DEFAULT_VALUES.presentationToolbarMinWidth
- camerasMargin;
cameraDockBounds.minHeight = mediaAreaBounds.height;
cameraDockBounds.height = mediaAreaBounds.height;
cameraDockBounds.maxHeight = mediaAreaBounds.height;
// button size in vertical position
cameraDockBounds.height -= 20;
break;
}
case CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM: {
if (cameraDockInput.height === 0) {
cameraDockHeight = min(
max((windowHeight() * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
(windowHeight() - DEFAULT_VALUES.cameraDockMinHeight),
);
} else {
cameraDockHeight = min(
max(cameraDockInput.height, DEFAULT_VALUES.cameraDockMinHeight),
(windowHeight() - DEFAULT_VALUES.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 = DEFAULT_VALUES.cameraDockMinHeight;
cameraDockBounds.height = cameraDockHeight;
cameraDockBounds.maxHeight = windowHeight() * 0.8;
break;
}
default: {
console.log('default');
}
2021-05-18 04:25:07 +08:00
}
2021-09-23 21:34:36 +08:00
if (cameraDockInput.isDragging) cameraDockBounds.zIndex = 99;
else cameraDockBounds.zIndex = 1;
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;
}
2021-07-07 03:27:28 +08:00
if (fullscreenElement === 'Presentation' || fullscreenElement === 'Screenshare') {
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 { 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 { 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,
},
});
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 ? (mediaBounds.left + captionsMargin) : null,
right: isRTL ? (mediaBounds.right + captionsMargin) : null,
2021-08-17 22:20:26 +08:00
maxWidth: mediaBounds.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: deviceType !== DEVICE_TYPE.MOBILE
&& deviceType !== DEVICE_TYPE.TABLET,
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: deviceType !== DEVICE_TYPE.MOBILE
&& deviceType !== DEVICE_TYPE.TABLET,
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: deviceType !== DEVICE_TYPE.MOBILE
&& deviceType !== DEVICE_TYPE.TABLET,
resizableEdge: {
top: cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_BOTTOM
|| cameraDockInput.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM,
right: (!isRTL && cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_LEFT)
|| (isRTL && cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_RIGHT),
bottom: cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_TOP,
left: (!isRTL && cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_RIGHT)
|| (isRTL && cameraDockInput.position === CAMERADOCK_POSITION.CONTENT_LEFT),
},
2021-05-18 04:25:07 +08:00
zIndex: cameraDockBounds.zIndex,
},
});
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
},
});
};
2021-05-18 04:25:07 +08:00
return null;
};
2021-05-18 04:25:07 +08:00
export default CustomLayout;