bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/container.jsx

137 lines
5.1 KiB
React
Raw Normal View History

import React, { useContext } from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import MediaService, { getSwapLayout, shouldEnableSwapLayout } from '/imports/ui/components/media/service';
import { notify } from '/imports/ui/services/notification';
2021-05-18 04:25:07 +08:00
import { Session } from 'meteor/session';
2021-06-09 21:49:59 +08:00
import PresentationService from './service';
2020-04-08 05:19:16 +08:00
import { Slides } from '/imports/api/slides';
2021-06-09 21:49:59 +08:00
import Presentation from '/imports/ui/components/presentation/component';
import PresentationToolbarService from './presentation-toolbar/service';
import { UsersContext } from '../components-data/users-context/context';
import Auth from '/imports/ui/services/auth';
import Meetings from '/imports/api/meetings';
import getFromUserSettings from '/imports/ui/services/users-settings';
2021-05-18 04:25:07 +08:00
import { NLayoutContext } from '../layout/context/context';
import WhiteboardService from '/imports/ui/components/whiteboard/service';
import { DEVICE_TYPE } from '../layout/enums';
const ROLE_VIEWER = Meteor.settings.public.user.role_viewer;
2021-06-09 21:49:59 +08:00
const PresentationContainer = ({ presentationPodIds, mountPresentation, ...props }) => {
2021-07-06 19:28:17 +08:00
const fullscreenElementId = 'Presentation';
2021-05-18 04:25:07 +08:00
const newLayoutContext = useContext(NLayoutContext);
const { newLayoutContextState, newLayoutContextDispatch } = newLayoutContext;
const { output, layoutLoaded, layoutType, fullscreen, deviceType } = newLayoutContextState;
const { presentation } = output;
const { element } = fullscreen;
2021-07-06 19:28:17 +08:00
const fullscreenContext = (element === fullscreenElementId);
const { layoutSwapped, podId } = props;
const usingUsersContext = useContext(UsersContext);
const { users } = usingUsersContext;
2021-04-15 20:12:21 +08:00
const currentUser = users[Auth.meetingID][Auth.userID];
const userIsPresenter = (podId === 'DEFAULT_PRESENTATION_POD') ? currentUser.presenter : props.isPresenter;
2021-06-09 21:49:59 +08:00
return mountPresentation
&& (
2021-06-09 21:49:59 +08:00
<Presentation
{
...{
2021-05-18 04:25:07 +08:00
newLayoutContextDispatch,
...props,
isViewer: currentUser.role === ROLE_VIEWER,
userIsPresenter: userIsPresenter && !layoutSwapped,
presentationBounds: presentation,
layoutLoaded,
layoutType,
fullscreenContext,
2021-07-06 19:28:17 +08:00
fullscreenElementId,
isMobile: deviceType === DEVICE_TYPE.MOBILE
}
}
/>
);
};
2020-04-08 05:19:16 +08:00
const APP_CONFIG = Meteor.settings.public.app;
const PRELOAD_NEXT_SLIDE = APP_CONFIG.preloadNextSlides;
const fetchedpresentation = {};
2018-07-27 03:35:38 +08:00
export default withTracker(({ podId }) => {
2021-06-09 21:49:59 +08:00
const currentSlide = PresentationService.getCurrentSlide(podId);
const presentationIsDownloadable = PresentationService.isPresentationDownloadable(podId);
const layoutSwapped = getSwapLayout() && shouldEnableSwapLayout();
2019-08-02 01:50:39 +08:00
let slidePosition;
if (currentSlide) {
const {
presentationId,
id: slideId,
} = currentSlide;
2021-06-09 21:49:59 +08:00
slidePosition = PresentationService.getSlidePosition(podId, presentationId, slideId);
2020-04-08 05:24:09 +08:00
if (PRELOAD_NEXT_SLIDE && !fetchedpresentation[presentationId]) {
2020-04-08 05:19:16 +08:00
fetchedpresentation[presentationId] = {
canFetch: true,
2020-04-08 05:19:16 +08:00
fetchedSlide: {},
};
}
const currentSlideNum = currentSlide.num;
const presentation = fetchedpresentation[presentationId];
2021-05-18 04:25:07 +08:00
if (PRELOAD_NEXT_SLIDE
&& !presentation.fetchedSlide[currentSlide.num + PRELOAD_NEXT_SLIDE]
&& presentation.canFetch) {
2020-04-08 05:19:16 +08:00
const slidesToFetch = Slides.find({
podId,
presentationId,
num: {
$in: Array(PRELOAD_NEXT_SLIDE).fill(1).map((v, idx) => currentSlideNum + (idx + 1)),
},
}).fetch();
const promiseImageGet = slidesToFetch
2021-05-18 04:25:07 +08:00
.filter((s) => !fetchedpresentation[presentationId].fetchedSlide[s.num])
2020-04-08 05:19:16 +08:00
.map(async (slide) => {
if (presentation.canFetch) presentation.canFetch = false;
2020-04-08 05:19:16 +08:00
const image = await fetch(slide.imageUri);
if (image.ok) {
presentation.fetchedSlide[slide.num] = true;
}
});
2021-05-18 04:25:07 +08:00
Promise.all(promiseImageGet).then(() => {
presentation.canFetch = true;
});
2020-04-08 05:19:16 +08:00
}
}
2021-05-18 04:25:07 +08:00
const layoutManagerLoaded = Session.get('layoutManagerLoaded');
2018-07-27 03:35:38 +08:00
return {
currentSlide,
slidePosition,
2021-06-09 21:49:59 +08:00
downloadPresentationUri: PresentationService.downloadPresentationUri(podId),
isPresenter: PresentationService.isPresenter(podId),
multiUser: WhiteboardService.hasMultiUserAccess(currentSlide && currentSlide.id, Auth.userID)
&& !layoutSwapped,
presentationIsDownloadable,
2021-06-09 21:49:59 +08:00
mountPresentation: !!currentSlide,
currentPresentation: PresentationService.getCurrentPresentation(podId),
notify,
zoomSlide: PresentationToolbarService.zoomSlide,
podId,
layoutSwapped,
toggleSwapLayout: MediaService.toggleSwapLayout,
publishedPoll: Meetings.findOne({ meetingId: Auth.meetingID }, {
fields: {
publishedPoll: 1,
},
}).publishedPoll,
currentPresentationId: Session.get('currentPresentationId') || null,
restoreOnUpdate: getFromUserSettings(
'bbb_force_restore_presentation_on_new_events',
Meteor.settings.public.presentation.restoreOnUpdate,
),
2021-05-18 04:25:07 +08:00
layoutManagerLoaded,
2018-07-27 03:35:38 +08:00
};
2021-06-09 21:49:59 +08:00
})(PresentationContainer);