2016-10-18 05:29:00 +08:00
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { defineMessages, injectIntl } 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';
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
initPollLabel: {
|
|
|
|
id: 'app.actionsBar.actionsDropdown.initPollLabel',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Initiate a poll option label',
|
2016-10-18 05:29:00 +08:00
|
|
|
},
|
|
|
|
desktopShareLabel: {
|
|
|
|
id: 'app.actionsBar.actionsDropdown.desktopShareLabel',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Desktop Share option label',
|
2016-10-18 05:29:00 +08:00
|
|
|
},
|
|
|
|
presentationDesc: {
|
|
|
|
id: 'app.actionsBar.actionsDropdown.presentationDesc',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Describes presentationLabel',
|
2016-10-18 05:29:00 +08:00
|
|
|
},
|
|
|
|
initPollDesc: {
|
|
|
|
id: 'app.actionsBar.actionsDropdown.initPollDesc',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Describes initPollLabel',
|
2016-10-18 05:29:00 +08:00
|
|
|
},
|
|
|
|
desktopShareDesc: {
|
|
|
|
id: 'app.actionsBar.actionsDropdown.desktopShareDesc',
|
2017-04-10 23:50:03 +08:00
|
|
|
description: 'Describes desktopShareLabel',
|
2016-10-18 05:29:00 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const presentation = () => {console.log('Should show the uploader component');};
|
|
|
|
|
|
|
|
const polling = () => {console.log('Should initiate a polling');};
|
|
|
|
|
|
|
|
const shareScreen = () => {console.log('Should start screen sharing');};
|
|
|
|
|
|
|
|
class ActionsDropdown extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
|
|
<Dropdown ref="dropdown">
|
|
|
|
<DropdownTrigger>
|
|
|
|
<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"
|
|
|
|
circle={true}
|
|
|
|
onClick={() => null}
|
|
|
|
/>
|
|
|
|
</DropdownTrigger>
|
|
|
|
<DropdownContent placement="top left">
|
|
|
|
<DropdownList>
|
|
|
|
<DropdownListItem
|
|
|
|
icon="presentation"
|
|
|
|
label={intl.formatMessage(intlMessages.presentationLabel)}
|
|
|
|
description={intl.formatMessage(intlMessages.presentationDesc)}
|
|
|
|
onClick={presentation.bind(this)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{/* These icons are unaligned because of the font issue
|
|
|
|
Check it later */}
|
|
|
|
<DropdownListItem
|
|
|
|
icon="polling"
|
|
|
|
label={intl.formatMessage(intlMessages.initPollLabel)}
|
|
|
|
description={intl.formatMessage(intlMessages.initPollDesc)}
|
|
|
|
onClick={polling.bind(this)}
|
|
|
|
/>
|
|
|
|
<DropdownListItem
|
|
|
|
icon="desktop"
|
|
|
|
label={intl.formatMessage(intlMessages.desktopShareLabel)}
|
|
|
|
description={intl.formatMessage(intlMessages.desktopShareDesc)}
|
|
|
|
onClick={shareScreen.bind(this)}
|
|
|
|
/>
|
|
|
|
</DropdownList>
|
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default injectIntl(ActionsDropdown);
|