2021-05-18 04:25:07 +08:00
|
|
|
import { Component } from 'react';
|
|
|
|
import _ from 'lodash';
|
|
|
|
import NewLayoutContext from '../context/context';
|
|
|
|
import DEFAULT_VALUES from '../defaultValues';
|
|
|
|
import { INITIAL_INPUT_STATE } from '../context/initState';
|
|
|
|
import { DEVICE_TYPE, ACTIONS, CAMERADOCK_POSITION } from '../enums';
|
|
|
|
|
|
|
|
const min = (value1, value2) => (value1 <= value2 ? value1 : value2);
|
|
|
|
const max = (value1, value2) => (value1 >= value2 ? value1 : value2);
|
|
|
|
|
|
|
|
class CustomLayout 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-06-19 02:32:46 +08:00
|
|
|
|| newLayoutContextState.layoutLoaded !== nextProps.newLayoutContextState.layoutLoaded
|
|
|
|
|| newLayoutContextState.fontSize !== nextProps.newLayoutContextState.fontSize;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType } = newLayoutContextState;
|
|
|
|
|
|
|
|
if (prevProps.newLayoutContextState.deviceType !== deviceType
|
|
|
|
|| newLayoutContextState.layoutLoaded !== prevProps.newLayoutContextState.layoutLoaded) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesDropAreas(sidebarNavWidth, sidebarContentWidth, cameraDockBounds) {
|
|
|
|
const mediaAreaHeight = this.mainHeight()
|
|
|
|
- (DEFAULT_VALUES.navBarHeight + DEFAULT_VALUES.actionBarHeight);
|
|
|
|
const mediaAreaWidth = this.mainWidth() - (sidebarNavWidth + sidebarContentWidth);
|
|
|
|
const DROP_ZONE_DEFAUL_SIZE = 100;
|
|
|
|
const dropZones = {};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_TOP] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight,
|
|
|
|
left: sidebarNavWidth
|
|
|
|
+ sidebarContentWidth,
|
|
|
|
width: mediaAreaWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_RIGHT] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight + DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
left: this.mainWidth() - DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
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,
|
|
|
|
left: sidebarNavWidth + sidebarContentWidth,
|
|
|
|
width: mediaAreaWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.CONTENT_LEFT] = {
|
|
|
|
top: DEFAULT_VALUES.navBarHeight + DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
left: sidebarNavWidth + sidebarContentWidth,
|
|
|
|
height: mediaAreaHeight
|
|
|
|
- (2 * DROP_ZONE_DEFAUL_SIZE),
|
|
|
|
width: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
dropZones[CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM] = {
|
|
|
|
top: this.mainHeight() - DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
left: sidebarNavWidth,
|
|
|
|
width: sidebarContentWidth,
|
|
|
|
height: DROP_ZONE_DEFAUL_SIZE,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
return dropZones;
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-05-19 22:51:31 +08:00
|
|
|
sidebarNavPanel: input.sidebarNavigation.sidebarNavPanel,
|
2021-05-18 04:25:07 +08:00
|
|
|
},
|
|
|
|
sidebarContent: {
|
|
|
|
isOpen: false,
|
2021-05-19 22:51:31 +08:00
|
|
|
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 {
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_LAYOUT_INPUT,
|
|
|
|
value: _.defaultsDeep({
|
|
|
|
sidebarNavigation: {
|
|
|
|
isOpen: true,
|
|
|
|
},
|
|
|
|
sidebarContent: {
|
|
|
|
isOpen: deviceType === DEVICE_TYPE.TABLET_LANDSCAPE
|
|
|
|
|| deviceType === DEVICE_TYPE.DESKTOP,
|
|
|
|
},
|
|
|
|
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;
|
|
|
|
const { layoutLoaded } = newLayoutContextState;
|
|
|
|
|
|
|
|
let top = 0;
|
|
|
|
if (layoutLoaded === 'both') top = this.mainHeight();
|
|
|
|
else top = DEFAULT_VALUES.navBarTop;
|
|
|
|
|
|
|
|
return {
|
|
|
|
width: this.mainWidth() - mediaAreaBounds.left,
|
|
|
|
height: DEFAULT_VALUES.navBarHeight,
|
|
|
|
top,
|
|
|
|
left: mediaAreaBounds.left,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesActionbarBounds(mediaAreaBounds) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
2021-06-19 02:32:46 +08:00
|
|
|
const { input, fontSize } = newLayoutContextState;
|
|
|
|
|
|
|
|
const BASE_FONT_SIZE = 16;
|
|
|
|
const actionBarHeight = DEFAULT_VALUES.actionBarHeight / BASE_FONT_SIZE * fontSize;
|
|
|
|
|
2021-05-18 04:25:07 +08:00
|
|
|
return {
|
|
|
|
display: input.actionBar.hasActionBar,
|
|
|
|
width: this.mainWidth() - mediaAreaBounds.left,
|
2021-06-19 02:32:46 +08:00
|
|
|
height: actionBarHeight,
|
|
|
|
top: this.mainHeight() - actionBarHeight,
|
2021-05-18 04:25:07 +08:00
|
|
|
left: mediaAreaBounds.left,
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
minWidth = 0;
|
|
|
|
width = 0;
|
|
|
|
maxWidth = 0;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
minWidth,
|
|
|
|
width,
|
|
|
|
maxWidth,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesSidebarNavHeight() {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType, input } = newLayoutContextState;
|
|
|
|
let sidebarNavHeight = 0;
|
|
|
|
if (input.sidebarNavigation.isOpen) {
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
|
|
|
sidebarNavHeight = this.mainHeight() - DEFAULT_VALUES.navBarHeight;
|
|
|
|
} else {
|
|
|
|
sidebarNavHeight = this.mainHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sidebarNavHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesSidebarNavBounds() {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType, layoutLoaded } = newLayoutContextState;
|
|
|
|
|
|
|
|
let top = 0;
|
|
|
|
if (layoutLoaded === 'both') top = this.mainHeight();
|
|
|
|
else top = DEFAULT_VALUES.sidebarNavTop;
|
|
|
|
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
|
|
|
|
return {
|
|
|
|
top,
|
|
|
|
left: DEFAULT_VALUES.sidebarNavLeft,
|
|
|
|
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 10 : 2,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
minWidth = 0;
|
|
|
|
width = 0;
|
|
|
|
maxWidth = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
minWidth,
|
|
|
|
width,
|
|
|
|
maxWidth,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesSidebarContentHeight(cameraDockHeight) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType, input } = newLayoutContextState;
|
|
|
|
let sidebarContentHeight = 0;
|
|
|
|
if (input.sidebarContent.isOpen) {
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
|
|
|
sidebarContentHeight = this.mainHeight() - DEFAULT_VALUES.navBarHeight;
|
|
|
|
} else if (input.cameraDock.numCameras > 0
|
|
|
|
&& input.cameraDock.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM) {
|
|
|
|
sidebarContentHeight = this.mainHeight() - cameraDockHeight;
|
|
|
|
} else {
|
|
|
|
sidebarContentHeight = this.mainHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sidebarContentHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesSidebarContentBounds(sidebarNavWidth) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType, layoutLoaded } = newLayoutContextState;
|
|
|
|
|
|
|
|
let top = 0;
|
|
|
|
if (layoutLoaded === 'both') top = this.mainHeight();
|
|
|
|
else top = DEFAULT_VALUES.sidebarNavTop;
|
|
|
|
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
|
|
|
|
return {
|
|
|
|
top,
|
|
|
|
left: deviceType === DEVICE_TYPE.MOBILE
|
|
|
|
|| deviceType === DEVICE_TYPE.TABLET_PORTRAIT ? 0 : sidebarNavWidth,
|
|
|
|
zIndex: deviceType === DEVICE_TYPE.MOBILE ? 11 : 1,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesMediaAreaBounds(sidebarNavWidth, sidebarContentWidth) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { deviceType, input, layoutLoaded } = newLayoutContextState;
|
|
|
|
const { sidebarContent } = input;
|
|
|
|
let left = 0;
|
|
|
|
let width = 0;
|
|
|
|
let top = 0;
|
|
|
|
if (deviceType === DEVICE_TYPE.MOBILE) {
|
|
|
|
left = 0;
|
|
|
|
width = this.mainWidth();
|
|
|
|
} else if (deviceType === DEVICE_TYPE.TABLET_PORTRAIT) {
|
|
|
|
if (sidebarContent.isOpen) {
|
|
|
|
left = sidebarContentWidth;
|
|
|
|
width = this.mainWidth() - sidebarContentWidth;
|
|
|
|
} else {
|
|
|
|
left = sidebarNavWidth;
|
|
|
|
width = this.mainWidth() - sidebarNavWidth;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
left = sidebarNavWidth + sidebarContentWidth;
|
|
|
|
width = this.mainWidth() - sidebarNavWidth - sidebarContentWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (layoutLoaded === 'both') top = this.mainHeight() / 2;
|
|
|
|
else top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
|
|
|
|
return {
|
|
|
|
width,
|
|
|
|
height: this.mainHeight() - (DEFAULT_VALUES.navBarHeight + DEFAULT_VALUES.actionBarHeight),
|
|
|
|
top,
|
|
|
|
left,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
calculatesCameraDockBounds(sidebarNavWidth, sidebarContentWidth, mediaAreaBounds) {
|
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { input } = newLayoutContextState;
|
|
|
|
|
|
|
|
const cameraDockBounds = {};
|
|
|
|
|
|
|
|
if (input.cameraDock.numCameras > 0) {
|
|
|
|
let cameraDockLeft = 0;
|
|
|
|
let cameraDockHeight = 0;
|
|
|
|
let cameraDockWidth = 0;
|
|
|
|
switch (input.cameraDock.position) {
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_TOP:
|
|
|
|
cameraDockLeft = mediaAreaBounds.left;
|
|
|
|
|
|
|
|
if (input.cameraDock.height === 0) {
|
|
|
|
if (input.presentation.isOpen) {
|
|
|
|
cameraDockHeight = min(
|
|
|
|
max((mediaAreaBounds.height * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cameraDockHeight = mediaAreaBounds.height;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cameraDockHeight = min(
|
|
|
|
max(input.cameraDock.height, DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
cameraDockBounds.left = cameraDockLeft;
|
|
|
|
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_RIGHT:
|
|
|
|
if (input.cameraDock.width === 0) {
|
|
|
|
if (input.presentation.isOpen) {
|
|
|
|
cameraDockWidth = min(
|
|
|
|
max((mediaAreaBounds.width * 0.2), DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cameraDockWidth = mediaAreaBounds.width;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cameraDockWidth = min(
|
|
|
|
max(input.cameraDock.width, DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
cameraDockBounds.left = input.presentation.isOpen
|
|
|
|
? (mediaAreaBounds.left + mediaAreaBounds.width) - cameraDockWidth
|
|
|
|
: mediaAreaBounds.left;
|
|
|
|
cameraDockBounds.minWidth = DEFAULT_VALUES.cameraDockMinWidth;
|
|
|
|
cameraDockBounds.width = cameraDockWidth;
|
|
|
|
cameraDockBounds.maxWidth = mediaAreaBounds.width * 0.8;
|
|
|
|
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
|
|
|
|
cameraDockBounds.height = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height;
|
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_BOTTOM:
|
|
|
|
cameraDockLeft = mediaAreaBounds.left;
|
|
|
|
|
|
|
|
if (input.cameraDock.height === 0) {
|
|
|
|
if (input.presentation.isOpen) {
|
|
|
|
cameraDockHeight = min(
|
|
|
|
max((mediaAreaBounds.height * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cameraDockHeight = mediaAreaBounds.height;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cameraDockHeight = min(
|
|
|
|
max(input.cameraDock.height, DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
(mediaAreaBounds.height - DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight
|
|
|
|
+ mediaAreaBounds.height - cameraDockHeight;
|
|
|
|
cameraDockBounds.left = cameraDockLeft;
|
|
|
|
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 (input.cameraDock.width === 0) {
|
|
|
|
if (input.presentation.isOpen) {
|
|
|
|
cameraDockWidth = min(
|
|
|
|
max((mediaAreaBounds.width * 0.2), DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
cameraDockWidth = mediaAreaBounds.width;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cameraDockWidth = min(
|
|
|
|
max(input.cameraDock.width, DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
(mediaAreaBounds.width - DEFAULT_VALUES.cameraDockMinWidth),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
cameraDockBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
cameraDockBounds.left = mediaAreaBounds.left;
|
|
|
|
cameraDockBounds.minWidth = DEFAULT_VALUES.cameraDockMinWidth;
|
|
|
|
cameraDockBounds.width = cameraDockWidth;
|
|
|
|
cameraDockBounds.maxWidth = mediaAreaBounds.width * 0.8;
|
|
|
|
cameraDockBounds.minHeight = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.height = mediaAreaBounds.height;
|
|
|
|
cameraDockBounds.maxHeight = mediaAreaBounds.height;
|
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM:
|
|
|
|
if (input.cameraDock.height === 0) {
|
|
|
|
cameraDockHeight = min(
|
|
|
|
max((this.mainHeight() * 0.2), DEFAULT_VALUES.cameraDockMinHeight),
|
|
|
|
(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;
|
|
|
|
cameraDockBounds.left = sidebarNavWidth;
|
|
|
|
cameraDockBounds.minWidth = sidebarContentWidth;
|
|
|
|
cameraDockBounds.width = sidebarContentWidth;
|
|
|
|
cameraDockBounds.maxWidth = sidebarContentWidth;
|
|
|
|
cameraDockBounds.minHeight = DEFAULT_VALUES.cameraDockMinHeight;
|
|
|
|
cameraDockBounds.height = cameraDockHeight;
|
|
|
|
cameraDockBounds.maxHeight = this.mainHeight() * 0.8;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.log('default');
|
|
|
|
}
|
|
|
|
if (input.cameraDock.isDragging) cameraDockBounds.zIndex = 99;
|
|
|
|
else cameraDockBounds.zIndex = 1;
|
|
|
|
} else {
|
|
|
|
cameraDockBounds.width = 0;
|
|
|
|
cameraDockBounds.height = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cameraDockBounds;
|
|
|
|
}
|
|
|
|
|
2021-06-15 21:55:46 +08:00
|
|
|
calculatesMediaBounds(sidebarNavWidth, sidebarContentWidth, cameraDockBounds) {
|
2021-05-18 04:25:07 +08:00
|
|
|
const { newLayoutContextState } = this.props;
|
|
|
|
const { input } = newLayoutContextState;
|
|
|
|
const mediaAreaHeight = this.mainHeight()
|
|
|
|
- (DEFAULT_VALUES.navBarHeight + DEFAULT_VALUES.actionBarHeight);
|
|
|
|
const mediaAreaWidth = this.mainWidth() - (sidebarNavWidth + sidebarContentWidth);
|
2021-06-15 21:55:46 +08:00
|
|
|
const mediaBounds = {};
|
2021-05-18 04:25:07 +08:00
|
|
|
|
2021-07-06 00:52:25 +08:00
|
|
|
if (input.fullscreen.element === 'Presentation') {
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = this.mainWidth();
|
|
|
|
mediaBounds.height = this.mainHeight();
|
|
|
|
mediaBounds.top = 0;
|
|
|
|
mediaBounds.left = 0;
|
|
|
|
mediaBounds.zIndex = 99;
|
|
|
|
return mediaBounds;
|
2021-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (input.cameraDock.numCameras > 0 && !input.cameraDock.isDragging) {
|
|
|
|
switch (input.cameraDock.position) {
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_TOP:
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
|
|
|
mediaBounds.height = mediaAreaHeight - cameraDockBounds.height;
|
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight + cameraDockBounds.height;
|
|
|
|
mediaBounds.left = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_RIGHT:
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth - cameraDockBounds.width;
|
|
|
|
mediaBounds.height = mediaAreaHeight;
|
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
mediaBounds.left = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_BOTTOM:
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
|
|
|
mediaBounds.height = mediaAreaHeight - cameraDockBounds.height;
|
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
mediaBounds.left = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.CONTENT_LEFT:
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth - cameraDockBounds.width;
|
|
|
|
mediaBounds.height = mediaAreaHeight;
|
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
mediaBounds.left = sidebarNavWidth
|
|
|
|
+ sidebarContentWidth + mediaAreaWidth - mediaBounds.width;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
|
|
|
case CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM:
|
2021-06-15 21:55:46 +08:00
|
|
|
mediaBounds.width = mediaAreaWidth;
|
|
|
|
mediaBounds.height = mediaAreaHeight;
|
|
|
|
mediaBounds.top = DEFAULT_VALUES.navBarHeight;
|
|
|
|
mediaBounds.left = sidebarNavWidth + sidebarContentWidth;
|
2021-05-18 04:25:07 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.log('presentation - camera default');
|
|
|
|
}
|
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;
|
|
|
|
mediaBounds.left = sidebarNavWidth + sidebarContentWidth;
|
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;
|
|
|
|
const { deviceType, input } = newLayoutContextState;
|
|
|
|
|
|
|
|
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);
|
|
|
|
const cameraDockBounds = this.calculatesCameraDockBounds(
|
|
|
|
sidebarNavWidth.width, sidebarContentWidth.width, mediaAreaBounds,
|
|
|
|
);
|
|
|
|
const dropZoneAreas = this
|
|
|
|
.calculatesDropAreas(sidebarNavWidth.width, sidebarContentWidth.width, cameraDockBounds);
|
|
|
|
const sidebarContentHeight = this.calculatesSidebarContentHeight(cameraDockBounds.height);
|
2021-06-15 21:55:46 +08:00
|
|
|
const mediaBounds = this.calculatesMediaBounds(
|
2021-05-18 04:25:07 +08:00
|
|
|
sidebarNavWidth.width, sidebarContentWidth.width, cameraDockBounds,
|
|
|
|
);
|
|
|
|
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_ACTIONBAR_OUTPUT,
|
|
|
|
value: {
|
|
|
|
display: input.actionBar.hasActionBar,
|
|
|
|
width: actionbarBounds.width,
|
|
|
|
height: actionbarBounds.height,
|
|
|
|
top: actionbarBounds.top,
|
|
|
|
left: actionbarBounds.left,
|
|
|
|
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,
|
|
|
|
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,
|
|
|
|
right: true,
|
|
|
|
bottom: false,
|
|
|
|
left: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_SIDEBAR_CONTENT_OUTPUT,
|
|
|
|
value: {
|
|
|
|
display: input.sidebarContent.isOpen,
|
|
|
|
minWidth: sidebarContentWidth.minWidth,
|
|
|
|
width: sidebarContentWidth.width,
|
|
|
|
maxWidth: sidebarContentWidth.maxWidth,
|
|
|
|
height: sidebarContentHeight,
|
|
|
|
top: sidebarContentBounds.top,
|
|
|
|
left: sidebarContentBounds.left,
|
|
|
|
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,
|
|
|
|
right: true,
|
|
|
|
bottom: false,
|
|
|
|
left: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_MEDIA_AREA_SIZE,
|
|
|
|
value: {
|
|
|
|
width: this.mainWidth() - sidebarNavWidth.width - sidebarContentWidth.width,
|
|
|
|
height: this.mainHeight() - DEFAULT_VALUES.navBarHeight - DEFAULT_VALUES.actionBarHeight,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
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,
|
|
|
|
tabOrder: 4,
|
|
|
|
isDraggable: deviceType !== DEVICE_TYPE.MOBILE
|
|
|
|
&& deviceType !== DEVICE_TYPE.TABLET,
|
|
|
|
isResizable: deviceType !== DEVICE_TYPE.MOBILE
|
|
|
|
&& deviceType !== DEVICE_TYPE.TABLET,
|
|
|
|
zIndex: cameraDockBounds.zIndex,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_CAMERA_DOCK_RESIZABLE_EDGE,
|
|
|
|
value: {
|
|
|
|
top: input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_BOTTOM
|
|
|
|
|| input.cameraDock.position === CAMERADOCK_POSITION.SIDEBAR_CONTENT_BOTTOM,
|
|
|
|
right: input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_LEFT,
|
|
|
|
bottom: input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_TOP,
|
|
|
|
left: input.cameraDock.position === CAMERADOCK_POSITION.CONTENT_RIGHT,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
newLayoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_DROP_AREAS,
|
|
|
|
value: dropZoneAreas,
|
|
|
|
});
|
|
|
|
|
|
|
|
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-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-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-05-18 04:25:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default NewLayoutContext.withConsumer(CustomLayout);
|