2022-02-19 04:45:16 +08:00
|
|
|
import React from 'react';
|
2023-09-20 04:34:14 +08:00
|
|
|
import { useContext } from 'react';
|
2023-03-10 19:30:46 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2022-02-19 04:45:16 +08:00
|
|
|
import PresentationMenu from './component';
|
|
|
|
import FullscreenService from '/imports/ui/components/common/fullscreen-button/service';
|
|
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
import { layoutSelect, layoutDispatch } from '/imports/ui/components/layout/context';
|
2023-06-07 20:35:56 +08:00
|
|
|
import { isSnapshotOfCurrentSlideEnabled } from '/imports/ui/services/features';
|
2023-09-20 04:34:14 +08:00
|
|
|
import { PluginsContext } from '/imports/ui/components/components-data/plugin-context/context';
|
2023-10-11 22:21:35 +08:00
|
|
|
import { useSubscription } from '@apollo/client';
|
|
|
|
import {
|
|
|
|
CURRENT_PAGE_WRITERS_SUBSCRIPTION,
|
|
|
|
} from '/imports/ui/components/whiteboard/queries';
|
2023-10-13 02:05:49 +08:00
|
|
|
import useMeeting from '/imports/ui/core/hooks/useMeeting';
|
2022-02-19 04:45:16 +08:00
|
|
|
|
|
|
|
const PresentationMenuContainer = (props) => {
|
|
|
|
const fullscreen = layoutSelect((i) => i.fullscreen);
|
|
|
|
const { element: currentElement, group: currentGroup } = fullscreen;
|
|
|
|
const layoutContextDispatch = layoutDispatch();
|
2022-03-26 00:38:57 +08:00
|
|
|
const { elementId } = props;
|
|
|
|
const isFullscreen = currentElement === elementId;
|
2022-06-17 00:32:27 +08:00
|
|
|
const isRTL = layoutSelect((i) => i.isRTL);
|
2023-09-20 04:34:14 +08:00
|
|
|
const { pluginsProvidedAggregatedState } = useContext(PluginsContext);
|
|
|
|
let presentationDropdownItems = [];
|
|
|
|
if (pluginsProvidedAggregatedState.presentationDropdownItems) {
|
|
|
|
presentationDropdownItems = [
|
|
|
|
...pluginsProvidedAggregatedState.presentationDropdownItems,
|
|
|
|
];
|
|
|
|
}
|
2022-02-19 04:45:16 +08:00
|
|
|
|
2023-10-11 22:21:35 +08:00
|
|
|
const { data: whiteboardWritersData } = useSubscription(CURRENT_PAGE_WRITERS_SUBSCRIPTION);
|
|
|
|
const whiteboardWriters = whiteboardWritersData?.pres_page_writers || [];
|
|
|
|
const hasWBAccess = whiteboardWriters?.some((writer) => writer.userId === Auth.userID);
|
|
|
|
|
2023-10-13 02:05:49 +08:00
|
|
|
const meetingInfo = useMeeting((meeting) => ({
|
|
|
|
name: meeting?.name,
|
|
|
|
}));
|
|
|
|
|
|
|
|
const handleToggleFullscreen = (ref) => FullscreenService.toggleFullScreen(ref);
|
|
|
|
const isIphone = !!(navigator.userAgent.match(/iPhone/i));
|
|
|
|
|
2022-02-19 04:45:16 +08:00
|
|
|
return (
|
|
|
|
<PresentationMenu
|
|
|
|
{...props}
|
|
|
|
{...{
|
|
|
|
currentElement,
|
|
|
|
currentGroup,
|
2022-03-26 00:38:57 +08:00
|
|
|
isFullscreen,
|
2022-02-19 04:45:16 +08:00
|
|
|
layoutContextDispatch,
|
2022-06-17 00:32:27 +08:00
|
|
|
isRTL,
|
2023-09-20 04:34:14 +08:00
|
|
|
presentationDropdownItems,
|
2023-10-11 22:21:35 +08:00
|
|
|
hasWBAccess,
|
2023-10-13 02:05:49 +08:00
|
|
|
meetingName: meetingInfo?.name,
|
|
|
|
handleToggleFullscreen,
|
|
|
|
isIphone,
|
|
|
|
allowSnapshotOfCurrentSlide: isSnapshotOfCurrentSlideEnabled(),
|
2022-02-19 04:45:16 +08:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-10-13 02:05:49 +08:00
|
|
|
export default PresentationMenuContainer;
|
2023-03-10 19:30:46 +08:00
|
|
|
|
|
|
|
PresentationMenuContainer.propTypes = {
|
|
|
|
elementId: PropTypes.string.isRequired,
|
|
|
|
};
|