2021-09-10 01:12:05 +08:00
|
|
|
import { useEffect, useRef } from 'react';
|
|
|
|
import _ from 'lodash';
|
2021-09-11 04:48:52 +08:00
|
|
|
import {
|
|
|
|
layoutDispatch,
|
|
|
|
layoutSelect,
|
|
|
|
layoutSelectInput,
|
|
|
|
layoutSelectOutput
|
|
|
|
} 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 { DEVICE_TYPE, ACTIONS, PANELS } from '/imports/ui/components/layout/enums';
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-07-13 03:47:06 +08:00
|
|
|
const windowWidth = () => window.document.documentElement.clientWidth;
|
|
|
|
const windowHeight = () => window.document.documentElement.clientHeight;
|
2021-05-18 04:25:07 +08:00
|
|
|
const min = (value1, value2) => (value1 <= value2 ? value1 : value2);
|
|
|
|
const max = (value1, value2) => (value1 >= value2 ? value1 : value2);
|
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const VideoFocusLayout = () => {
|
|
|
|
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 bannerBarInput = layoutSelectInput((i) => i.bannerBar);
|
|
|
|
const notificationsBarInput = layoutSelectInput((i) => i.notificationsBar);
|
|
|
|
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 sidebarContentOutput = layoutSelectOutput((i) => i.sidebarContent);
|
2021-09-10 01:12:05 +08:00
|
|
|
|
|
|
|
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-09-10 01:12:05 +08:00
|
|
|
}, []);
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
useEffect(() => {
|
|
|
|
if (deviceType === null) return;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
if (deviceType !== prevDeviceType) {
|
|
|
|
// reset layout if deviceType changed
|
|
|
|
// not all options is supported in all devices
|
|
|
|
init();
|
2021-05-18 04:25:07 +08:00
|
|
|
} else {
|
2021-09-10 01:12:05 +08:00
|
|
|
throttledCalculatesLayout();
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
2021-09-10 01:43:06 +08:00
|
|
|
}, [input, deviceType, isRTL, fontSize, fullscreen]);
|
2021-07-12 21:22:26 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const bannerAreaHeight = () => {
|
|
|
|
const { hasNotification } = notificationsBarInput;
|
|
|
|
const { hasBanner } = bannerBarInput;
|
|
|
|
const bannerHeight = hasBanner ? DEFAULT_VALUES.bannerHeight : 0;
|
|
|
|
const notificationHeight = hasNotification ? DEFAULT_VALUES.bannerHeight : 0;
|
2021-07-13 00:24:53 +08:00
|
|
|
|
|
|
|
return bannerHeight + notificationHeight;
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-07-12 21:22:26 +08:00
|
|
|
|
2021-09-10 01:12:05 +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,
|
2021-09-10 01:12:05 +08:00
|
|
|
value: _.defaultsDeep(
|
2021-05-18 04:25:07 +08:00
|
|
|
{
|
|
|
|
sidebarNavigation: {
|
|
|
|
isOpen: false,
|
2021-09-10 01:12:05 +08:00
|
|
|
sidebarNavPanel: sidebarNavigationInput.sidebarNavPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContent: {
|
|
|
|
isOpen: false,
|
2021-09-10 01:12:05 +08:00
|
|
|
sidebarContentPanel: sidebarContentInput.sidebarContentPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
SidebarContentHorizontalResizer: {
|
|
|
|
isOpen: false,
|
|
|
|
},
|
|
|
|
presentation: {
|
2021-09-10 01:12:05 +08:00
|
|
|
slidesLength: presentationInput.slidesLength,
|
2021-05-18 04:25:07 +08:00
|
|
|
currentSlide: {
|
2021-09-10 01:12:05 +08:00
|
|
|
...presentationInput.currentSlide,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cameraDock: {
|
2021-09-10 01:12:05 +08:00
|
|
|
numCameras: cameraDockInput.numCameras,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
INITIAL_INPUT_STATE,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
} else {
|
2021-09-10 01:12:05 +08:00
|
|
|
const { sidebarContentPanel } = sidebarContentInput;
|
2021-07-14 21:53:10 +08:00
|
|
|
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_LAYOUT_INPUT,
|
2021-09-10 01:12:05 +08:00
|
|
|
value: _.defaultsDeep(
|
2021-05-18 04:25:07 +08:00
|
|
|
{
|
|
|
|
sidebarNavigation: {
|
|
|
|
isOpen: true,
|
|
|
|
},
|
|
|
|
sidebarContent: {
|
2021-07-22 02:34:34 +08:00
|
|
|
isOpen: sidebarContentPanel !== PANELS.NONE,
|
2021-07-14 21:53:10 +08:00
|
|
|
sidebarContentPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
SidebarContentHorizontalResizer: {
|
|
|
|
isOpen: false,
|
|
|
|
},
|
|
|
|
presentation: {
|
2021-09-10 01:12:05 +08:00
|
|
|
slidesLength: presentationInput.slidesLength,
|
2021-05-18 04:25:07 +08:00
|
|
|
currentSlide: {
|
2021-09-10 01:12:05 +08:00
|
|
|
...presentationInput.currentSlide,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cameraDock: {
|
2021-09-10 01:12:05 +08:00
|
|
|
numCameras: cameraDockInput.numCameras,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
INITIAL_INPUT_STATE,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
}
|
2021-09-10 01:12:05 +08:00
|
|
|
throttledCalculatesLayout();
|
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesNavbarBounds = (mediaAreaBounds) => {
|
2021-05-18 04:25:07 +08:00
|
|
|
return {
|
2021-07-28 01:39:10 +08:00
|
|
|
width: mediaAreaBounds.width,
|
2021-05-18 04:25:07 +08:00
|
|
|
height: DEFAULT_VALUES.navBarHeight,
|
2021-09-10 01:12:05 +08:00
|
|
|
top: DEFAULT_VALUES.navBarTop + bannerAreaHeight(),
|
2021-07-28 01:39:10 +08:00
|
|
|
left: !isRTL ? mediaAreaBounds.left : 0,
|
2021-05-18 04:25:07 +08:00
|
|
|
zIndex: 1,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-06-19 02:32:46 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesActionbarHeight = () => {
|
2021-07-22 22:04:38 +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 {
|
2021-07-22 22:04:38 +08:00
|
|
|
height: actionBarHeight + (PADDING * 2),
|
|
|
|
innerHeight: actionBarHeight,
|
|
|
|
padding: PADDING,
|
2021-07-22 22:42:45 +08:00
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-07-22 22:42:45 +08:00
|
|
|
|
2021-09-10 01:12:05 +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 {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: actionbarInput.hasActionBar,
|
2021-07-28 01:39:10 +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-28 01:39:10 +08:00
|
|
|
left: !isRTL ? mediaAreaBounds.left : 0,
|
2021-05-18 04:25:07 +08:00
|
|
|
zIndex: 1,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +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;
|
2021-09-10 01:12:05 +08:00
|
|
|
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 {
|
2021-09-10 01:12:05 +08:00
|
|
|
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 {
|
2021-09-10 01:12:05 +08:00
|
|
|
width = min(max(sidebarNavigationInput.width, sidebarNavMinWidth), sidebarNavMaxWidth);
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
minWidth = sidebarNavMinWidth;
|
|
|
|
maxWidth = sidebarNavMaxWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
minWidth,
|
|
|
|
width,
|
|
|
|
maxWidth,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesSidebarNavHeight = () => {
|
2021-05-18 04:25:07 +08:00
|
|
|
let sidebarNavHeight = 0;
|
2021-09-10 01:12:05 +08:00
|
|
|
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
|
|
|
}
|
2021-09-10 01:12:05 +08:00
|
|
|
sidebarNavHeight -= bannerAreaHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
return sidebarNavHeight;
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesSidebarNavBounds = () => {
|
2021-07-13 00:24:53 +08:00
|
|
|
const { sidebarNavTop, navBarHeight, sidebarNavLeft } = DEFAULT_VALUES;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
let top = sidebarNavTop + bannerAreaHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) top = navBarHeight + bannerAreaHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
top,
|
2021-07-28 01:39:10 +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-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +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;
|
2021-09-10 01:12:05 +08:00
|
|
|
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 {
|
2021-09-10 01:12:05 +08:00
|
|
|
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 {
|
2021-09-10 01:12:05 +08:00
|
|
|
width = min(max(sidebarContentInput.width, sidebarContentMinWidth),
|
2021-05-18 04:25:07 +08:00
|
|
|
sidebarContentMaxWidth);
|
|
|
|
}
|
|
|
|
minWidth = sidebarContentMinWidth;
|
|
|
|
maxWidth = sidebarContentMaxWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
minWidth,
|
|
|
|
width,
|
|
|
|
maxWidth,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesSidebarContentHeight = () => {
|
2021-06-29 21:31:44 +08:00
|
|
|
let minHeight = 0;
|
|
|
|
let height = 0;
|
|
|
|
let maxHeight = 0;
|
2021-09-10 01:12:05 +08:00
|
|
|
if (sidebarContentInput.isOpen) {
|
2021-05-18 04:25:07 +08:00
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
2021-09-10 01:12:05 +08:00
|
|
|
height = windowHeight() - DEFAULT_VALUES.navBarHeight - bannerAreaHeight();
|
2021-07-31 03:07:49 +08:00
|
|
|
minHeight = height;
|
|
|
|
maxHeight = height;
|
2021-09-10 01:12:05 +08:00
|
|
|
} else if (cameraDockInput.numCameras > 0 && presentationInput.isOpen) {
|
|
|
|
if (sidebarContentInput.height > 0 && sidebarContentInput.height < windowHeight()) {
|
|
|
|
height = sidebarContentInput.height - bannerAreaHeight();
|
2021-06-29 21:31:44 +08:00
|
|
|
} else {
|
2021-09-10 01:12:05 +08:00
|
|
|
const { size: slideSize } = presentationInput.currentSlide;
|
|
|
|
let calculatedHeight = (windowHeight() - bannerAreaHeight()) * 0.3;
|
2021-07-31 03:07:49 +08:00
|
|
|
|
|
|
|
if (slideSize.height > 0 && slideSize.width > 0) {
|
2021-09-10 01:12:05 +08:00
|
|
|
calculatedHeight = (slideSize.height * sidebarContentOutput.width) / slideSize.width;
|
2021-07-31 03:07:49 +08:00
|
|
|
}
|
2021-09-10 01:12:05 +08:00
|
|
|
height = windowHeight() - calculatedHeight - bannerAreaHeight();
|
2021-08-05 21:53:35 +08:00
|
|
|
}
|
2021-09-10 01:12:05 +08:00
|
|
|
maxHeight = windowHeight() * 0.75 - bannerAreaHeight();
|
|
|
|
minHeight = windowHeight() * 0.25 - bannerAreaHeight();
|
2021-08-12 22:02:13 +08:00
|
|
|
|
|
|
|
if (height > maxHeight) {
|
|
|
|
height = maxHeight;
|
|
|
|
}
|
2021-07-31 03:07:49 +08:00
|
|
|
} else {
|
2021-09-10 01:12:05 +08:00
|
|
|
height = windowHeight() - bannerAreaHeight();
|
2021-07-31 03:07:49 +08:00
|
|
|
maxHeight = height;
|
|
|
|
minHeight = height;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-29 21:31:44 +08:00
|
|
|
return {
|
|
|
|
minHeight,
|
|
|
|
height,
|
|
|
|
maxHeight,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesSidebarContentBounds = (sidebarNavWidth) => {
|
2021-07-13 00:24:53 +08:00
|
|
|
const { sidebarNavTop, navBarHeight } = DEFAULT_VALUES;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
let top = sidebarNavTop + bannerAreaHeight();
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) top = navBarHeight + 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;
|
|
|
|
|
2021-05-18 04:25:07 +08:00
|
|
|
return {
|
|
|
|
top,
|
2021-07-30 21:31:15 +08:00
|
|
|
left,
|
|
|
|
right,
|
2021-05-31 21:44:55 +08:00
|
|
|
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 11 : 1,
|
2021-05-18 04:25:07 +08:00
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesMediaAreaBounds = (sidebarNavWidth, sidebarContentWidth) => {
|
2021-07-22 22:42:45 +08:00
|
|
|
const { navBarHeight } = DEFAULT_VALUES;
|
2021-09-10 01:12:05 +08:00
|
|
|
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-28 01:39:10 +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,
|
2021-09-10 01:12:05 +08:00
|
|
|
height: windowHeight() - (navBarHeight + actionBarHeight + bannerAreaHeight()),
|
|
|
|
top: navBarHeight + bannerAreaHeight(),
|
2021-05-18 04:25:07 +08:00
|
|
|
left,
|
|
|
|
};
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesCameraDockBounds = (mediaAreaBounds, sidebarSize) => {
|
2021-05-18 04:25:07 +08:00
|
|
|
const cameraDockBounds = {};
|
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
if (cameraDockInput.numCameras > 0) {
|
2021-06-09 21:49:59 +08:00
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
|
|
|
cameraDockBounds.minHeight = mediaAreaBounds.height * 0.7;
|
|
|
|
cameraDockBounds.height = mediaAreaBounds.height * 0.7;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height * 0.7;
|
|
|
|
} else {
|
|
|
|
cameraDockBounds.minHeight = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.height = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight;
|
2021-07-28 01:39:10 +08:00
|
|
|
cameraDockBounds.left = !isRTL ? mediaAreaBounds.left : null;
|
|
|
|
cameraDockBounds.right = isRTL ? sidebarSize : null;
|
2021-06-09 21:49:59 +08:00
|
|
|
cameraDockBounds.minWidth = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.width = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.maxWidth = mediaAreaBounds.width;
|
|
|
|
cameraDockBounds.zIndex = 1;
|
2021-07-13 03:47:06 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
cameraDockBounds.zIndex = 99;
|
|
|
|
}
|
|
|
|
|
2021-06-09 21:49:59 +08:00
|
|
|
return cameraDockBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
2021-06-09 21:49:59 +08:00
|
|
|
cameraDockBounds.top = 0;
|
|
|
|
cameraDockBounds.left = 0;
|
|
|
|
cameraDockBounds.minWidth = 0;
|
2021-07-28 01:39:10 +08:00
|
|
|
cameraDockBounds.height = 0;
|
2021-06-09 21:49:59 +08:00
|
|
|
cameraDockBounds.width = 0;
|
|
|
|
cameraDockBounds.maxWidth = 0;
|
|
|
|
cameraDockBounds.zIndex = 0;
|
2021-05-18 04:25:07 +08:00
|
|
|
return cameraDockBounds;
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesMediaBounds = (
|
2021-05-18 04:25:07 +08:00
|
|
|
mediaAreaBounds,
|
|
|
|
cameraDockBounds,
|
|
|
|
sidebarNavWidth,
|
|
|
|
sidebarContentWidth,
|
2021-06-29 21:31:44 +08:00
|
|
|
sidebarContentHeight,
|
2021-09-10 01:12:05 +08:00
|
|
|
) => {
|
2021-06-15 21:55:46 +08:00
|
|
|
const mediaBounds = {};
|
2021-07-13 03:47:06 +08:00
|
|
|
const { element: fullscreenElement } = fullscreen;
|
2021-07-28 01:39:10 +08:00
|
|
|
const sidebarSize = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
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;
|
|
|
|
mediaBounds.left = 0;
|
2021-07-28 01:39:10 +08:00
|
|
|
mediaBounds.right = 0;
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.zIndex = 99;
|
2021-06-25 02:42:45 +08:00
|
|
|
return mediaBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.height = mediaAreaBounds.height - cameraDockBounds.height;
|
|
|
|
mediaBounds.left = mediaAreaBounds.left;
|
|
|
|
mediaBounds.top = mediaAreaBounds.top + cameraDockBounds.height;
|
|
|
|
mediaBounds.width = mediaAreaBounds.width;
|
2021-09-10 01:12:05 +08:00
|
|
|
} else if (cameraDockInput.numCameras > 0) {
|
2021-08-09 22:24:02 +08:00
|
|
|
mediaBounds.height = windowHeight() - sidebarContentHeight;
|
2021-07-28 01:39:10 +08:00
|
|
|
mediaBounds.left = !isRTL ? sidebarNavWidth : 0;
|
|
|
|
mediaBounds.right = isRTL ? sidebarNavWidth : 0;
|
2021-06-29 21:31:44 +08:00
|
|
|
mediaBounds.top = sidebarContentHeight;
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = sidebarContentWidth;
|
|
|
|
mediaBounds.zIndex = 1;
|
2021-06-09 21:49:59 +08:00
|
|
|
} else {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.height = mediaAreaBounds.height;
|
|
|
|
mediaBounds.width = mediaAreaBounds.width;
|
2021-09-10 01:12:05 +08:00
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight + bannerAreaHeight();
|
2021-07-28 01:39:10 +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-09 21:49:59 +08:00
|
|
|
|
2021-06-15 21:55:46 +08:00
|
|
|
return mediaBounds;
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
const calculatesLayout = () => {
|
2021-08-16 21:38:39 +08:00
|
|
|
const { captionsMargin } = DEFAULT_VALUES;
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +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,
|
|
|
|
);
|
2021-09-10 01:12:05 +08:00
|
|
|
const navbarBounds = calculatesNavbarBounds(mediaAreaBounds);
|
|
|
|
const actionbarBounds = calculatesActionbarBounds(mediaAreaBounds);
|
2021-07-28 01:39:10 +08:00
|
|
|
const sidebarSize = sidebarContentWidth.width + sidebarNavWidth.width;
|
2021-09-10 01:12:05 +08:00
|
|
|
const cameraDockBounds = calculatesCameraDockBounds(mediaAreaBounds, sidebarSize);
|
|
|
|
const sidebarContentHeight = calculatesSidebarContentHeight();
|
|
|
|
const mediaBounds = calculatesMediaBounds(
|
2021-06-29 21:39:12 +08:00
|
|
|
mediaAreaBounds,
|
|
|
|
cameraDockBounds,
|
|
|
|
sidebarNavWidth.width,
|
2021-06-29 21:31:44 +08:00
|
|
|
sidebarContentWidth.width,
|
|
|
|
sidebarContentHeight.height,
|
2021-05-18 04:25:07 +08:00
|
|
|
);
|
2021-09-10 01:12:05 +08:00
|
|
|
const isBottomResizable = cameraDockInput.numCameras > 0;
|
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: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: navbarInput.hasNavBar,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: navbarBounds.width,
|
|
|
|
height: navbarBounds.height,
|
|
|
|
top: navbarBounds.top,
|
|
|
|
left: navbarBounds.left,
|
|
|
|
tabOrder: DEFAULT_VALUES.navBarTabOrder,
|
|
|
|
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: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: actionbarInput.hasActionBar,
|
2021-05-18 04:25:07 +08:00
|
|
|
width: actionbarBounds.width,
|
|
|
|
height: actionbarBounds.height,
|
2021-07-22 22:04:38 +08:00
|
|
|
innerHeight: actionbarBounds.innerHeight,
|
2021-05-18 04:25:07 +08:00
|
|
|
top: actionbarBounds.top,
|
|
|
|
left: actionbarBounds.left,
|
2021-07-22 22:04:38 +08:00
|
|
|
padding: actionbarBounds.padding,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.actionBarTabOrder,
|
|
|
|
zIndex: actionbarBounds.zIndex,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-08-16 21:38:39 +08:00
|
|
|
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-16 21:38:39 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-05-18 04:25:07 +08:00
|
|
|
type: ACTIONS.SET_SIDEBAR_NAVIGATION_OUTPUT,
|
|
|
|
value: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: sidebarNavigationInput.isOpen,
|
2021-05-18 04:25:07 +08:00
|
|
|
minWidth: sidebarNavWidth.minWidth,
|
|
|
|
width: sidebarNavWidth.width,
|
|
|
|
maxWidth: sidebarNavWidth.maxWidth,
|
|
|
|
height: sidebarNavHeight,
|
|
|
|
top: sidebarNavBounds.top,
|
|
|
|
left: sidebarNavBounds.left,
|
2021-07-28 01:39:10 +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-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:39:10 +08:00
|
|
|
right: !isRTL,
|
2021-05-18 04:25:07 +08:00
|
|
|
bottom: false,
|
2021-07-28 01:39:10 +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: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: sidebarContentInput.isOpen,
|
2021-05-18 04:25:07 +08:00
|
|
|
minWidth: sidebarContentWidth.minWidth,
|
|
|
|
width: sidebarContentWidth.width,
|
|
|
|
maxWidth: sidebarContentWidth.maxWidth,
|
2021-06-29 21:31:44 +08:00
|
|
|
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:39:10 +08:00
|
|
|
right: sidebarContentBounds.right,
|
2021-09-10 01:12:05 +08:00
|
|
|
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-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:39:10 +08:00
|
|
|
right: !isRTL,
|
2021-06-29 21:31:44 +08:00
|
|
|
bottom: isBottomResizable,
|
2021-07-28 01:39:10 +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: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: cameraDockInput.numCameras > 0,
|
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:39:10 +08:00
|
|
|
right: cameraDockBounds.right,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: 4,
|
|
|
|
isDraggable: false,
|
2021-07-13 03:47:06 +08:00
|
|
|
resizableEdge: {
|
|
|
|
top: false,
|
|
|
|
right: false,
|
|
|
|
bottom: false,
|
|
|
|
left: false,
|
|
|
|
},
|
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: {
|
2021-09-10 01:12:05 +08:00
|
|
|
display: presentationInput.isOpen,
|
2021-06-15 21:55:46 +08:00
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-07-28 01:39:10 +08:00
|
|
|
right: isRTL ? mediaBounds.right : null,
|
2021-05-18 04:25:07 +08:00
|
|
|
tabOrder: DEFAULT_VALUES.presentationTabOrder,
|
|
|
|
isResizable: deviceType !== DEVICE_TYPE.MOBILE
|
|
|
|
&& deviceType !== DEVICE_TYPE.TABLET,
|
2021-06-15 21:55:46 +08:00
|
|
|
zIndex: mediaBounds.zIndex,
|
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_PRESENTATION_RESIZABLE_EDGE,
|
|
|
|
value: {
|
|
|
|
top: true,
|
|
|
|
right: false,
|
|
|
|
bottom: false,
|
|
|
|
left: false,
|
|
|
|
},
|
|
|
|
});
|
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: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-07-28 01:39:10 +08:00
|
|
|
right: isRTL ? mediaBounds.right : 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-09-11 04:48:52 +08:00
|
|
|
layoutContextDispatch({
|
2021-06-16 20:53:27 +08:00
|
|
|
type: ACTIONS.SET_EXTERNAL_VIDEO_OUTPUT,
|
|
|
|
value: {
|
|
|
|
width: mediaBounds.width,
|
|
|
|
height: mediaBounds.height,
|
|
|
|
top: mediaBounds.top,
|
|
|
|
left: mediaBounds.left,
|
2021-07-28 01:39:10 +08:00
|
|
|
right: isRTL ? mediaBounds.right : null,
|
2021-06-16 20:53:27 +08:00
|
|
|
},
|
|
|
|
});
|
2021-09-10 01:12:05 +08:00
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
return null;
|
|
|
|
};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-09-10 01:12:05 +08:00
|
|
|
export default VideoFocusLayout;
|