71 lines
2.3 KiB
JavaScript
Executable File
71 lines
2.3 KiB
JavaScript
Executable File
import { isScreenBroadcasting, isCameraAsContentBroadcasting } from '/imports/ui/components/screenshare/service';
|
|
import Settings from '/imports/ui/services/settings';
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
|
import {
|
|
isScreenSharingEnabled, isCameraAsContentEnabled, isPresentationEnabled,
|
|
} from '/imports/ui/services/features';
|
|
import { ACTIONS } from '../layout/enums';
|
|
import UserService from '/imports/ui/components/user-list/service';
|
|
import VideoStreams from '/imports/api/video-streams';
|
|
import Auth from '/imports/ui/services/auth/index';
|
|
|
|
const LAYOUT_CONFIG = window.meetingClientSettings.public.layout;
|
|
const KURENTO_CONFIG = window.meetingClientSettings.public.kurento;
|
|
const PRESENTATION_CONFIG = window.meetingClientSettings.public.presentation;
|
|
|
|
function shouldShowWhiteboard() {
|
|
return true;
|
|
}
|
|
|
|
function shouldShowScreenshare() {
|
|
const { viewScreenshare } = Settings.dataSaving;
|
|
return (isScreenSharingEnabled() || isCameraAsContentEnabled())
|
|
&& (viewScreenshare || UserService.isUserPresenter())
|
|
&& (isScreenBroadcasting() || isCameraAsContentBroadcasting());
|
|
}
|
|
|
|
function shouldShowOverlay() {
|
|
return getFromUserSettings('bbb_enable_video', KURENTO_CONFIG.enableVideo);
|
|
}
|
|
|
|
const setPresentationIsOpen = (layoutContextDispatch, value) => {
|
|
layoutContextDispatch({
|
|
type: ACTIONS.SET_PRESENTATION_IS_OPEN,
|
|
value,
|
|
});
|
|
};
|
|
|
|
const isThereWebcamOn = (meetingID) => {
|
|
return VideoStreams.find({
|
|
meetingId: meetingID
|
|
}).count() > 0;
|
|
}
|
|
|
|
const buildLayoutWhenPresentationAreaIsDisabled = (
|
|
layoutContextDispatch,
|
|
isSharingVideo,
|
|
isSharedNotesPinned,
|
|
) => {
|
|
const hasScreenshare = isScreenSharingEnabled();
|
|
const isThereWebcam = isThereWebcamOn(Auth.meetingID);
|
|
const isGeneralMediaOff = !hasScreenshare && !isSharedNotesPinned && !isSharingVideo
|
|
const webcamIsOnlyContent = isThereWebcam && isGeneralMediaOff;
|
|
const isThereNoMedia = !isThereWebcam && isGeneralMediaOff;
|
|
const isPresentationDisabled = !isPresentationEnabled();
|
|
|
|
if (isPresentationDisabled && (webcamIsOnlyContent || isThereNoMedia)) {
|
|
setPresentationIsOpen(layoutContextDispatch, false);
|
|
}
|
|
|
|
}
|
|
|
|
export default {
|
|
buildLayoutWhenPresentationAreaIsDisabled,
|
|
shouldShowWhiteboard,
|
|
shouldShowScreenshare,
|
|
shouldShowOverlay,
|
|
isScreenBroadcasting,
|
|
isCameraAsContentBroadcasting,
|
|
setPresentationIsOpen,
|
|
};
|