import React from 'react'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl } from 'react-intl'; import Button from '/imports/ui/components/button/component'; import MediaService from '/imports/ui/components/media/service'; import cx from 'classnames'; import { styles } from '../styles'; const propTypes = { intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, toggleSwapLayout: PropTypes.func.isRequired, }; const intlMessages = defineMessages({ minimizePresentationLabel: { id: 'app.actionsBar.actionsDropdown.minimizePresentationLabel', description: '', }, minimizePresentationDesc: { id: 'app.actionsBar,actionsDropdown.minimizePresentationDesc', description: '', }, restorePresentationLabel: { id: 'app.actionsBar.actionsDropdown.restorePresentationLabel', description: 'Restore Presentation option label', }, restorePresentationDesc: { id: 'app.actionsBar.actionsDropdown.restorePresentationDesc', description: 'button to restore presentation after it has been closed', }, }); const PresentationOptionsContainer = ({ intl, isLayoutSwapped, toggleSwapLayout, layoutContextDispatch, hasPresentation, hasExternalVideo, hasScreenshare, }) => { let buttonType = 'presentation'; if (hasExternalVideo) { // hack until we have an external-video icon buttonType = 'presentation'; } else if (hasScreenshare) { buttonType = 'desktop'; } const isThereCurrentPresentation = hasExternalVideo || hasScreenshare || hasPresentation; return (