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

688 lines
22 KiB
React
Raw Normal View History

import React, { Component } from 'react';
2021-05-18 04:25:07 +08:00
import { throttle, defaultsDeep } from 'lodash';
import NewLayoutContext from '../context/context';
import DEFAULT_VALUES from '../defaultValues';
import { INITIAL_INPUT_STATE } from '../context/initState';
2021-07-14 21:53:10 +08:00
import { DEVICE_TYPE, ACTIONS, 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);
class PresentationFocusLayout extends Component {
constructor(props) {
super(props);
this.throttledCalculatesLayout = throttle(() => this.calculatesLayout(),
50, { trailing: true, leading: true });
}
componentDidMount() {
this.init();
const { newLayoutContextDispatch } = this.props;
window.addEventListener('resize', () => {
newLayoutContextDispatch({
type: ACTIONS.SET_BROWSER_SIZE,
value: {
width: window.document.documentElement.clientWidth,
height: window.document.documentElement.clientHeight,
},
});
});
}
shouldComponentUpdate(nextProps) {
const { newLayoutContextState } = this.props;
return newLayoutContextState.input !== nextProps.newLayoutContextState.input
|| newLayoutContextState.deviceType !== nextProps.newLayoutContextState.deviceType
2021-07-28 01:05:49 +08:00
|| newLayoutContextState.isRTL !== nextProps.newLayoutContextState.isRTL
2021-06-19 02:32:46 +08:00
|| newLayoutContextState.layoutLoaded !== nextProps.newLayoutContextState.layoutLoaded
|| newLayoutContextState.fontSize !== nextProps.newLayoutContextState.fontSize
|| newLayoutContextState.fullscreen !== nextProps.newLayoutContextState.fullscreen;
2021-05-18 04:25:07 +08:00
}
componentDidUpdate(prevProps) {
const { newLayoutContextState } = this.props;
const { deviceType } = newLayoutContextState;
if (prevProps.newLayoutContextState.deviceType !== deviceType) {
this.init();
} else {
this.throttledCalculatesLayout();
}
}
mainWidth() {
const { newLayoutContextState } = this.props;
const { layoutLoaded } = newLayoutContextState;
const wWidth = window.document.documentElement.clientWidth;
if (layoutLoaded === 'both') return wWidth / 2;
return wWidth;
}
mainHeight() {
const { newLayoutContextState } = this.props;
const { layoutLoaded } = newLayoutContextState;
const wHeight = window.document.documentElement.clientHeight;
if (layoutLoaded === 'both') return wHeight / 2;
return wHeight;
}
bannerAreaHeight() {
2021-07-12 21:22:26 +08:00
const { newLayoutContextState } = this.props;
const { input } = newLayoutContextState;
const { bannerBar, notificationsBar } = input;
2021-07-12 21:22:26 +08:00
const bannerHeight = bannerBar.hasBanner ? DEFAULT_VALUES.bannerHeight : 0;
const notificationHeight = notificationsBar.hasNotification ? DEFAULT_VALUES.bannerHeight : 0;
return bannerHeight + notificationHeight;
2021-07-12 21:22:26 +08:00
}
2021-05-18 04:25:07 +08:00
init() {
const { newLayoutContextState, newLayoutContextDispatch } = this.props;
const { deviceType, input } = newLayoutContextState;
if (deviceType === DEVICE_TYPE.MOBILE) {
newLayoutContextDispatch({
type: ACTIONS.SET_LAYOUT_INPUT,
value: defaultsDeep({
sidebarNavigation: {
isOpen: false,
sidebarNavPanel: input.sidebarNavigation.sidebarNavPanel,
2021-05-18 04:25:07 +08:00
},
sidebarContent: {
isOpen: false,
sidebarContentPanel: input.sidebarContent.sidebarContentPanel,
2021-05-18 04:25:07 +08:00
},
SidebarContentHorizontalResizer: {
isOpen: false,
},
presentation: {
slidesLength: input.presentation.slidesLength,
currentSlide: {
...input.presentation.currentSlide,
},
},
cameraDock: {
numCameras: input.cameraDock.numCameras,
},
}, INITIAL_INPUT_STATE),
});
} else {
2021-07-14 21:53:10 +08:00
const { sidebarContentPanel } = input.sidebarContent;
2021-05-18 04:25:07 +08:00
newLayoutContextDispatch({
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: {
slidesLength: input.presentation.slidesLength,
currentSlide: {
...input.presentation.currentSlide,
},
},
cameraDock: {
numCameras: input.cameraDock.numCameras,
},
}, INITIAL_INPUT_STATE),
});
}
this.throttledCalculatesLayout();
}
reset() {
this.init();
}
calculatesNavbarBounds(mediaAreaBounds) {
const { newLayoutContextState } = this.props;
2021-07-28 01:05:49 +08:00
const { layoutLoaded, isRTL } = newLayoutContextState;
2021-05-18 04:25:07 +08:00
let top = 0;
if (layoutLoaded === 'both') top = this.mainHeight();
else top = DEFAULT_VALUES.navBarTop + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
return {
2021-07-28 01:05:49 +08:00
width: mediaAreaBounds.width,
2021-05-18 04:25:07 +08:00
height: DEFAULT_VALUES.navBarHeight,
top,
2021-07-28 01:05:49 +08:00
left: !isRTL ? mediaAreaBounds.left : 0,
2021-05-18 04:25:07 +08:00
zIndex: 1,
};
}
2021-07-22 22:42:45 +08:00
calculatesActionbarHeight() {
2021-05-18 04:25:07 +08:00
const { newLayoutContextState } = this.props;
2021-07-22 22:42:45 +08:00
const { fontSize } = newLayoutContextState;
2021-06-19 02:32:46 +08:00
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-07-22 22:42:45 +08:00
};
}
2021-05-18 04:25:07 +08:00
calculatesActionbarBounds(mediaAreaBounds) {
const { newLayoutContextState } = this.props;
const { input, isRTL } = newLayoutContextState;
2021-06-19 02:32:46 +08:00
2021-07-22 22:42:45 +08:00
const actionBarHeight = this.calculatesActionbarHeight();
2021-06-19 02:32:46 +08:00
2021-05-18 04:25:07 +08:00
return {
display: input.actionBar.hasActionBar,
2021-07-28 01:05:49 +08:00
width: mediaAreaBounds.width,
2021-07-22 22:42:45 +08:00
height: actionBarHeight.height,
innerHeight: actionBarHeight.innerHeight,
padding: actionBarHeight.padding,
top: this.mainHeight() - actionBarHeight.height,
2021-07-28 01:05:49 +08:00
left: !isRTL ? mediaAreaBounds.left : 0,
2021-05-18 04:25:07 +08:00
zIndex: 1,
};
}
calculatesSidebarNavWidth() {
const { newLayoutContextState } = this.props;
const { deviceType, input } = newLayoutContextState;
const {
sidebarNavMinWidth,
sidebarNavMaxWidth,
} = DEFAULT_VALUES;
let minWidth = 0;
let width = 0;
let maxWidth = 0;
if (input.sidebarNavigation.isOpen) {
if (deviceType === DEVICE_TYPE.MOBILE) {
minWidth = this.mainWidth();
width = this.mainWidth();
maxWidth = this.mainWidth();
} else {
if (input.sidebarNavigation.width === 0) {
width = min(max((this.mainWidth() * 0.2), sidebarNavMinWidth), sidebarNavMaxWidth);
} else {
width = min(max(input.sidebarNavigation.width, sidebarNavMinWidth), sidebarNavMaxWidth);
}
minWidth = sidebarNavMinWidth;
maxWidth = sidebarNavMaxWidth;
}
}
return {
minWidth,
width,
maxWidth,
};
}
calculatesSidebarNavHeight() {
const { newLayoutContextState } = this.props;
const { deviceType, input } = newLayoutContextState;
const { navBarHeight } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
let sidebarNavHeight = 0;
if (input.sidebarNavigation.isOpen) {
if (deviceType === DEVICE_TYPE.MOBILE) {
sidebarNavHeight = this.mainHeight() - navBarHeight - this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
} else {
sidebarNavHeight = this.mainHeight() - this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
}
}
return sidebarNavHeight;
}
calculatesSidebarNavBounds() {
const { newLayoutContextState } = this.props;
2021-07-28 01:05:49 +08:00
const { deviceType, layoutLoaded, isRTL } = newLayoutContextState;
const { sidebarNavTop, navBarHeight, sidebarNavLeft } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
let top = 0;
if (layoutLoaded === 'both') top = this.mainHeight();
else top = sidebarNavTop + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) top = navBarHeight + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
return {
top,
2021-07-28 01:05:49 +08:00
left: !isRTL ? sidebarNavLeft : null,
right: isRTL ? sidebarNavLeft : null,
2021-07-14 03:23:34 +08:00
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 11 : 2,
2021-05-18 04:25:07 +08:00
};
}
calculatesSidebarContentWidth() {
const { newLayoutContextState } = this.props;
const { deviceType, input } = newLayoutContextState;
const {
sidebarContentMinWidth,
sidebarContentMaxWidth,
} = DEFAULT_VALUES;
let minWidth = 0;
let width = 0;
let maxWidth = 0;
if (input.sidebarContent.isOpen) {
if (deviceType === DEVICE_TYPE.MOBILE) {
minWidth = this.mainWidth();
width = this.mainWidth();
maxWidth = this.mainWidth();
} else {
if (input.sidebarContent.width === 0) {
width = min(
max((this.mainWidth() * 0.2), sidebarContentMinWidth), sidebarContentMaxWidth,
);
} else {
width = min(max(input.sidebarContent.width, sidebarContentMinWidth),
sidebarContentMaxWidth);
}
minWidth = sidebarContentMinWidth;
maxWidth = sidebarContentMaxWidth;
}
}
return {
minWidth,
width,
maxWidth,
};
}
calculatesSidebarContentHeight() {
2021-05-18 04:25:07 +08:00
const { newLayoutContextState } = this.props;
const { deviceType, input } = newLayoutContextState;
const {
navBarHeight,
sidebarContentMinHeight,
} = DEFAULT_VALUES;
let height = 0;
let minHeight = 0;
let maxHeight = 0;
2021-05-18 04:25:07 +08:00
if (input.sidebarContent.isOpen) {
if (deviceType === DEVICE_TYPE.MOBILE) {
height = this.mainHeight() - navBarHeight - this.bannerAreaHeight();
2021-07-31 03:07:49 +08:00
minHeight = height;
maxHeight = height;
2021-05-18 04:25:07 +08:00
} else if (input.cameraDock.numCameras > 0) {
if (input.sidebarContent.height === 0) {
height = (this.mainHeight() * 0.75) - this.bannerAreaHeight();
} else {
height = min(max(input.sidebarContent.height, sidebarContentMinHeight),
this.mainHeight());
}
2021-07-31 03:07:49 +08:00
minHeight = this.mainHeight() * 0.25 - this.bannerAreaHeight();
maxHeight = this.mainHeight() * 0.75 - this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
} else {
height = this.mainHeight() - this.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
}
calculatesSidebarContentBounds(sidebarNavWidth) {
const { newLayoutContextState } = this.props;
2021-07-28 01:05:49 +08:00
const { deviceType, layoutLoaded, isRTL } = newLayoutContextState;
const { navBarHeight, sidebarNavTop } = DEFAULT_VALUES;
2021-05-18 04:25:07 +08:00
let top = 0;
if (layoutLoaded === 'both') top = this.mainHeight();
else top = sidebarNavTop + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) top = navBarHeight + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
2021-07-30 21:31:15 +08:00
let left = deviceType === DEVICE_TYPE.MOBILE ? 0 : sidebarNavWidth;
let right = deviceType === DEVICE_TYPE.MOBILE ? 0 : sidebarNavWidth;
left = !isRTL ? left : null;
right = isRTL ? right : null;
const zIndex = deviceType === DEVICE_TYPE.MOBILE ? 11 : 1;
2021-05-18 04:25:07 +08:00
return {
top,
2021-07-30 21:31:15 +08:00
left,
right,
zIndex,
2021-05-18 04:25:07 +08:00
};
}
calculatesMediaAreaBounds(sidebarNavWidth, sidebarContentWidth) {
const { newLayoutContextState } = this.props;
2021-07-28 01:05:49 +08:00
const { deviceType, layoutLoaded, isRTL } = newLayoutContextState;
2021-07-22 22:42:45 +08:00
const { navBarHeight } = DEFAULT_VALUES;
const { height: actionBarHeight } = this.calculatesActionbarHeight();
2021-05-18 04:25:07 +08:00
let left = 0;
let width = 0;
let top = 0;
if (deviceType === DEVICE_TYPE.MOBILE) {
left = 0;
width = this.mainWidth();
} else {
2021-07-28 01:05:49 +08:00
left = !isRTL ? sidebarNavWidth + sidebarContentWidth : 0;
2021-05-18 04:25:07 +08:00
width = this.mainWidth() - sidebarNavWidth - sidebarContentWidth;
}
if (layoutLoaded === 'both') top = this.mainHeight() / 2;
else top = navBarHeight + this.bannerAreaHeight();
2021-05-18 04:25:07 +08:00
return {
width,
height: this.mainHeight() - (navBarHeight + actionBarHeight + this.bannerAreaHeight()),
2021-05-18 04:25:07 +08:00
top,
left,
};
}
calculatesCameraDockBounds(
2021-06-15 21:55:46 +08:00
mediaBounds,
2021-05-18 04:25:07 +08:00
mediaAreaBounds,
sidebarNavWidth,
sidebarContentWidth,
sidebarContentHeight,
2021-05-18 04:25:07 +08:00
) {
const { newLayoutContextState } = this.props;
const {
deviceType, input, fullscreen, isRTL,
} = newLayoutContextState;
2021-05-18 04:25:07 +08:00
const cameraDockBounds = {};
if (input.cameraDock.numCameras > 0) {
let cameraDockHeight = 0;
if (fullscreen.group === 'webcams') {
cameraDockBounds.width = windowWidth();
cameraDockBounds.minWidth = windowWidth();
cameraDockBounds.maxWidth = windowWidth();
cameraDockBounds.height = windowHeight();
cameraDockBounds.minHeight = windowHeight();
cameraDockBounds.maxHeight = windowHeight();
cameraDockBounds.top = 0;
cameraDockBounds.left = 0;
2021-07-28 01:05:49 +08:00
cameraDockBounds.right = 0;
cameraDockBounds.zIndex = 99;
return cameraDockBounds;
}
2021-05-18 04:25:07 +08:00
if (deviceType === DEVICE_TYPE.MOBILE) {
2021-06-15 21:55:46 +08:00
cameraDockBounds.top = mediaAreaBounds.top + mediaBounds.height;
2021-07-28 01:05:49 +08:00
cameraDockBounds.left = 0;
cameraDockBounds.right = 0;
2021-05-18 04:25:07 +08:00
cameraDockBounds.minWidth = mediaAreaBounds.width;
cameraDockBounds.width = mediaAreaBounds.width;
cameraDockBounds.maxWidth = mediaAreaBounds.width;
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
2021-06-15 21:55:46 +08:00
cameraDockBounds.height = mediaAreaBounds.height - mediaBounds.height;
cameraDockBounds.maxHeight = mediaAreaBounds.height - mediaBounds.height;
2021-05-18 04:25:07 +08:00
} else {
if (input.cameraDock.height === 0) {
cameraDockHeight = min(
max((this.mainHeight() - sidebarContentHeight), DEFAULT_VALUES.cameraDockMinHeight),
2021-05-18 04:25:07 +08:00
(this.mainHeight() - DEFAULT_VALUES.cameraDockMinHeight),
);
} else {
cameraDockHeight = min(
max(input.cameraDock.height, DEFAULT_VALUES.cameraDockMinHeight),
(this.mainHeight() - DEFAULT_VALUES.cameraDockMinHeight),
);
}
cameraDockBounds.top = this.mainHeight() - cameraDockHeight;
2021-07-28 01:05:49 +08:00
cameraDockBounds.left = !isRTL ? sidebarNavWidth : 0;
cameraDockBounds.right = isRTL ? sidebarNavWidth : 0;
2021-05-18 04:25:07 +08:00
cameraDockBounds.minWidth = sidebarContentWidth;
cameraDockBounds.width = sidebarContentWidth;
cameraDockBounds.maxWidth = sidebarContentWidth;
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
cameraDockBounds.height = cameraDockHeight;
cameraDockBounds.maxHeight = this.mainHeight() - sidebarContentHeight;
2021-05-18 04:25:07 +08:00
cameraDockBounds.zIndex = 1;
}
} else {
cameraDockBounds.width = 0;
cameraDockBounds.height = 0;
}
return cameraDockBounds;
}
2021-07-28 01:05:49 +08:00
calculatesMediaBounds(mediaAreaBounds, sidebarSize) {
2021-05-18 04:25:07 +08:00
const { newLayoutContextState } = this.props;
const {
deviceType, input, fullscreen, isRTL,
} = newLayoutContextState;
2021-06-15 21:55:46 +08:00
const mediaBounds = {};
const { element: fullscreenElement } = fullscreen;
2021-05-18 04:25:07 +08:00
2021-07-07 03:27:28 +08:00
if (fullscreenElement === 'Presentation' || fullscreenElement === 'Screenshare') {
2021-06-15 21:55:46 +08:00
mediaBounds.width = this.mainWidth();
mediaBounds.height = this.mainHeight();
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 (deviceType === DEVICE_TYPE.MOBILE && input.cameraDock.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 + this.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
}
calculatesLayout() {
const { newLayoutContextState, newLayoutContextDispatch } = this.props;
2021-07-28 01:05:49 +08:00
const { deviceType, input, isRTL } = newLayoutContextState;
2021-05-18 04:25:07 +08:00
const sidebarNavWidth = this.calculatesSidebarNavWidth();
const sidebarNavHeight = this.calculatesSidebarNavHeight();
const sidebarContentWidth = this.calculatesSidebarContentWidth();
const sidebarNavBounds = this.calculatesSidebarNavBounds(
sidebarNavWidth.width, sidebarContentWidth.width,
);
const sidebarContentBounds = this.calculatesSidebarContentBounds(
sidebarNavWidth.width, sidebarContentWidth.width,
);
const mediaAreaBounds = this.calculatesMediaAreaBounds(
sidebarNavWidth.width, sidebarContentWidth.width,
);
const navbarBounds = this.calculatesNavbarBounds(mediaAreaBounds);
const actionbarBounds = this.calculatesActionbarBounds(mediaAreaBounds);
2021-07-28 01:05:49 +08:00
const sidebarSize = sidebarContentWidth.width + sidebarNavWidth.width;
const mediaBounds = this.calculatesMediaBounds(mediaAreaBounds, sidebarSize);
const sidebarContentHeight = this.calculatesSidebarContentHeight();
2021-05-18 04:25:07 +08:00
const cameraDockBounds = this.calculatesCameraDockBounds(
mediaBounds,
mediaAreaBounds,
sidebarNavWidth.width,
sidebarContentWidth.width,
sidebarContentHeight.height,
2021-05-18 04:25:07 +08:00
);
newLayoutContextDispatch({
type: ACTIONS.SET_NAVBAR_OUTPUT,
value: {
display: input.navBar.hasNavBar,
width: navbarBounds.width,
height: navbarBounds.height,
top: navbarBounds.top,
left: navbarBounds.left,
tabOrder: DEFAULT_VALUES.navBarTabOrder,
zIndex: navbarBounds.zIndex,
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_ACTIONBAR_OUTPUT,
value: {
display: input.actionBar.hasActionBar,
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,
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_NAVIGATION_OUTPUT,
value: {
display: input.sidebarNavigation.isOpen,
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: deviceType !== DEVICE_TYPE.MOBILE
&& deviceType !== DEVICE_TYPE.TABLET,
zIndex: sidebarNavBounds.zIndex,
},
});
newLayoutContextDispatch({
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
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_OUTPUT,
value: {
display: input.sidebarContent.isOpen,
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,
2021-05-18 04:25:07 +08:00
currentPanelType: input.currentPanelType,
tabOrder: DEFAULT_VALUES.sidebarContentTabOrder,
isResizable: deviceType !== DEVICE_TYPE.MOBILE
&& deviceType !== DEVICE_TYPE.TABLET,
zIndex: sidebarContentBounds.zIndex,
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_SIDEBAR_CONTENT_RESIZABLE_EDGE,
value: {
top: false,
2021-07-28 01:05:49 +08:00
right: !isRTL,
bottom: input.cameraDock.numCameras > 0,
2021-07-28 01:05:49 +08:00
left: isRTL,
2021-05-18 04:25:07 +08:00
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_MEDIA_AREA_SIZE,
value: {
width: mediaAreaBounds.width,
height: mediaAreaBounds.height,
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_CAMERA_DOCK_OUTPUT,
value: {
display: input.cameraDock.numCameras > 0,
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,
},
2021-05-18 04:25:07 +08:00
zIndex: cameraDockBounds.zIndex,
},
});
newLayoutContextDispatch({
type: ACTIONS.SET_PRESENTATION_OUTPUT,
value: {
display: input.presentation.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
newLayoutContextDispatch({
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-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
newLayoutContextDispatch({
type: ACTIONS.SET_EXTERNAL_VIDEO_OUTPUT,
value: {
width: mediaBounds.width,
height: mediaBounds.height,
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
}
render() {
return (
<></>
);
}
}
export default NewLayoutContext.withConsumer(PresentationFocusLayout);