import React from 'react'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl } from 'react-intl'; import Button from '/imports/ui/components/common/button/component'; const propTypes = { intl: PropTypes.shape({ formatMessage: PropTypes.func.isRequired, }).isRequired, setPresentationIsOpen: PropTypes.func.isRequired, }; const intlMessages = defineMessages({ minimizePresentationLabel: { id: 'app.actionsBar.actionsDropdown.minimizePresentationLabel', description: '', }, minimizePresentationDesc: { id: 'app.actionsBar.actionsDropdown.restorePresentationDesc', 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, presentationIsOpen, setPresentationIsOpen, layoutContextDispatch, hasCurrentPresentation, hasExternalVideo, hasScreenshare, }) => { let buttonType = 'presentation'; if (hasExternalVideo) { // hack until we have an external-video icon buttonType = 'external-video'; } else if (hasScreenshare) { buttonType = 'desktop'; } const isThereCurrentPresentation = hasExternalVideo || hasScreenshare || hasCurrentPresentation; return (