2017-10-12 10:00:28 +08:00
|
|
|
import Presentations from '/imports/api/presentations';
|
2017-07-25 03:29:34 +08:00
|
|
|
import { isVideoBroadcasting } from '/imports/ui/components/screenshare/service';
|
2019-07-13 04:08:55 +08:00
|
|
|
import { getVideoUrl } from '/imports/ui/components/external-video-player/service';
|
2018-04-18 01:55:07 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2018-09-14 02:09:30 +08:00
|
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
2022-03-09 21:33:18 +08:00
|
|
|
import { isExternalVideoEnabled, isScreenSharingEnabled } from '/imports/ui/services/features';
|
2021-07-17 02:42:16 +08:00
|
|
|
import { ACTIONS } from '../layout/enums';
|
2016-05-31 06:07:02 +08:00
|
|
|
|
2018-10-24 04:44:17 +08:00
|
|
|
const LAYOUT_CONFIG = Meteor.settings.public.layout;
|
|
|
|
const KURENTO_CONFIG = Meteor.settings.public.kurento;
|
2021-10-15 03:31:47 +08:00
|
|
|
const PRESENTATION_CONFIG = Meteor.settings.public.presentation;
|
2018-10-24 04:44:17 +08:00
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
const getPresentationInfo = () => {
|
2017-07-01 03:16:00 +08:00
|
|
|
const currentPresentation = Presentations.findOne({
|
2017-07-25 02:46:53 +08:00
|
|
|
current: true,
|
2017-06-03 03:25:02 +08:00
|
|
|
});
|
2016-05-31 06:07:02 +08:00
|
|
|
|
|
|
|
return {
|
2017-06-03 03:25:02 +08:00
|
|
|
current_presentation: (currentPresentation != null),
|
2016-05-31 06:07:02 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-15 04:25:31 +08:00
|
|
|
function shouldShowWhiteboard() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-25 03:29:34 +08:00
|
|
|
function shouldShowScreenshare() {
|
2019-02-05 20:59:39 +08:00
|
|
|
const { viewScreenshare } = Settings.dataSaving;
|
2022-02-07 21:22:52 +08:00
|
|
|
return isScreenSharingEnabled() && viewScreenshare && isVideoBroadcasting();
|
2016-09-15 04:25:31 +08:00
|
|
|
}
|
|
|
|
|
2018-11-30 01:24:02 +08:00
|
|
|
function shouldShowExternalVideo() {
|
2022-03-09 21:33:18 +08:00
|
|
|
return isExternalVideoEnabled() && getVideoUrl();
|
2018-11-30 01:24:02 +08:00
|
|
|
}
|
|
|
|
|
2016-09-15 04:25:31 +08:00
|
|
|
function shouldShowOverlay() {
|
2019-07-25 01:04:46 +08:00
|
|
|
return getFromUserSettings('bbb_enable_video', KURENTO_CONFIG.enableVideo);
|
2016-09-15 04:25:31 +08:00
|
|
|
}
|
|
|
|
|
2018-04-10 02:48:21 +08:00
|
|
|
const swapLayout = {
|
2019-07-22 22:28:13 +08:00
|
|
|
value: getFromUserSettings('bbb_auto_swap_layout', LAYOUT_CONFIG.autoSwapLayout),
|
2018-04-10 02:48:21 +08:00
|
|
|
tracker: new Tracker.Dependency(),
|
|
|
|
};
|
|
|
|
|
2021-09-03 02:29:35 +08:00
|
|
|
const setSwapLayout = (layoutContextDispatch) => {
|
2021-09-28 03:57:02 +08:00
|
|
|
const hidePresentation = getFromUserSettings('bbb_hide_presentation', LAYOUT_CONFIG.hidePresentation);
|
|
|
|
|
2022-03-01 01:04:21 +08:00
|
|
|
swapLayout.value = getFromUserSettings('bbb_auto_swap_layout', LAYOUT_CONFIG.autoSwapLayout) || hidePresentation;
|
2019-06-25 05:01:54 +08:00
|
|
|
swapLayout.tracker.changed();
|
2021-09-03 02:29:35 +08:00
|
|
|
|
2021-09-28 03:57:02 +08:00
|
|
|
if (!hidePresentation) {
|
|
|
|
layoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_PRESENTATION_IS_OPEN,
|
|
|
|
value: !swapLayout.value,
|
|
|
|
});
|
|
|
|
}
|
2019-06-25 05:01:54 +08:00
|
|
|
};
|
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
const toggleSwapLayout = (layoutContextDispatch) => {
|
2020-06-17 22:53:13 +08:00
|
|
|
window.dispatchEvent(new Event('togglePresentationHide'));
|
2018-04-10 02:48:21 +08:00
|
|
|
swapLayout.value = !swapLayout.value;
|
|
|
|
swapLayout.tracker.changed();
|
2021-07-17 02:42:16 +08:00
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-07-17 02:42:16 +08:00
|
|
|
type: ACTIONS.SET_PRESENTATION_IS_OPEN,
|
|
|
|
value: !swapLayout.value,
|
|
|
|
});
|
2018-04-10 02:48:21 +08:00
|
|
|
};
|
|
|
|
|
2021-10-15 03:31:47 +08:00
|
|
|
export const shouldEnableSwapLayout = () => {
|
|
|
|
if (!PRESENTATION_CONFIG.oldMinimizeButton) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return !shouldShowScreenshare() && !shouldShowExternalVideo();
|
2022-03-01 01:04:21 +08:00
|
|
|
};
|
2021-10-15 03:31:47 +08:00
|
|
|
|
2018-04-10 02:48:21 +08:00
|
|
|
export const getSwapLayout = () => {
|
|
|
|
swapLayout.tracker.depend();
|
2019-06-25 05:01:54 +08:00
|
|
|
return swapLayout.value;
|
2018-04-10 02:48:21 +08:00
|
|
|
};
|
|
|
|
|
2016-05-31 06:07:02 +08:00
|
|
|
export default {
|
|
|
|
getPresentationInfo,
|
2016-09-15 04:25:31 +08:00
|
|
|
shouldShowWhiteboard,
|
2017-07-25 03:29:34 +08:00
|
|
|
shouldShowScreenshare,
|
2018-11-30 01:24:02 +08:00
|
|
|
shouldShowExternalVideo,
|
2016-09-15 04:25:31 +08:00
|
|
|
shouldShowOverlay,
|
2018-03-09 19:20:08 +08:00
|
|
|
isVideoBroadcasting,
|
2018-04-10 02:48:21 +08:00
|
|
|
toggleSwapLayout,
|
2021-10-15 03:31:47 +08:00
|
|
|
shouldEnableSwapLayout,
|
2018-12-12 00:28:37 +08:00
|
|
|
getSwapLayout,
|
2019-06-25 05:01:54 +08:00
|
|
|
setSwapLayout,
|
2016-05-31 06:07:02 +08:00
|
|
|
};
|