241 lines
8.0 KiB
JavaScript
Executable File
241 lines
8.0 KiB
JavaScript
Executable File
import React, { useEffect } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { notify } from '/imports/ui/services/notification';
|
|
import Presentation from '/imports/ui/components/presentation/component';
|
|
import Auth from '/imports/ui/services/auth';
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
|
import {
|
|
layoutSelect,
|
|
layoutSelectInput,
|
|
layoutSelectOutput,
|
|
layoutDispatch,
|
|
} from '../layout/context';
|
|
import { DEVICE_TYPE } from '../layout/enums';
|
|
import MediaService from '../media/service';
|
|
import { useSubscription, useMutation, useLazyQuery } from '@apollo/client';
|
|
import {
|
|
CURRENT_PRESENTATION_PAGE_SUBSCRIPTION,
|
|
CURRENT_PAGE_WRITERS_SUBSCRIPTION,
|
|
} from '/imports/ui/components/whiteboard/queries';
|
|
import POLL_SUBSCRIPTION from '/imports/ui/core/graphql/queries/pollSubscription';
|
|
import useMeeting from '/imports/ui/core/hooks/useMeeting';
|
|
import useCurrentUser from '/imports/ui/core/hooks/useCurrentUser';
|
|
import { PRESENTATION_SET_ZOOM, PRESENTATION_SET_WRITERS } from './mutations';
|
|
import { GET_USER_IDS } from '/imports/ui/core/graphql/queries/users';
|
|
|
|
const APP_CONFIG = Meteor.settings.public.app;
|
|
const PRELOAD_NEXT_SLIDE = APP_CONFIG.preloadNextSlides;
|
|
const fetchedpresentation = {};
|
|
|
|
const PresentationContainer = (props) => {
|
|
const { data: presentationPageData } = useSubscription(CURRENT_PRESENTATION_PAGE_SUBSCRIPTION);
|
|
const { pres_page_curr: presentationPageArray } = (presentationPageData || {});
|
|
const currentPresentationPage = presentationPageArray && presentationPageArray[0];
|
|
const slideSvgUrl = currentPresentationPage && currentPresentationPage.svgUrl;
|
|
|
|
const { data: whiteboardWritersData } = useSubscription(CURRENT_PAGE_WRITERS_SUBSCRIPTION, {
|
|
variables: { pageId: currentPresentationPage?.pageId },
|
|
skip: !currentPresentationPage?.pageId,
|
|
});
|
|
|
|
const whiteboardWriters = whiteboardWritersData?.pres_page_writers || [];
|
|
|
|
const [presentationSetZoom] = useMutation(PRESENTATION_SET_ZOOM);
|
|
const [presentationSetWriters] = useMutation(PRESENTATION_SET_WRITERS);
|
|
|
|
const [getUsers, { data: usersData }] = useLazyQuery(GET_USER_IDS, { fetchPolicy: 'no-cache' });
|
|
const users = usersData?.user || [];
|
|
|
|
const addWhiteboardGlobalAccess = () => {
|
|
const usersIds = users.map((user) => user.userId);
|
|
const { pageId } = currentPresentationPage;
|
|
|
|
presentationSetWriters({
|
|
variables: {
|
|
pageId,
|
|
usersIds,
|
|
},
|
|
});
|
|
};
|
|
|
|
// users will only be fetched when getUsers is called
|
|
useEffect(() => {
|
|
if (users.length > 0) {
|
|
addWhiteboardGlobalAccess();
|
|
}
|
|
}, [users]);
|
|
|
|
const removeWhiteboardGlobalAccess = () => {
|
|
const { pageId } = currentPresentationPage;
|
|
|
|
presentationSetWriters({
|
|
variables: {
|
|
pageId,
|
|
usersIds: [],
|
|
},
|
|
});
|
|
};
|
|
|
|
const zoomSlide = (widthRatio, heightRatio, xOffset, yOffset) => {
|
|
const { presentationId, pageId, num } = currentPresentationPage;
|
|
|
|
presentationSetZoom({
|
|
variables: {
|
|
presentationId,
|
|
pageId,
|
|
pageNum: num,
|
|
xOffset,
|
|
yOffset,
|
|
widthRatio,
|
|
heightRatio,
|
|
},
|
|
});
|
|
};
|
|
|
|
const meeting = useMeeting((m) => ({
|
|
lockSettings: m?.lockSettings,
|
|
}));
|
|
|
|
const isViewersAnnotationsLocked = meeting ? meeting.lockSettings?.hideViewersAnnotation : true;
|
|
|
|
const multiUserData = {
|
|
active: whiteboardWriters?.length > 0,
|
|
size: whiteboardWriters?.length || 0,
|
|
hasAccess: whiteboardWriters?.some((writer) => writer.userId === Auth.userID),
|
|
};
|
|
|
|
const { data: pollData } = useSubscription(POLL_SUBSCRIPTION);
|
|
const poll = pollData?.poll[0] || {};
|
|
|
|
const currentSlide = currentPresentationPage ? {
|
|
content: currentPresentationPage.content,
|
|
current: currentPresentationPage.isCurrentPage,
|
|
height: currentPresentationPage.height,
|
|
width: currentPresentationPage.width,
|
|
id: currentPresentationPage.pageId,
|
|
imageUri: slideSvgUrl,
|
|
num: currentPresentationPage?.num,
|
|
presentationId: currentPresentationPage?.presentationId,
|
|
svgUri: slideSvgUrl,
|
|
} : null;
|
|
|
|
let slidePosition;
|
|
if (currentSlide) {
|
|
const { presentationId } = currentSlide;
|
|
|
|
slidePosition = {
|
|
height: currentPresentationPage.scaledHeight,
|
|
id: currentPresentationPage.pageId,
|
|
presentationId: currentPresentationPage.presentationId,
|
|
viewBoxHeight: currentPresentationPage.scaledViewBoxHeight,
|
|
viewBoxWidth: currentPresentationPage.scaledViewBoxWidth,
|
|
width: currentPresentationPage.scaledWidth,
|
|
x: currentPresentationPage.xOffset,
|
|
y: currentPresentationPage.yOffset,
|
|
};
|
|
|
|
if (PRELOAD_NEXT_SLIDE && !fetchedpresentation[presentationId]) {
|
|
fetchedpresentation[presentationId] = {
|
|
canFetch: true,
|
|
fetchedSlide: {},
|
|
};
|
|
}
|
|
const presentation = fetchedpresentation[presentationId];
|
|
|
|
if (PRELOAD_NEXT_SLIDE
|
|
&& !presentation.fetchedSlide[currentSlide.num + PRELOAD_NEXT_SLIDE]
|
|
&& presentation.canFetch) {
|
|
// TODO: preload next slides should be reimplemented in graphql
|
|
const slidesToFetch = [currentPresentationPage];
|
|
|
|
const promiseImageGet = slidesToFetch
|
|
.filter((s) => !fetchedpresentation[presentationId].fetchedSlide[s.num])
|
|
.map(async (slide) => {
|
|
if (presentation.canFetch) presentation.canFetch = false;
|
|
const image = await fetch(slide.svgUrl);
|
|
if (image.ok) {
|
|
presentation.fetchedSlide[slide.num] = true;
|
|
}
|
|
});
|
|
Promise.all(promiseImageGet).then(() => {
|
|
presentation.canFetch = true;
|
|
});
|
|
}
|
|
}
|
|
|
|
const { presentationIsOpen } = props;
|
|
|
|
const cameraDock = layoutSelectInput((i) => i.cameraDock);
|
|
const presentation = layoutSelectOutput((i) => i.presentation);
|
|
const fullscreen = layoutSelect((i) => i.fullscreen);
|
|
const deviceType = layoutSelect((i) => i.deviceType);
|
|
const layoutContextDispatch = layoutDispatch();
|
|
|
|
const { numCameras } = cameraDock;
|
|
const { element } = fullscreen;
|
|
const fullscreenElementId = 'Presentation';
|
|
const fullscreenContext = (element === fullscreenElementId);
|
|
|
|
const isIphone = !!(navigator.userAgent.match(/iPhone/i));
|
|
|
|
const { data: currentUser } = useCurrentUser((user) => ({
|
|
presenter: user.presenter,
|
|
userId: user.userId,
|
|
isModerator: user.isModerator,
|
|
}));
|
|
const userIsPresenter = currentUser?.presenter;
|
|
|
|
const presentationAreaSize = {
|
|
presentationAreaWidth: presentation?.width,
|
|
presentationAreaHeight: presentation?.height,
|
|
};
|
|
|
|
return (
|
|
<Presentation
|
|
{
|
|
...{
|
|
layoutContextDispatch,
|
|
numCameras,
|
|
...props,
|
|
userIsPresenter,
|
|
presentationBounds: presentation,
|
|
fullscreenContext,
|
|
fullscreenElementId,
|
|
isMobile: deviceType === DEVICE_TYPE.MOBILE,
|
|
isIphone,
|
|
currentSlide,
|
|
slidePosition,
|
|
downloadPresentationUri: `${APP_CONFIG.bbbWebBase}/${currentPresentationPage?.downloadFileUri}`,
|
|
multiUser: (multiUserData.hasAccess || multiUserData.active) && presentationIsOpen,
|
|
presentationIsDownloadable: currentPresentationPage?.downloadable,
|
|
mountPresentation: !!currentSlide,
|
|
currentPresentationId: currentPresentationPage?.presentationId,
|
|
totalPages: currentPresentationPage?.totalPages || 0,
|
|
notify,
|
|
zoomSlide,
|
|
publishedPoll: poll?.published || false,
|
|
restoreOnUpdate: getFromUserSettings(
|
|
'bbb_force_restore_presentation_on_new_events',
|
|
Meteor.settings.public.presentation.restoreOnUpdate,
|
|
),
|
|
addWhiteboardGlobalAccess: getUsers,
|
|
removeWhiteboardGlobalAccess,
|
|
multiUserSize: multiUserData.size,
|
|
isViewersAnnotationsLocked,
|
|
setPresentationIsOpen: MediaService.setPresentationIsOpen,
|
|
isDefaultPresentation: currentPresentationPage?.isDefaultPresentation,
|
|
presentationName: currentPresentationPage?.presentationName,
|
|
presentationAreaSize,
|
|
currentUser,
|
|
}
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default PresentationContainer;
|
|
|
|
PresentationContainer.propTypes = {
|
|
presentationIsOpen: PropTypes.bool.isRequired,
|
|
};
|