2021-11-23 21:40:23 +08:00
|
|
|
import React, { useContext } from 'react';
|
2017-06-04 10:40:14 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2024-06-04 21:40:54 +08:00
|
|
|
import { useMutation } from '@apollo/client';
|
2022-02-15 22:42:02 +08:00
|
|
|
import FullscreenService from '/imports/ui/components/common/fullscreen-button/service';
|
2024-05-16 22:43:23 +08:00
|
|
|
import { useIsPollingEnabled } from '/imports/ui/services/features';
|
2023-08-16 06:31:11 +08:00
|
|
|
import { PluginsContext } from '/imports/ui/components/components-data/plugin-context/context';
|
2023-10-13 02:21:22 +08:00
|
|
|
import POLL_SUBSCRIPTION from '/imports/ui/core/graphql/queries/pollSubscription';
|
2023-12-11 21:31:13 +08:00
|
|
|
import { POLL_CANCEL, POLL_CREATE } from '/imports/ui/components/poll/mutations';
|
2024-01-20 22:01:20 +08:00
|
|
|
import { PRESENTATION_SET_PAGE } from '../mutations';
|
2024-05-17 04:03:36 +08:00
|
|
|
import PresentationToolbar from './component';
|
2024-06-06 21:50:03 +08:00
|
|
|
import Session from '/imports/ui/services/storage/in-memory';
|
2024-06-04 21:40:54 +08:00
|
|
|
import useDeduplicatedSubscription from '/imports/ui/core/hooks/useDeduplicatedSubscription';
|
2020-01-11 03:00:06 +08:00
|
|
|
|
2017-09-26 07:45:44 +08:00
|
|
|
const PresentationToolbarContainer = (props) => {
|
2023-08-16 06:31:11 +08:00
|
|
|
const pluginsContext = useContext(PluginsContext);
|
2023-11-29 02:31:28 +08:00
|
|
|
const { pluginsExtensibleAreasAggregatedState } = pluginsContext;
|
2021-11-23 21:40:23 +08:00
|
|
|
|
2024-01-20 22:01:20 +08:00
|
|
|
const {
|
|
|
|
userIsPresenter,
|
|
|
|
layoutSwapped,
|
|
|
|
currentSlideNum,
|
|
|
|
presentationId,
|
2024-05-16 23:40:12 +08:00
|
|
|
numberOfSlides,
|
2024-01-20 22:01:20 +08:00
|
|
|
} = props;
|
2016-08-03 06:55:20 +08:00
|
|
|
|
2024-06-04 21:40:54 +08:00
|
|
|
const { data: pollData } = useDeduplicatedSubscription(POLL_SUBSCRIPTION);
|
2023-10-13 02:21:22 +08:00
|
|
|
const hasPoll = pollData?.poll?.length > 0;
|
|
|
|
|
2022-02-04 21:57:54 +08:00
|
|
|
const handleToggleFullScreen = (ref) => FullscreenService.toggleFullScreen(ref);
|
|
|
|
|
2023-12-09 04:24:57 +08:00
|
|
|
const [stopPoll] = useMutation(POLL_CANCEL);
|
2023-12-11 21:31:13 +08:00
|
|
|
const [createPoll] = useMutation(POLL_CREATE);
|
2024-01-20 22:01:20 +08:00
|
|
|
const [presentationSetPage] = useMutation(PRESENTATION_SET_PAGE);
|
2023-12-09 04:24:57 +08:00
|
|
|
|
2023-03-16 02:06:59 +08:00
|
|
|
const endCurrentPoll = () => {
|
2023-12-09 04:24:57 +08:00
|
|
|
if (hasPoll) stopPoll();
|
2023-03-16 02:24:34 +08:00
|
|
|
};
|
2023-03-16 02:06:59 +08:00
|
|
|
|
2024-01-20 22:01:20 +08:00
|
|
|
const setPresentationPage = (pageId) => {
|
|
|
|
presentationSetPage({
|
|
|
|
variables: {
|
|
|
|
presentationId,
|
|
|
|
pageId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const skipToSlide = (slideNum) => {
|
|
|
|
const slideId = `${presentationId}/${slideNum}`;
|
|
|
|
setPresentationPage(slideId);
|
|
|
|
};
|
|
|
|
|
|
|
|
const previousSlide = () => {
|
|
|
|
const prevSlideNum = currentSlideNum - 1;
|
2024-05-16 23:40:12 +08:00
|
|
|
if (prevSlideNum < 1) {
|
|
|
|
return;
|
|
|
|
}
|
2024-01-20 22:01:20 +08:00
|
|
|
skipToSlide(prevSlideNum);
|
|
|
|
};
|
|
|
|
|
|
|
|
const nextSlide = () => {
|
|
|
|
const nextSlideNum = currentSlideNum + 1;
|
2024-05-16 23:40:12 +08:00
|
|
|
if (nextSlideNum > numberOfSlides) {
|
|
|
|
return;
|
|
|
|
}
|
2024-01-20 22:01:20 +08:00
|
|
|
skipToSlide(nextSlideNum);
|
|
|
|
};
|
|
|
|
|
2023-12-11 21:31:13 +08:00
|
|
|
const startPoll = (pollType, pollId, answers = [], question, isMultipleResponse = false) => {
|
2024-06-06 21:50:03 +08:00
|
|
|
Session.setItem('openPanel', 'poll');
|
|
|
|
Session.setItem('forcePollOpen', true);
|
2023-12-11 21:31:13 +08:00
|
|
|
window.dispatchEvent(new Event('panelChanged'));
|
|
|
|
|
|
|
|
createPoll({
|
|
|
|
variables: {
|
|
|
|
pollType,
|
|
|
|
pollId: `${pollId}/${new Date().getTime()}`,
|
|
|
|
secretPoll: false,
|
|
|
|
question,
|
|
|
|
isMultipleResponse,
|
|
|
|
answers,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-05-16 22:43:23 +08:00
|
|
|
const isPollingEnabled = useIsPollingEnabled();
|
|
|
|
|
2019-08-14 01:41:47 +08:00
|
|
|
if (userIsPresenter && !layoutSwapped) {
|
2018-12-12 00:28:37 +08:00
|
|
|
// Only show controls if user is presenter and layout isn't swapped
|
|
|
|
|
2023-11-29 02:31:28 +08:00
|
|
|
const pluginProvidedPresentationToolbarItems = pluginsExtensibleAreasAggregatedState
|
2023-08-16 06:31:11 +08:00
|
|
|
?.presentationToolbarItems;
|
|
|
|
|
2017-08-21 08:16:39 +08:00
|
|
|
return (
|
|
|
|
<PresentationToolbar
|
2019-07-18 08:30:28 +08:00
|
|
|
{...props}
|
2021-11-24 00:04:45 +08:00
|
|
|
amIPresenter={userIsPresenter}
|
2023-03-16 02:06:59 +08:00
|
|
|
endCurrentPoll={endCurrentPoll}
|
2024-05-16 22:43:23 +08:00
|
|
|
isPollingEnabled={isPollingEnabled}
|
|
|
|
// TODO: Remove this
|
|
|
|
isMeteorConnected
|
2022-02-04 21:57:54 +08:00
|
|
|
{...{
|
2023-08-16 06:31:11 +08:00
|
|
|
pluginProvidedPresentationToolbarItems,
|
2022-02-04 21:57:54 +08:00
|
|
|
handleToggleFullScreen,
|
2023-12-11 21:31:13 +08:00
|
|
|
startPoll,
|
2024-01-20 22:01:20 +08:00
|
|
|
previousSlide,
|
|
|
|
nextSlide,
|
|
|
|
skipToSlide,
|
2022-02-04 21:57:54 +08:00
|
|
|
}}
|
2017-08-21 08:16:39 +08:00
|
|
|
/>
|
|
|
|
);
|
2016-08-03 06:55:20 +08:00
|
|
|
}
|
2017-08-21 08:16:39 +08:00
|
|
|
return null;
|
|
|
|
};
|
2016-08-03 06:55:20 +08:00
|
|
|
|
2024-05-16 22:43:23 +08:00
|
|
|
export default PresentationToolbarContainer;
|
2016-08-03 06:55:20 +08:00
|
|
|
|
2017-08-21 08:16:39 +08:00
|
|
|
PresentationToolbarContainer.propTypes = {
|
|
|
|
// Number of current slide being displayed
|
|
|
|
currentSlideNum: PropTypes.number.isRequired,
|
|
|
|
|
|
|
|
// Total number of slides in this presentation
|
|
|
|
numberOfSlides: PropTypes.number.isRequired,
|
|
|
|
|
|
|
|
// Actions required for the presenter toolbar
|
2023-03-10 19:30:46 +08:00
|
|
|
layoutSwapped: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
PresentationToolbarContainer.defaultProps = {
|
|
|
|
layoutSwapped: false,
|
2017-08-21 08:16:39 +08:00
|
|
|
};
|