235 lines
7.2 KiB
JavaScript
Executable File
235 lines
7.2 KiB
JavaScript
Executable File
import _ from 'lodash';
|
|
import React, { PureComponent } 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';
|
|
|
|
const propTypes = {
|
|
amIPresenter: PropTypes.bool.isRequired,
|
|
intl: intlShape.isRequired,
|
|
mountModal: PropTypes.func.isRequired,
|
|
amIModerator: PropTypes.bool.isRequired,
|
|
shortcuts: PropTypes.string,
|
|
handleTakePresenter: PropTypes.func.isRequired,
|
|
allowExternalVideo: PropTypes.bool.isRequired,
|
|
stopExternalVideoShare: PropTypes.func.isRequired,
|
|
};
|
|
|
|
const defaultProps = {
|
|
shortcuts: '',
|
|
};
|
|
|
|
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',
|
|
},
|
|
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',
|
|
},
|
|
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 PureComponent {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.presentationItemId = _.uniqueId('action-item-');
|
|
this.pollId = _.uniqueId('action-item-');
|
|
this.takePresenterId = _.uniqueId('action-item-');
|
|
|
|
this.handlePresentationClick = this.handlePresentationClick.bind(this);
|
|
this.handleExternalVideoClick = this.handleExternalVideoClick.bind(this);
|
|
}
|
|
|
|
componentWillUpdate(nextProps) {
|
|
const { amIPresenter: isPresenter } = nextProps;
|
|
const { amIPresenter: wasPresenter, mountModal } = this.props;
|
|
if (wasPresenter && !isPresenter) {
|
|
mountModal(null);
|
|
}
|
|
}
|
|
|
|
getAvailableActions() {
|
|
const {
|
|
intl,
|
|
amIPresenter,
|
|
allowExternalVideo,
|
|
handleTakePresenter,
|
|
isSharingVideo,
|
|
isPollingEnabled,
|
|
stopExternalVideoShare,
|
|
} = this.props;
|
|
|
|
const {
|
|
pollBtnLabel,
|
|
pollBtnDesc,
|
|
presentationLabel,
|
|
presentationDesc,
|
|
takePresenter,
|
|
takePresenterDesc,
|
|
} = intlMessages;
|
|
|
|
const {
|
|
formatMessage,
|
|
} = intl;
|
|
|
|
return _.compact([
|
|
(amIPresenter && isPollingEnabled
|
|
? (
|
|
<DropdownListItem
|
|
icon="polling"
|
|
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);
|
|
}}
|
|
/>
|
|
)
|
|
: null),
|
|
(!amIPresenter
|
|
? (
|
|
<DropdownListItem
|
|
icon="presentation"
|
|
label={formatMessage(takePresenter)}
|
|
description={formatMessage(takePresenterDesc)}
|
|
key={this.takePresenterId}
|
|
onClick={() => handleTakePresenter()}
|
|
/>
|
|
)
|
|
: null),
|
|
(amIPresenter
|
|
? (
|
|
<DropdownListItem
|
|
data-test="uploadPresentation"
|
|
icon="presentation"
|
|
label={formatMessage(presentationLabel)}
|
|
description={formatMessage(presentationDesc)}
|
|
key={this.presentationItemId}
|
|
onClick={this.handlePresentationClick}
|
|
/>
|
|
)
|
|
: null),
|
|
(amIPresenter && 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 />);
|
|
}
|
|
|
|
handlePresentationClick() {
|
|
const { mountModal } = this.props;
|
|
mountModal(<PresentationUploaderContainer />);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
intl,
|
|
amIPresenter,
|
|
amIModerator,
|
|
shortcuts: OPEN_ACTIONS_AK,
|
|
isMeteorConnected,
|
|
} = this.props;
|
|
|
|
const availableActions = this.getAvailableActions();
|
|
|
|
if ((!amIPresenter && !amIModerator)
|
|
|| availableActions.length === 0
|
|
|| !isMeteorConnected) {
|
|
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;
|
|
ActionsDropdown.defaultProps = defaultProps;
|
|
|
|
export default withShortcutHelper(withModalMounter(ActionsDropdown), 'openActions');
|