2022-02-19 04:45:16 +08:00
|
|
|
import React, { useState, useEffect, useRef } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { toPng } from 'html-to-image';
|
|
|
|
import { toast } from 'react-toastify';
|
|
|
|
import logger from '/imports/startup/client/logger';
|
|
|
|
import Styled from './styles';
|
2023-03-10 19:30:46 +08:00
|
|
|
import BBBMenu from '/imports/ui/components/common/menu/component';
|
2022-02-19 04:45:16 +08:00
|
|
|
import TooltipContainer from '/imports/ui/components/common/tooltip/container';
|
|
|
|
import { ACTIONS } from '/imports/ui/components/layout/enums';
|
2022-03-03 01:09:56 +08:00
|
|
|
import browserInfo from '/imports/utils/browserInfo';
|
2023-03-21 03:28:57 +08:00
|
|
|
import AppService from '/imports/ui/components/app/service';
|
2022-02-19 04:45:16 +08:00
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
downloading: {
|
|
|
|
id: 'app.presentation.options.downloading',
|
|
|
|
description: 'Downloading label',
|
|
|
|
defaultMessage: 'Downloading...',
|
|
|
|
},
|
|
|
|
downloaded: {
|
|
|
|
id: 'app.presentation.options.downloaded',
|
|
|
|
description: 'Downloaded label',
|
|
|
|
defaultMessage: 'Current presentation was downloaded',
|
|
|
|
},
|
|
|
|
downloadFailed: {
|
|
|
|
id: 'app.presentation.options.downloadFailed',
|
|
|
|
description: 'Downloaded failed label',
|
|
|
|
defaultMessage: 'Could not download current presentation',
|
|
|
|
},
|
|
|
|
fullscreenLabel: {
|
|
|
|
id: 'app.presentation.options.fullscreen',
|
|
|
|
description: 'Fullscreen label',
|
|
|
|
defaultMessage: 'Fullscreen',
|
|
|
|
},
|
|
|
|
exitFullscreenLabel: {
|
|
|
|
id: 'app.presentation.options.exitFullscreen',
|
|
|
|
description: 'Exit fullscreen label',
|
|
|
|
defaultMessage: 'Exit fullscreen',
|
|
|
|
},
|
|
|
|
minimizePresentationLabel: {
|
|
|
|
id: 'app.presentation.options.minimize',
|
|
|
|
description: 'Minimize presentation label',
|
|
|
|
defaultMessage: 'Minimize',
|
|
|
|
},
|
|
|
|
optionsLabel: {
|
|
|
|
id: 'app.navBar.settingsDropdown.optionsLabel',
|
|
|
|
description: 'Options button label',
|
|
|
|
defaultMessage: 'Options',
|
|
|
|
},
|
|
|
|
snapshotLabel: {
|
|
|
|
id: 'app.presentation.options.snapshot',
|
2022-06-09 02:24:46 +08:00
|
|
|
description: 'Snapshot of current slide label',
|
|
|
|
defaultMessage: 'Snapshot of current slide',
|
2022-02-19 04:45:16 +08:00
|
|
|
},
|
2022-09-29 21:04:17 +08:00
|
|
|
whiteboardLabel: {
|
2023-03-10 19:30:46 +08:00
|
|
|
id: 'app.shortcut-help.whiteboard',
|
2022-09-29 21:04:17 +08:00
|
|
|
description: 'used for aria whiteboard options button label',
|
|
|
|
defaultMessage: 'Whiteboard',
|
2023-03-10 19:30:46 +08:00
|
|
|
},
|
2023-03-15 12:49:17 +08:00
|
|
|
hideToolsDesc: {
|
|
|
|
id: 'app.presentation.presentationToolbar.hideToolsDesc',
|
|
|
|
description: 'Hide toolbar label',
|
|
|
|
},
|
|
|
|
showToolsDesc: {
|
|
|
|
id: 'app.presentation.presentationToolbar.showToolsDesc',
|
|
|
|
description: 'Show toolbar label',
|
|
|
|
},
|
2022-02-19 04:45:16 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const propTypes = {
|
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
|
|
|
handleToggleFullscreen: PropTypes.func.isRequired,
|
|
|
|
isFullscreen: PropTypes.bool,
|
|
|
|
elementName: PropTypes.string,
|
|
|
|
fullscreenRef: PropTypes.instanceOf(Element),
|
|
|
|
meetingName: PropTypes.string,
|
|
|
|
isIphone: PropTypes.bool,
|
2023-03-10 19:30:46 +08:00
|
|
|
elementId: PropTypes.string,
|
|
|
|
elementGroup: PropTypes.string,
|
|
|
|
currentElement: PropTypes.string,
|
|
|
|
currentGroup: PropTypes.string,
|
|
|
|
layoutContextDispatch: PropTypes.func.isRequired,
|
|
|
|
isRTL: PropTypes.bool,
|
|
|
|
tldrawAPI: PropTypes.shape({
|
|
|
|
copySvg: PropTypes.func.isRequired,
|
|
|
|
getShapes: PropTypes.func.isRequired,
|
|
|
|
currentPageId: PropTypes.string.isRequired,
|
|
|
|
}),
|
2022-02-19 04:45:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
isIphone: false,
|
|
|
|
isFullscreen: false,
|
2023-03-10 19:30:46 +08:00
|
|
|
isRTL: false,
|
2022-02-19 04:45:16 +08:00
|
|
|
elementName: '',
|
|
|
|
meetingName: '',
|
|
|
|
fullscreenRef: null,
|
2023-03-10 19:30:46 +08:00
|
|
|
elementId: '',
|
|
|
|
elementGroup: '',
|
|
|
|
currentElement: '',
|
|
|
|
currentGroup: '',
|
|
|
|
tldrawAPI: null,
|
2022-02-19 04:45:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const PresentationMenu = (props) => {
|
|
|
|
const {
|
|
|
|
intl,
|
|
|
|
isFullscreen,
|
|
|
|
elementId,
|
|
|
|
elementName,
|
|
|
|
elementGroup,
|
|
|
|
currentElement,
|
|
|
|
currentGroup,
|
|
|
|
fullscreenRef,
|
2022-07-26 22:54:50 +08:00
|
|
|
tldrawAPI,
|
2022-02-19 04:45:16 +08:00
|
|
|
handleToggleFullscreen,
|
|
|
|
layoutContextDispatch,
|
|
|
|
meetingName,
|
|
|
|
isIphone,
|
2023-03-10 19:30:46 +08:00
|
|
|
isRTL,
|
2023-04-19 02:03:22 +08:00
|
|
|
isToolbarVisible,
|
|
|
|
setIsToolbarVisible,
|
2022-02-19 04:45:16 +08:00
|
|
|
} = props;
|
|
|
|
|
|
|
|
const [state, setState] = useState({
|
|
|
|
hasError: false,
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
|
|
|
const toastId = useRef(null);
|
|
|
|
const dropdownRef = useRef(null);
|
|
|
|
|
|
|
|
const formattedLabel = (fullscreen) => (fullscreen
|
|
|
|
? intl.formatMessage(intlMessages.exitFullscreenLabel)
|
|
|
|
: intl.formatMessage(intlMessages.fullscreenLabel)
|
|
|
|
);
|
2023-03-15 12:49:17 +08:00
|
|
|
|
|
|
|
const formattedVisibilityLabel = (visible) => (visible
|
|
|
|
? intl.formatMessage(intlMessages.hideToolsDesc)
|
|
|
|
: intl.formatMessage(intlMessages.showToolsDesc)
|
|
|
|
);
|
2022-02-19 04:45:16 +08:00
|
|
|
|
|
|
|
function renderToastContent() {
|
|
|
|
const { loading, hasError } = state;
|
|
|
|
|
|
|
|
let icon = loading ? 'blank' : 'check';
|
|
|
|
if (hasError) icon = 'circle_close';
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Styled.Line>
|
|
|
|
<Styled.ToastText>
|
|
|
|
<span>
|
|
|
|
{loading && !hasError && intl.formatMessage(intlMessages.downloading)}
|
|
|
|
{!loading && !hasError && intl.formatMessage(intlMessages.downloaded)}
|
|
|
|
{!loading && hasError && intl.formatMessage(intlMessages.downloadFailed)}
|
|
|
|
</span>
|
|
|
|
</Styled.ToastText>
|
|
|
|
<Styled.StatusIcon>
|
|
|
|
<Styled.ToastIcon
|
|
|
|
done={!loading && !hasError}
|
|
|
|
error={hasError}
|
|
|
|
loading={loading}
|
|
|
|
iconName={icon}
|
|
|
|
/>
|
|
|
|
</Styled.StatusIcon>
|
|
|
|
</Styled.Line>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-03 01:40:23 +08:00
|
|
|
function getAvailableOptions() {
|
2022-02-19 04:45:16 +08:00
|
|
|
const menuItems = [];
|
|
|
|
|
|
|
|
if (!isIphone) {
|
|
|
|
menuItems.push(
|
|
|
|
{
|
|
|
|
key: 'list-item-fullscreen',
|
|
|
|
dataTest: 'presentationFullscreen',
|
|
|
|
label: formattedLabel(isFullscreen),
|
2023-02-06 21:29:29 +08:00
|
|
|
icon: isFullscreen ? 'exit_fullscreen' : 'fullscreen',
|
2022-02-19 04:45:16 +08:00
|
|
|
onClick: () => {
|
|
|
|
handleToggleFullscreen(fullscreenRef);
|
|
|
|
const newElement = (elementId === currentElement) ? '' : elementId;
|
|
|
|
const newGroup = (elementGroup === currentGroup) ? '' : elementGroup;
|
|
|
|
|
|
|
|
layoutContextDispatch({
|
|
|
|
type: ACTIONS.SET_FULLSCREEN_ELEMENT,
|
|
|
|
value: {
|
|
|
|
element: newElement,
|
|
|
|
group: newGroup,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-03 01:09:56 +08:00
|
|
|
const { isSafari } = browserInfo;
|
2022-02-19 04:45:16 +08:00
|
|
|
|
2022-03-03 01:09:56 +08:00
|
|
|
if (!isSafari) {
|
|
|
|
menuItems.push(
|
|
|
|
{
|
|
|
|
key: 'list-item-screenshot',
|
|
|
|
label: intl.formatMessage(intlMessages.snapshotLabel),
|
2023-03-10 19:30:46 +08:00
|
|
|
dataTest: 'presentationSnapshot',
|
2023-02-06 21:29:29 +08:00
|
|
|
icon: 'video',
|
2022-07-26 22:54:50 +08:00
|
|
|
onClick: async () => {
|
2022-02-19 04:45:16 +08:00
|
|
|
setState({
|
2022-03-03 01:09:56 +08:00
|
|
|
loading: true,
|
2022-02-19 04:45:16 +08:00
|
|
|
hasError: false,
|
|
|
|
});
|
2022-03-03 01:09:56 +08:00
|
|
|
|
|
|
|
toastId.current = toast.info(renderToastContent(), {
|
|
|
|
hideProgressBar: true,
|
|
|
|
autoClose: false,
|
|
|
|
newestOnTop: true,
|
|
|
|
closeOnClick: true,
|
|
|
|
onClose: () => {
|
|
|
|
toastId.current = null;
|
|
|
|
},
|
2022-02-19 04:45:16 +08:00
|
|
|
});
|
|
|
|
|
2023-03-21 03:28:57 +08:00
|
|
|
// This is a workaround to a conflict of the
|
|
|
|
// dark mode's styles and the html-to-image lib.
|
|
|
|
// Issue:
|
|
|
|
// https://github.com/bubkoo/html-to-image/issues/370
|
|
|
|
const darkThemeState = AppService.isDarkThemeEnabled();
|
|
|
|
AppService.setDarkTheme(false);
|
|
|
|
|
2022-06-18 03:10:23 +08:00
|
|
|
try {
|
2022-07-26 22:54:50 +08:00
|
|
|
const { copySvg, getShapes, currentPageId } = tldrawAPI;
|
2022-08-19 02:17:38 +08:00
|
|
|
const svgString = await copySvg(getShapes(currentPageId).map((shape) => shape.id));
|
2022-07-26 22:54:50 +08:00
|
|
|
const container = document.createElement('div');
|
|
|
|
container.innerHTML = svgString;
|
|
|
|
const svgElem = container.firstChild;
|
|
|
|
const width = svgElem?.width?.baseVal?.value ?? window.screen.width;
|
|
|
|
const height = svgElem?.height?.baseVal?.value ?? window.screen.height;
|
|
|
|
|
|
|
|
const data = await toPng(svgElem, { width, height, backgroundColor: '#FFF' });
|
|
|
|
|
|
|
|
const anchor = document.createElement('a');
|
|
|
|
anchor.href = data;
|
|
|
|
anchor.setAttribute(
|
|
|
|
'download',
|
|
|
|
`${elementName}_${meetingName}_${new Date().toISOString()}.png`,
|
|
|
|
);
|
|
|
|
anchor.click();
|
|
|
|
|
|
|
|
setState({
|
|
|
|
loading: false,
|
|
|
|
hasError: false,
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
setState({
|
|
|
|
loading: false,
|
|
|
|
hasError: true,
|
2022-03-03 01:09:56 +08:00
|
|
|
});
|
2022-07-26 22:54:50 +08:00
|
|
|
|
2022-03-03 01:09:56 +08:00
|
|
|
logger.warn({
|
|
|
|
logCode: 'presentation_snapshot_error',
|
2022-07-26 22:54:50 +08:00
|
|
|
extraInfo: e,
|
2022-03-03 01:09:56 +08:00
|
|
|
});
|
2023-03-21 03:28:57 +08:00
|
|
|
} finally {
|
|
|
|
// Workaround
|
|
|
|
AppService.setDarkTheme(darkThemeState);
|
2022-06-18 03:10:23 +08:00
|
|
|
}
|
2022-03-03 01:09:56 +08:00
|
|
|
},
|
2022-02-19 04:45:16 +08:00
|
|
|
},
|
2022-03-03 01:09:56 +08:00
|
|
|
);
|
|
|
|
}
|
2023-03-15 12:49:17 +08:00
|
|
|
|
|
|
|
const tools = document.querySelector('#TD-Tools');
|
|
|
|
if (tools && (props.hasWBAccess || props.amIPresenter)){
|
|
|
|
menuItems.push(
|
|
|
|
{
|
|
|
|
key: 'list-item-toolvisibility',
|
|
|
|
dataTest: 'toolVisibility',
|
2023-04-19 02:03:22 +08:00
|
|
|
label: formattedVisibilityLabel(isToolbarVisible),
|
|
|
|
icon: isToolbarVisible ? 'close' : 'pen_tool',
|
2023-03-15 12:49:17 +08:00
|
|
|
onClick: () => {
|
2023-04-19 02:03:22 +08:00
|
|
|
setIsToolbarVisible(!isToolbarVisible);
|
2023-03-15 12:49:17 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2022-02-19 04:45:16 +08:00
|
|
|
|
|
|
|
return menuItems;
|
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (toastId.current) {
|
|
|
|
toast.update(toastId.current, {
|
|
|
|
render: renderToastContent(),
|
|
|
|
hideProgressBar: state.loading,
|
|
|
|
autoClose: state.loading ? false : 3000,
|
|
|
|
newestOnTop: true,
|
|
|
|
closeOnClick: true,
|
|
|
|
onClose: () => {
|
|
|
|
toastId.current = null;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dropdownRef.current) {
|
|
|
|
document.activeElement.blur();
|
|
|
|
dropdownRef.current.focus();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-03-03 01:40:23 +08:00
|
|
|
const options = getAvailableOptions();
|
|
|
|
|
2022-06-22 11:11:25 +08:00
|
|
|
if (options.length === 0) {
|
|
|
|
const undoCtrls = document.getElementById('TD-Styles')?.nextSibling;
|
|
|
|
if (undoCtrls?.style) {
|
2023-03-10 19:30:46 +08:00
|
|
|
undoCtrls.style = 'padding:0px';
|
2022-06-22 11:11:25 +08:00
|
|
|
}
|
2023-02-11 12:25:36 +08:00
|
|
|
const styleTool = document.getElementById('TD-Styles')?.parentNode;
|
|
|
|
if (styleTool?.style) {
|
2023-03-10 19:30:46 +08:00
|
|
|
styleTool.style = 'right:0px';
|
2023-02-11 12:25:36 +08:00
|
|
|
}
|
2023-03-10 19:30:46 +08:00
|
|
|
return null;
|
|
|
|
}
|
2022-03-03 01:40:23 +08:00
|
|
|
|
2022-02-19 04:45:16 +08:00
|
|
|
return (
|
2023-03-15 12:49:17 +08:00
|
|
|
<Styled.Right id='WhiteboardOptionButton'>
|
2023-03-10 19:30:46 +08:00
|
|
|
<BBBMenu
|
|
|
|
trigger={(
|
2022-06-21 19:53:06 +08:00
|
|
|
<TooltipContainer title={intl.formatMessage(intlMessages.optionsLabel)}>
|
|
|
|
<Styled.DropdownButton
|
|
|
|
state={isDropdownOpen ? 'open' : 'closed'}
|
2022-09-29 21:04:17 +08:00
|
|
|
aria-label={`${intl.formatMessage(intlMessages.whiteboardLabel)} ${intl.formatMessage(intlMessages.optionsLabel)}`}
|
2022-06-21 19:53:06 +08:00
|
|
|
data-test="whiteboardOptionsButton"
|
|
|
|
onClick={() => {
|
2023-03-10 19:30:46 +08:00
|
|
|
setIsDropdownOpen((isOpen) => !isOpen);
|
2022-06-21 19:53:06 +08:00
|
|
|
}}
|
2023-03-10 19:30:46 +08:00
|
|
|
>
|
|
|
|
<Styled.ButtonIcon iconName="more" />
|
2022-06-21 19:53:06 +08:00
|
|
|
</Styled.DropdownButton>
|
|
|
|
</TooltipContainer>
|
2023-03-10 19:30:46 +08:00
|
|
|
)}
|
2022-06-14 21:18:40 +08:00
|
|
|
opts={{
|
2023-03-10 19:30:46 +08:00
|
|
|
id: 'presentation-dropdown-menu',
|
2022-06-14 21:18:40 +08:00
|
|
|
keepMounted: true,
|
|
|
|
transitionDuration: 0,
|
|
|
|
elevation: 3,
|
|
|
|
getContentAnchorEl: null,
|
2023-03-10 19:30:46 +08:00
|
|
|
fullwidth: 'true',
|
2022-06-14 21:18:40 +08:00
|
|
|
anchorOrigin: { vertical: 'bottom', horizontal: isRTL ? 'right' : 'left' },
|
|
|
|
transformOrigin: { vertical: 'top', horizontal: isRTL ? 'right' : 'left' },
|
2023-03-10 19:30:46 +08:00
|
|
|
container: fullscreenRef,
|
2022-06-14 21:18:40 +08:00
|
|
|
}}
|
2023-01-18 18:56:10 +08:00
|
|
|
actions={options}
|
2022-06-14 21:18:40 +08:00
|
|
|
/>
|
2022-02-19 04:45:16 +08:00
|
|
|
</Styled.Right>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
PresentationMenu.propTypes = propTypes;
|
|
|
|
PresentationMenu.defaultProps = defaultProps;
|
|
|
|
|
|
|
|
export default injectIntl(PresentationMenu);
|