import Presentations from '/imports/api/presentations'; import { isVideoBroadcasting } from '/imports/ui/components/screenshare/service'; import { getVideoUrl } from '/imports/ui/components/external-video-player/service'; import Auth from '/imports/ui/services/auth'; import Users from '/imports/api/users'; import Settings from '/imports/ui/services/settings'; import getFromUserSettings from '/imports/ui/services/users-settings'; import { ACTIONS } from '../layout/enums'; const LAYOUT_CONFIG = Meteor.settings.public.layout; const KURENTO_CONFIG = Meteor.settings.public.kurento; const getPresentationInfo = () => { const currentPresentation = Presentations.findOne({ current: true, }); return { current_presentation: (currentPresentation != null), }; }; const isUserPresenter = () => Users.findOne({ userId: Auth.userID }, { fields: { presenter: 1 } }).presenter; function shouldShowWhiteboard() { return true; } function shouldShowScreenshare() { const { viewScreenshare } = Settings.dataSaving; const enableScreensharing = getFromUserSettings('bbb_enable_screen_sharing', KURENTO_CONFIG.enableScreensharing); return enableScreensharing && viewScreenshare && isVideoBroadcasting(); } function shouldShowExternalVideo() { const { enabled: enableExternalVideo } = Meteor.settings.public.externalVideoPlayer; return enableExternalVideo && getVideoUrl(); } function shouldShowOverlay() { return getFromUserSettings('bbb_enable_video', KURENTO_CONFIG.enableVideo); } const swapLayout = { value: getFromUserSettings('bbb_auto_swap_layout', LAYOUT_CONFIG.autoSwapLayout), tracker: new Tracker.Dependency(), }; const setSwapLayout = (layoutContextDispatch) => { const hidePresentation = getFromUserSettings('bbb_hide_presentation', LAYOUT_CONFIG.hidePresentation); swapLayout.value = getFromUserSettings('bbb_auto_swap_layout', LAYOUT_CONFIG.autoSwapLayout); swapLayout.tracker.changed(); if (!hidePresentation) { layoutContextDispatch({ type: ACTIONS.SET_PRESENTATION_IS_OPEN, value: !swapLayout.value, }); } }; const toggleSwapLayout = (layoutContextDispatch) => { window.dispatchEvent(new Event('togglePresentationHide')); swapLayout.value = !swapLayout.value; swapLayout.tracker.changed(); layoutContextDispatch({ type: ACTIONS.SET_PRESENTATION_IS_OPEN, value: !swapLayout.value, }); }; export const getSwapLayout = () => { swapLayout.tracker.depend(); return swapLayout.value; }; export default { getPresentationInfo, shouldShowWhiteboard, shouldShowScreenshare, shouldShowExternalVideo, shouldShowOverlay, isUserPresenter, isVideoBroadcasting, toggleSwapLayout, getSwapLayout, setSwapLayout, };