2017-06-04 10:40:14 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-06-07 20:01:18 +08:00
|
|
|
import { defineMessages, injectIntl, intlShape } 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';
|
|
|
|
|
2017-09-29 21:51:17 +08:00
|
|
|
import PresentationUploaderContainer from '/imports/ui/components/presentation/presentation-uploader/container';
|
2017-09-30 04:32:31 +08:00
|
|
|
import { withModalMounter } from '/imports/ui/components/modal/service';
|
2017-05-04 04:51:17 +08:00
|
|
|
|
2017-06-07 20:01:18 +08:00
|
|
|
const propTypes = {
|
|
|
|
isUserPresenter: PropTypes.bool.isRequired,
|
2017-09-30 04:32:31 +08:00
|
|
|
intl: intlShape.isRequired,
|
2017-06-07 20:01:18 +08:00
|
|
|
mountModal: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
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
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
class ActionsDropdown extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2017-05-04 04:51:17 +08:00
|
|
|
this.handlePresentationClick = this.handlePresentationClick.bind(this);
|
|
|
|
}
|
|
|
|
|
2017-10-24 18:52:44 +08:00
|
|
|
componentWillUpdate(nextProps) {
|
|
|
|
const { isUserPresenter: isPresenter } = nextProps;
|
2017-10-13 06:44:38 +08:00
|
|
|
const { isUserPresenter: wasPresenter, mountModal } = this.props;
|
|
|
|
if (wasPresenter && !isPresenter) {
|
|
|
|
mountModal(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-04 04:51:17 +08:00
|
|
|
handlePresentationClick() {
|
2017-09-29 21:51:17 +08:00
|
|
|
this.props.mountModal(<PresentationUploaderContainer />);
|
2016-10-18 05:29:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2017-03-24 22:49:38 +08:00
|
|
|
const { intl, isUserPresenter } = this.props;
|
2017-03-24 23:37:33 +08:00
|
|
|
|
2017-05-04 04:51:17 +08:00
|
|
|
if (!isUserPresenter) return null;
|
2017-03-24 22:49:38 +08:00
|
|
|
|
2016-10-18 05:29:00 +08:00
|
|
|
return (
|
2017-06-11 03:21:13 +08:00
|
|
|
<Dropdown ref={(ref) => { this._dropdown = ref; }}>
|
2017-05-19 02:38:07 +08:00
|
|
|
<DropdownTrigger tabIndex={0}>
|
2016-10-18 05:29:00 +08:00
|
|
|
<Button
|
|
|
|
label={intl.formatMessage(intlMessages.actionsLabel)}
|
2017-03-02 09:03:02 +08:00
|
|
|
icon="add"
|
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">
|
|
|
|
<DropdownList>
|
|
|
|
<DropdownListItem
|
|
|
|
icon="presentation"
|
|
|
|
label={intl.formatMessage(intlMessages.presentationLabel)}
|
|
|
|
description={intl.formatMessage(intlMessages.presentationDesc)}
|
2017-05-04 04:51:17 +08:00
|
|
|
onClick={this.handlePresentationClick}
|
2016-10-18 05:29:00 +08:00
|
|
|
/>
|
|
|
|
</DropdownList>
|
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 20:01:18 +08:00
|
|
|
ActionsDropdown.propTypes = propTypes;
|
|
|
|
|
2017-05-04 04:51:17 +08:00
|
|
|
export default withModalMounter(injectIntl(ActionsDropdown));
|