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

463 lines
15 KiB
React
Raw Normal View History

import { useEffect, useRef } from 'react';
import _ from 'lodash';
2021-09-11 04:48:52 +08:00
import { layoutDispatch, layoutSelect, layoutSelectInput } 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,
PANELS,
CAMERADOCK_POSITION,
} from '/imports/ui/components/layout/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);
const PresentationFocusLayout = (props) => {
const { bannerAreaHeight, isMobile } = 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-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({
2021-05-18 04:25:07 +08:00
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({
2021-05-18 04:25:07 +08:00
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
},
}, INITIAL_INPUT_STATE),
});
}
throttledCalculatesLayout();
};
2021-05-18 04:25:07 +08:00
const calculatesSidebarContentHeight = () => {
const { isOpen } = presentationInput;
const {
navBarHeight,
sidebarContentMinHeight,
} = DEFAULT_VALUES;
let height = 0;
let minHeight = 0;
let maxHeight = 0;
if (sidebarContentInput.isOpen) {
if (isMobile) {
height = windowHeight() - navBarHeight - bannerAreaHeight();
2021-07-31 03:07:49 +08:00
minHeight = height;
maxHeight = height;
} else if (cameraDockInput.numCameras > 0 && isOpen) {
if (sidebarContentInput.height === 0) {
height = (windowHeight() * 0.75) - bannerAreaHeight();
} else {
height = min(max(sidebarContentInput.height, sidebarContentMinHeight),
2021-08-09 22:24:02 +08:00
windowHeight());
}
minHeight = windowHeight() * 0.25 - bannerAreaHeight();
maxHeight = windowHeight() * 0.75 - bannerAreaHeight();
2021-05-18 04:25:07 +08:00
} else {
height = windowHeight() - bannerAreaHeight();
2021-07-31 03:07:49 +08:00
minHeight = height;
maxHeight = height;
2021-05-18 04:25:07 +08:00
}
}
return {
height,
minHeight,
maxHeight,
};
};
2021-05-18 04:25:07 +08:00
const calculatesCameraDockBounds = (
2021-06-15 21:55:46 +08:00
mediaBounds,
2021-05-18 04:25:07 +08:00
mediaAreaBounds,
sidebarNavWidth,
sidebarContentWidth,
sidebarContentHeight,
) => {
const { baseCameraDockBounds } = props;
2021-09-03 02:29:35 +08:00
const sidebarSize = sidebarNavWidth + sidebarContentWidth;
2021-05-18 04:25:07 +08:00
const baseBounds = baseCameraDockBounds(mediaAreaBounds, sidebarSize);
2021-09-03 02:29:35 +08:00
// do not proceed if using values from LayoutEngine
if (Object.keys(baseBounds).length > 0) {
return baseBounds;
}
const { cameraDockMinHeight } = DEFAULT_VALUES;
const cameraDockBounds = {};
let cameraDockHeight = 0;
if (isMobile) {
cameraDockBounds.top = mediaAreaBounds.top + mediaBounds.height;
cameraDockBounds.left = 0;
cameraDockBounds.right = 0;
cameraDockBounds.minWidth = mediaAreaBounds.width;
cameraDockBounds.width = mediaAreaBounds.width;
cameraDockBounds.maxWidth = mediaAreaBounds.width;
cameraDockBounds.minHeight = cameraDockMinHeight;
cameraDockBounds.height = mediaAreaBounds.height - mediaBounds.height;
cameraDockBounds.maxHeight = mediaAreaBounds.height - mediaBounds.height;
2021-05-18 04:25:07 +08:00
} else {
if (cameraDockInput.height === 0) {
cameraDockHeight = min(
max((windowHeight() - sidebarContentHeight), cameraDockMinHeight),
(windowHeight() - cameraDockMinHeight),
);
} else {
cameraDockHeight = min(
max(cameraDockInput.height, cameraDockMinHeight),
(windowHeight() - cameraDockMinHeight),
);
}
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() - sidebarContentHeight;
cameraDockBounds.zIndex = 1;
2021-05-18 04:25:07 +08:00
}
return cameraDockBounds;
};
2021-05-18 04:25:07 +08:00
const calculatesMediaBounds = (mediaAreaBounds, sidebarSize) => {
2021-06-15 21:55:46 +08:00
const mediaBounds = {};
const { element: fullscreenElement } = fullscreen;
2021-05-18 04:25:07 +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-28 01:05:49 +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
}
if (isMobile && cameraDockInput.numCameras > 0) {
2021-06-15 21:55:46 +08:00
mediaBounds.height = mediaAreaBounds.height * 0.7;
2021-05-18 04:25:07 +08:00
} else {
2021-06-15 21:55:46 +08:00
mediaBounds.height = mediaAreaBounds.height;
2021-05-18 04:25:07 +08:00
}
2021-06-15 21:55:46 +08:00
mediaBounds.width = mediaAreaBounds.width;
mediaBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
2021-07-28 01:05:49 +08:00
mediaBounds.left = !isRTL ? mediaAreaBounds.left : null;
mediaBounds.right = isRTL ? sidebarSize : null;
2021-06-15 21:55:46 +08:00
mediaBounds.zIndex = 1;
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 { captionsMargin } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
const sidebarNavWidth = calculatesSidebarNavWidth();
const sidebarNavHeight = calculatesSidebarNavHeight();
const sidebarContentWidth = calculatesSidebarContentWidth();
const sidebarNavBounds = calculatesSidebarNavBounds();
const sidebarContentBounds = calculatesSidebarContentBounds(sidebarNavWidth.width);
const mediaAreaBounds = calculatesMediaAreaBounds(
2021-05-18 04:25:07 +08:00
sidebarNavWidth.width, sidebarContentWidth.width,
);
const navbarBounds = calculatesNavbarBounds(mediaAreaBounds);
const actionbarBounds = calculatesActionbarBounds(mediaAreaBounds);
2021-07-28 01:05:49 +08:00
const sidebarSize = sidebarContentWidth.width + sidebarNavWidth.width;
const mediaBounds = calculatesMediaBounds(mediaAreaBounds, sidebarSize);
const sidebarContentHeight = calculatesSidebarContentHeight();
const cameraDockBounds = calculatesCameraDockBounds(
mediaBounds,
mediaAreaBounds,
sidebarNavWidth.width,
sidebarContentWidth.width,
sidebarContentHeight.height,
2021-05-18 04:25:07 +08:00
);
2022-01-22 01:38:25 +08:00
const { isOpen } = presentationInput;
2021-05-18 04:25:07 +08:00
2021-09-11 04:48:52 +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-09-11 04:48:52 +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,
},
});
2021-09-11 04:48:52 +08:00
layoutContextDispatch({
type: ACTIONS.SET_CAPTIONS_OUTPUT,
value: {
left: !isRTL ? (sidebarSize + captionsMargin) : null,
right: isRTL ? (sidebarSize + captionsMargin) : null,
maxWidth: mediaAreaBounds.width - (captionsMargin * 2),
},
});
2021-09-11 04:48:52 +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-28 01:05:49 +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-09-11 04:48:52 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_NAVIGATION_RESIZABLE_EDGE,
value: {
top: false,
2021-07-28 01:05:49 +08:00
right: !isRTL,
2021-05-18 04:25:07 +08:00
bottom: false,
2021-07-28 01:05:49 +08:00
left: isRTL,
2021-05-18 04:25:07 +08:00
},
});
2021-09-11 04:48:52 +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,
minHeight: sidebarContentHeight.minHeight,
height: sidebarContentHeight.height,
maxHeight: sidebarContentHeight.maxHeight,
2021-05-18 04:25:07 +08:00
top: sidebarContentBounds.top,
left: sidebarContentBounds.left,
2021-07-28 01:05:49 +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-09-11 04:48:52 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_SIDEBAR_CONTENT_RESIZABLE_EDGE,
value: {
top: false,
2021-07-28 01:05:49 +08:00
right: !isRTL,
bottom: cameraDockInput.numCameras > 0,
2021-07-28 01:05:49 +08:00
left: isRTL,
2021-05-18 04:25:07 +08:00
},
});
2021-09-11 04:48:52 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_MEDIA_AREA_SIZE,
value: {
width: mediaAreaBounds.width,
height: mediaAreaBounds.height,
},
});
2021-09-11 04:48:52 +08:00
layoutContextDispatch({
2021-05-18 04:25:07 +08:00
type: ACTIONS.SET_CAMERA_DOCK_OUTPUT,
value: {
display: cameraDockInput.numCameras > 0,
position: CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM,
2021-05-18 04:25:07 +08:00
minWidth: cameraDockBounds.minWidth,
width: cameraDockBounds.width,
maxWidth: cameraDockBounds.maxWidth,
minHeight: cameraDockBounds.minHeight,
height: cameraDockBounds.height,
maxHeight: cameraDockBounds.maxHeight,
top: cameraDockBounds.top,
left: cameraDockBounds.left,
2021-07-28 01:05:49 +08:00
right: cameraDockBounds.right,
2021-05-18 04:25:07 +08:00
tabOrder: 4,
isDraggable: false,
resizableEdge: {
top: false,
right: false,
bottom: false,
left: false,
},
focusedId: input.cameraDock.focusedId,
2021-05-18 04:25:07 +08:00
zIndex: cameraDockBounds.zIndex,
},
});
2021-09-11 04:48:52 +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-28 01:05:49 +08:00
right: isRTL ? mediaBounds.right : 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-09-11 04:48:52 +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: isOpen ? mediaBounds.height : 0,
2021-06-15 21:55:46 +08:00
top: mediaBounds.top,
left: mediaBounds.left,
2021-07-28 01:05:49 +08:00
right: mediaBounds.right,
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-09-11 04:48:52 +08:00
layoutContextDispatch({
2021-06-16 20:53:27 +08:00
type: ACTIONS.SET_EXTERNAL_VIDEO_OUTPUT,
value: {
width: isOpen ? mediaBounds.width : 0,
height: isOpen ? mediaBounds.height : 0,
2021-06-16 20:53:27 +08:00
top: mediaBounds.top,
left: mediaBounds.left,
2021-07-28 01:05:49 +08:00
right: mediaBounds.right,
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 PresentationFocusLayout;