bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx

297 lines
9.4 KiB
React
Raw Normal View History

import _ from 'lodash';
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { defineMessages } from 'react-intl';
2016-10-18 05:29:00 +08:00
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 { withModalMounter } from '/imports/ui/components/modal/service';
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
import DropdownListSeparator from '/imports/ui/components/dropdown/list/separator/component';
import ExternalVideoModal from '/imports/ui/components/external-video-player/modal/container';
import RandomUserSelectContainer from '/imports/ui/components/modal/random-user/container';
import cx from 'classnames';
import { styles } from '../styles';
2017-06-07 20:01:18 +08:00
const propTypes = {
amIPresenter: PropTypes.bool.isRequired,
intl: PropTypes.object.isRequired,
2017-06-07 20:01:18 +08:00
mountModal: PropTypes.func.isRequired,
amIModerator: PropTypes.bool.isRequired,
shortcuts: PropTypes.string,
handleTakePresenter: PropTypes.func.isRequired,
2019-05-29 22:31:27 +08:00
allowExternalVideo: PropTypes.bool.isRequired,
stopExternalVideoShare: PropTypes.func.isRequired,
2017-06-07 20:01:18 +08:00
};
const defaultProps = {
shortcuts: '',
};
2016-10-18 05:29:00 +08:00
const intlMessages = defineMessages({
actionsLabel: {
id: 'app.actionsBar.actionsDropdown.actionsLabel',
2017-04-10 23:50:03 +08:00
description: 'Actions button label',
2016-10-18 05:29:00 +08:00
},
presentationLabel: {
id: 'app.actionsBar.actionsDropdown.presentationLabel',
2017-04-10 23:50:03 +08:00
description: 'Upload a presentation option label',
2016-10-18 05:29:00 +08:00
},
presentationDesc: {
id: 'app.actionsBar.actionsDropdown.presentationDesc',
2017-04-11 21:52:30 +08:00
description: 'adds context to upload presentation option',
2016-10-18 05:29:00 +08:00
},
desktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.desktopShareDesc',
2017-04-11 21:52:30 +08:00
description: 'adds context to desktop share option',
2016-10-18 05:29:00 +08:00
},
stopDesktopShareDesc: {
id: 'app.actionsBar.actionsDropdown.stopDesktopShareDesc',
description: 'adds context to stop desktop share option',
},
2018-09-24 06:20:20 +08:00
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',
},
selectRandUserLabel: {
id: 'app.actionsBar.actionsDropdown.selectRandUserLabel',
description: 'Label for selecting a random user',
},
selectRandUserDesc: {
id: 'app.actionsBar.actionsDropdown.selectRandUserDesc',
description: 'Description for select random user option',
},
2016-10-18 05:29:00 +08:00
});
const handlePresentationClick = () => Session.set('showUploadPresentationView', true);
2020-02-26 03:29:14 +08:00
class ActionsDropdown extends PureComponent {
2016-10-18 05:29:00 +08:00
constructor(props) {
super(props);
2017-05-04 04:51:17 +08:00
2018-01-18 05:51:33 +08:00
this.presentationItemId = _.uniqueId('action-item-');
2018-09-24 06:20:20 +08:00
this.pollId = _.uniqueId('action-item-');
this.takePresenterId = _.uniqueId('action-item-');
this.selectUserRandId = _.uniqueId('action-item-');
2018-01-18 05:51:33 +08:00
2019-04-03 02:57:29 +08:00
this.handleExternalVideoClick = this.handleExternalVideoClick.bind(this);
this.makePresentationItems = this.makePresentationItems.bind(this);
}
componentDidUpdate(prevProps) {
const { amIPresenter: wasPresenter } = prevProps;
const { amIPresenter: isPresenter, mountModal } = this.props;
if (wasPresenter && !isPresenter) {
mountModal(null);
}
}
2018-01-17 21:34:35 +08:00
getAvailableActions() {
const {
intl,
amIPresenter,
allowExternalVideo,
handleTakePresenter,
isSharingVideo,
2019-07-02 22:54:37 +08:00
isPollingEnabled,
2021-03-20 02:52:03 +08:00
isSelectRandomUserEnabled,
stopExternalVideoShare,
mountModal,
2018-01-17 21:34:35 +08:00
} = this.props;
2018-12-18 23:15:51 +08:00
const {
pollBtnLabel,
pollBtnDesc,
presentationLabel,
presentationDesc,
takePresenter,
takePresenterDesc,
2018-12-18 23:15:51 +08:00
} = intlMessages;
const {
formatMessage,
} = intl;
2018-01-17 21:34:35 +08:00
return _.compact([
(amIPresenter && isPollingEnabled
2018-12-18 23:15:51 +08:00
? (
<DropdownListItem
2019-05-24 05:13:52 +08:00
icon="polling"
2020-03-20 22:42:04 +08:00
data-test="polling"
2018-12-18 23:15:51 +08:00
label={formatMessage(pollBtnLabel)}
description={formatMessage(pollBtnDesc)}
key={this.pollId}
onClick={() => {
if (Session.equals('pollInitiated', true)) {
Session.set('resetPollPanel', true);
2019-03-15 03:34:53 +08:00
}
2018-12-18 23:15:51 +08:00
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"
2018-12-18 23:15:51 +08:00
label={formatMessage(presentationLabel)}
description={formatMessage(presentationDesc)}
key={this.presentationItemId}
2020-02-26 03:29:14 +08:00
onClick={handlePresentationClick}
/>
)
: null),
(amIPresenter && allowExternalVideo
2018-12-11 07:07:20 +08:00
? (
<DropdownListItem
icon="video"
label={!isSharingVideo ? intl.formatMessage(intlMessages.startExternalVideoLabel)
2019-03-15 03:34:53 +08:00
: intl.formatMessage(intlMessages.stopExternalVideoLabel)}
2018-12-11 07:07:20 +08:00
description="External Video"
key="external-video"
onClick={isSharingVideo ? stopExternalVideoShare : this.handleExternalVideoClick}
2018-12-11 07:07:20 +08:00
/>
)
2019-04-03 02:57:29 +08:00
: null),
2021-03-20 02:52:03 +08:00
(amIPresenter && isSelectRandomUserEnabled
? (
<DropdownListItem
icon="user"
label={intl.formatMessage(intlMessages.selectRandUserLabel)}
description={intl.formatMessage(intlMessages.selectRandUserDesc)}
key={this.selectUserRandId}
onClick={() => mountModal(<RandomUserSelectContainer isSelectedUser={false} />)}
/>
)
: null),
2018-01-17 21:34:35 +08:00
]);
}
makePresentationItems() {
const {
presentations,
setPresentation,
podIds,
} = this.props;
if (!podIds || podIds.length < 1) return [];
// We still have code for other pods from the Flash client. This intentionally only cares
// about the first one because it's the default.
const { podId } = podIds[0];
2021-04-07 22:37:49 +08:00
const presentationItemElements = presentations
.sort((a, b) => (a.name.localeCompare(b.name)))
.map((p) => {
const itemStyles = {};
itemStyles[styles.presentationItem] = true;
itemStyles[styles.isCurrent] = p.current;
2021-04-07 22:37:49 +08:00
return (<DropdownListItem
className={cx(itemStyles)}
icon="file"
iconRight={p.current ? 'check' : null}
label={p.name}
description="uploaded presentation file"
key={`uploaded-presentation-${p.id}`}
onClick={() => {
setPresentation(p.id, podId);
}}
/>
);
});
presentationItemElements.push(<DropdownListSeparator key={_.uniqueId('list-separator-')} />);
return presentationItemElements;
}
2019-03-15 03:34:53 +08:00
handleExternalVideoClick() {
const { mountModal } = this.props;
mountModal(<ExternalVideoModal />);
}
2016-10-18 05:29:00 +08:00
render() {
2017-09-13 04:47:06 +08:00
const {
intl,
amIPresenter,
amIModerator,
shortcuts: OPEN_ACTIONS_AK,
2019-06-27 00:29:34 +08:00
isMeteorConnected,
2017-09-13 04:47:06 +08:00
} = this.props;
2017-03-24 23:37:33 +08:00
2018-01-17 21:34:35 +08:00
const availableActions = this.getAvailableActions();
const availablePresentations = this.makePresentationItems();
const children = availablePresentations.length > 2 && amIPresenter
? availablePresentations.concat(availableActions) : availableActions;
2018-01-17 21:34:35 +08:00
if ((!amIPresenter && !amIModerator)
|| availableActions.length === 0
|| !isMeteorConnected) {
return null;
}
2016-10-18 05:29:00 +08:00
return (
2020-11-07 04:48:06 +08:00
<Dropdown className={styles.dropdown} ref={(ref) => { this._dropdown = ref; }}>
2018-05-02 08:02:45 +08:00
<DropdownTrigger tabIndex={0} accessKey={OPEN_ACTIONS_AK}>
2016-10-18 05:29:00 +08:00
<Button
hideLabel
aria-label={intl.formatMessage(intlMessages.actionsLabel)}
2016-10-18 05:29:00 +08:00
label={intl.formatMessage(intlMessages.actionsLabel)}
2017-12-12 01:09:09 +08:00
icon="plus"
2016-10-18 05:29:00 +08:00
color="primary"
size="lg"
2017-06-03 03:25:02 +08:00
circle
2016-10-18 05:29:00 +08:00
onClick={() => null}
/>
</DropdownTrigger>
<DropdownContent placement="top left">
2021-04-08 21:01:20 +08:00
<DropdownList className={styles.scrollableList}>
{children}
2016-10-18 05:29:00 +08:00
</DropdownList>
</DropdownContent>
</Dropdown>
);
}
}
2017-06-07 20:01:18 +08:00
ActionsDropdown.propTypes = propTypes;
ActionsDropdown.defaultProps = defaultProps;
2017-06-07 20:01:18 +08:00
2019-02-22 05:01:39 +08:00
export default withShortcutHelper(withModalMounter(ActionsDropdown), 'openActions');