bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx
2019-05-29 14:31:27 +00:00

259 lines
8.2 KiB
JavaScript
Executable File

import _ from 'lodash';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { defineMessages, intlShape } from 'react-intl';
import Button from '/imports/ui/components/button/component';
import Dropdown from '/imports/ui/components/dropdown/component';
import DropdownTrigger from '/imports/ui/components/dropdown/trigger/component';
import DropdownContent from '/imports/ui/components/dropdown/content/component';
import DropdownList from '/imports/ui/components/dropdown/list/component';
import DropdownListItem from '/imports/ui/components/dropdown/list/item/component';
import PresentationUploaderContainer from '/imports/ui/components/presentation/presentation-uploader/container';
import { withModalMounter } from '/imports/ui/components/modal/service';
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
import { styles } from '../styles';
import ExternalVideoModal from '/imports/ui/components/external-video-player/modal/container';
import CaptionsWriterMenu from '/imports/ui/components/captions/writer-menu/container';
import CaptionsService from '/imports/ui/components/captions/service';
const propTypes = {
isUserPresenter: PropTypes.bool.isRequired,
intl: intlShape.isRequired,
mountModal: PropTypes.func.isRequired,
isUserModerator: PropTypes.bool.isRequired,
shortcuts: PropTypes.string.isRequired,
handleTakePresenter: PropTypes.func.isRequired,
allowExternalVideo: PropTypes.bool.isRequired,
stopExternalVideoShare: PropTypes.func.isRequired,
};
const intlMessages = defineMessages({
actionsLabel: {
id: 'app.actionsBar.actionsDropdown.actionsLabel',
description: 'Actions button label',
},
presentationLabel: {
id: 'app.actionsBar.actionsDropdown.presentationLabel',
description: 'Upload a presentation option label',
},
presentationDesc: {
id: 'app.actionsBar.actionsDropdown.presentationDesc',
description: 'adds context to upload presentation option',
},
desktopShareLabel: {
id: 'app.actionsBar.actionsDropdown.desktopShareLabel',
description: 'Desktop Share option label',
},
stopDesktopShareLabel: {
id: 'app.actionsBar.actionsDropdown.stopDesktopShareLabel',
description: 'Stop Desktop Share option label',
},
desktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.desktopShareDesc',
description: 'adds context to desktop share option',
},
stopDesktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.stopDesktopShareDesc',
description: 'adds context to stop desktop share option',
},
pollBtnLabel: {
id: 'app.actionsBar.actionsDropdown.pollBtnLabel',
description: 'poll menu toggle button label',
},
pollBtnDesc: {
id: 'app.actionsBar.actionsDropdown.pollBtnDesc',
description: 'poll menu toggle button description',
},
takePresenter: {
id: 'app.actionsBar.actionsDropdown.takePresenter',
description: 'Label for take presenter role option',
},
takePresenterDesc: {
id: 'app.actionsBar.actionsDropdown.takePresenterDesc',
description: 'Description of take presenter role option',
},
captionsLabel: {
id: 'app.actionsBar.actionsDropdown.captionsLabel',
description: 'Captions menu toggle label',
},
captionsDesc: {
id: 'app.actionsBar.actionsDropdown.captionsDesc',
description: 'Captions menu toggle description',
},
startExternalVideoLabel: {
id: 'app.actionsBar.actionsDropdown.shareExternalVideo',
description: 'Start sharing external video button',
},
stopExternalVideoLabel: {
id: 'app.actionsBar.actionsDropdown.stopShareExternalVideo',
description: 'Stop sharing external video button',
},
});
class ActionsDropdown extends Component {
constructor(props) {
super(props);
this.presentationItemId = _.uniqueId('action-item-');
this.pollId = _.uniqueId('action-item-');
this.captionsId = _.uniqueId('action-item-');
this.takePresenterId = _.uniqueId('action-item-');
this.handlePresentationClick = this.handlePresentationClick.bind(this);
this.handleExternalVideoClick = this.handleExternalVideoClick.bind(this);
this.handleCaptionsClick = this.handleCaptionsClick.bind(this);
}
componentWillUpdate(nextProps) {
const { isUserPresenter: isPresenter } = nextProps;
const { isUserPresenter: wasPresenter, mountModal } = this.props;
if (wasPresenter && !isPresenter) {
mountModal(null);
}
}
getAvailableActions() {
const {
intl,
isUserPresenter,
allowExternalVideo,
handleTakePresenter,
isSharingVideo,
stopExternalVideoShare,
} = this.props;
const {
pollBtnLabel,
pollBtnDesc,
presentationLabel,
presentationDesc,
captionsLabel,
captionsDesc,
takePresenter,
takePresenterDesc,
} = intlMessages;
const {
formatMessage,
} = intl;
return _.compact([
(isUserPresenter
? (
<DropdownListItem
icon="user"
label={formatMessage(pollBtnLabel)}
description={formatMessage(pollBtnDesc)}
key={this.pollId}
onClick={() => {
if (Session.equals('pollInitiated', true)) {
Session.set('resetPollPanel', true);
}
Session.set('openPanel', 'poll');
Session.set('forcePollOpen', true);
}}
/>
)
: (
<DropdownListItem
icon="presentation"
label={formatMessage(takePresenter)}
description={formatMessage(takePresenterDesc)}
key={this.takePresenterId}
onClick={() => handleTakePresenter()}
/>
)),
(CaptionsService.isCaptionsEnabled()
? (
<DropdownListItem
icon="polling"
label={formatMessage(captionsLabel)}
description={formatMessage(captionsDesc)}
key={this.captionsId}
onClick={this.handleCaptionsClick}
/>
) : null
),
(isUserPresenter
? (
<DropdownListItem
data-test="uploadPresentation"
icon="presentation"
label={formatMessage(presentationLabel)}
description={formatMessage(presentationDesc)}
key={this.presentationItemId}
onClick={this.handlePresentationClick}
/>
)
: null),
(isUserPresenter && allowExternalVideo
? (
<DropdownListItem
icon="video"
label={!isSharingVideo ? intl.formatMessage(intlMessages.startExternalVideoLabel)
: intl.formatMessage(intlMessages.stopExternalVideoLabel)}
description="External Video"
key="external-video"
onClick={isSharingVideo ? stopExternalVideoShare : this.handleExternalVideoClick}
/>
)
: null),
]);
}
handleExternalVideoClick() {
const { mountModal } = this.props;
mountModal(<ExternalVideoModal />);
}
handleCaptionsClick() {
const { mountModal } = this.props;
mountModal(<CaptionsWriterMenu />);
}
handlePresentationClick() {
const { mountModal } = this.props;
mountModal(<PresentationUploaderContainer />);
}
render() {
const {
intl,
isUserPresenter,
isUserModerator,
shortcuts: OPEN_ACTIONS_AK,
} = this.props;
const availableActions = this.getAvailableActions();
if ((!isUserPresenter && !isUserModerator) || availableActions.length === 0) return null;
return (
<Dropdown ref={(ref) => { this._dropdown = ref; }}>
<DropdownTrigger tabIndex={0} accessKey={OPEN_ACTIONS_AK}>
<Button
hideLabel
aria-label={intl.formatMessage(intlMessages.actionsLabel)}
className={styles.button}
label={intl.formatMessage(intlMessages.actionsLabel)}
icon="plus"
color="primary"
size="lg"
circle
onClick={() => null}
/>
</DropdownTrigger>
<DropdownContent placement="top left">
<DropdownList>
{availableActions}
</DropdownList>
</DropdownContent>
</Dropdown>
);
}
}
ActionsDropdown.propTypes = propTypes;
export default withShortcutHelper(withModalMounter(ActionsDropdown), 'openActions');