2018-12-17 19:48:34 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2017-07-21 22:16:45 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { withModalMounter } from '/imports/ui/components/modal/service';
|
|
|
|
import Clipboard from 'clipboard';
|
2017-07-22 02:17:25 +08:00
|
|
|
import _ from 'lodash';
|
2017-07-21 22:16:45 +08:00
|
|
|
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-10-17 03:28:27 +08:00
|
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
|
2018-12-10 10:12:42 +08:00
|
|
|
import ChatService from '../service';
|
2017-07-21 22:16:45 +08:00
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
clear: {
|
|
|
|
id: 'app.chat.dropdown.clear',
|
|
|
|
description: 'Clear button label',
|
|
|
|
},
|
|
|
|
save: {
|
|
|
|
id: 'app.chat.dropdown.save',
|
|
|
|
description: 'Clear button label',
|
|
|
|
},
|
|
|
|
copy: {
|
|
|
|
id: 'app.chat.dropdown.copy',
|
|
|
|
description: 'Copy button label',
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
id: 'app.chat.dropdown.options',
|
|
|
|
description: 'Chat Options',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-06-02 22:50:26 +08:00
|
|
|
const CHAT_CONFIG = Meteor.settings.public.chat;
|
|
|
|
const ENABLE_SAVE_AND_COPY_PUBLIC_CHAT = CHAT_CONFIG.enableSaveAndCopyPublicChat;
|
|
|
|
|
2018-12-17 19:48:34 +08:00
|
|
|
class ChatDropdown extends PureComponent {
|
2017-07-21 22:16:45 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
isSettingOpen: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
this.onActionsShow = this.onActionsShow.bind(this);
|
|
|
|
this.onActionsHide = this.onActionsHide.bind(this);
|
2018-01-20 01:38:04 +08:00
|
|
|
this.actionsKey = [
|
|
|
|
_.uniqueId('action-item-'),
|
|
|
|
_.uniqueId('action-item-'),
|
|
|
|
_.uniqueId('action-item-'),
|
|
|
|
];
|
2017-07-21 22:16:45 +08:00
|
|
|
}
|
|
|
|
|
2021-02-13 04:54:44 +08:00
|
|
|
componentDidMount() {
|
|
|
|
this.clipboard = new Clipboard('#clipboardButton', {
|
|
|
|
text: () => '',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-13 03:43:56 +08:00
|
|
|
componentDidUpdate(prevProps, prevState) {
|
2021-04-12 20:13:42 +08:00
|
|
|
const { timeWindowsValues, users, intl } = this.props;
|
2021-02-13 03:43:56 +08:00
|
|
|
const { isSettingOpen } = this.state;
|
|
|
|
if (prevState.isSettingOpen !== isSettingOpen) {
|
|
|
|
this.clipboard = new Clipboard('#clipboardButton', {
|
2021-04-12 20:13:42 +08:00
|
|
|
text: () => ChatService.exportChat(timeWindowsValues, users, intl),
|
2021-02-13 03:43:56 +08:00
|
|
|
});
|
|
|
|
}
|
2017-07-21 22:16:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.clipboard.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
onActionsShow() {
|
|
|
|
this.setState({
|
|
|
|
isSettingOpen: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onActionsHide() {
|
|
|
|
this.setState({
|
|
|
|
isSettingOpen: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-22 02:17:25 +08:00
|
|
|
getAvailableActions() {
|
2020-08-04 21:27:32 +08:00
|
|
|
const {
|
2021-06-02 22:50:26 +08:00
|
|
|
intl,
|
|
|
|
isMeteorConnected,
|
|
|
|
amIModerator,
|
|
|
|
meetingIsBreakout,
|
|
|
|
meetingName,
|
|
|
|
timeWindowsValues,
|
|
|
|
users,
|
2020-08-04 21:27:32 +08:00
|
|
|
} = this.props;
|
2017-07-22 02:17:25 +08:00
|
|
|
|
2017-07-28 04:45:40 +08:00
|
|
|
const clearIcon = 'delete';
|
2019-02-22 06:15:33 +08:00
|
|
|
const saveIcon = 'download';
|
2017-07-28 04:45:40 +08:00
|
|
|
const copyIcon = 'copy';
|
2017-07-22 02:17:25 +08:00
|
|
|
return _.compact([
|
2021-06-02 22:50:26 +08:00
|
|
|
ENABLE_SAVE_AND_COPY_PUBLIC_CHAT
|
|
|
|
&& (
|
2018-01-20 01:38:04 +08:00
|
|
|
<DropdownListItem
|
2018-12-01 01:32:19 +08:00
|
|
|
data-test="chatSave"
|
2017-07-28 04:45:40 +08:00
|
|
|
icon={saveIcon}
|
2017-07-22 02:17:25 +08:00
|
|
|
label={intl.formatMessage(intlMessages.save)}
|
2018-01-20 01:38:04 +08:00
|
|
|
key={this.actionsKey[0]}
|
2017-07-22 02:17:25 +08:00
|
|
|
onClick={() => {
|
|
|
|
const link = document.createElement('a');
|
|
|
|
const mimeType = 'text/plain';
|
2020-08-04 21:27:32 +08:00
|
|
|
const date = new Date();
|
|
|
|
const time = `${date.getHours()}-${date.getMinutes()}`;
|
|
|
|
const dateString = `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}_${time}`;
|
|
|
|
link.setAttribute('download', `bbb-${meetingName}[public-chat]_${dateString}.txt`);
|
2018-01-20 01:38:04 +08:00
|
|
|
link.setAttribute(
|
|
|
|
'href',
|
2021-06-02 22:50:26 +08:00
|
|
|
`data: ${mimeType} ;charset=utf-8,`
|
|
|
|
+ `${encodeURIComponent(ChatService.exportChat(timeWindowsValues, users, intl))}`,
|
2018-01-20 01:38:04 +08:00
|
|
|
);
|
2019-02-15 05:32:44 +08:00
|
|
|
link.dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true, view: window }));
|
2017-07-22 02:17:25 +08:00
|
|
|
}}
|
2021-06-02 22:50:26 +08:00
|
|
|
/>
|
|
|
|
),
|
|
|
|
ENABLE_SAVE_AND_COPY_PUBLIC_CHAT
|
|
|
|
&& (
|
2018-01-20 01:38:04 +08:00
|
|
|
<DropdownListItem
|
2018-12-01 01:32:19 +08:00
|
|
|
data-test="chatCopy"
|
2017-07-28 04:45:40 +08:00
|
|
|
icon={copyIcon}
|
2017-07-22 02:17:25 +08:00
|
|
|
id="clipboardButton"
|
|
|
|
label={intl.formatMessage(intlMessages.copy)}
|
2018-01-20 01:38:04 +08:00
|
|
|
key={this.actionsKey[1]}
|
2021-06-02 22:50:26 +08:00
|
|
|
/>
|
|
|
|
),
|
2020-08-15 01:13:51 +08:00
|
|
|
!meetingIsBreakout && amIModerator && isMeteorConnected ? (
|
2017-07-28 04:45:40 +08:00
|
|
|
<DropdownListItem
|
2018-12-01 01:32:19 +08:00
|
|
|
data-test="chatClear"
|
2017-07-28 04:45:40 +08:00
|
|
|
icon={clearIcon}
|
|
|
|
label={intl.formatMessage(intlMessages.clear)}
|
2018-01-20 01:38:04 +08:00
|
|
|
key={this.actionsKey[2]}
|
2017-08-03 01:05:20 +08:00
|
|
|
onClick={ChatService.clearPublicChatHistory}
|
2017-07-28 04:45:40 +08:00
|
|
|
/>
|
2018-01-20 01:38:04 +08:00
|
|
|
) : null,
|
2017-07-22 02:17:25 +08:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2017-07-21 22:16:45 +08:00
|
|
|
render() {
|
|
|
|
const { intl } = this.props;
|
2019-06-25 02:06:02 +08:00
|
|
|
const { isSettingOpen } = this.state;
|
2017-07-21 22:16:45 +08:00
|
|
|
|
2017-07-22 02:17:25 +08:00
|
|
|
const availableActions = this.getAvailableActions();
|
|
|
|
|
2017-07-21 22:16:45 +08:00
|
|
|
return (
|
|
|
|
<Dropdown
|
2019-06-25 02:06:02 +08:00
|
|
|
isOpen={isSettingOpen}
|
2017-07-21 22:16:45 +08:00
|
|
|
onShow={this.onActionsShow}
|
|
|
|
onHide={this.onActionsHide}
|
|
|
|
>
|
2017-10-17 03:28:27 +08:00
|
|
|
<DropdownTrigger tabIndex={0}>
|
|
|
|
<Button
|
2018-01-09 10:43:34 +08:00
|
|
|
data-test="chatDropdownTrigger"
|
2017-10-17 03:28:27 +08:00
|
|
|
icon="more"
|
2019-03-20 01:11:48 +08:00
|
|
|
size="sm"
|
2017-10-17 03:28:27 +08:00
|
|
|
ghost
|
|
|
|
circle
|
|
|
|
hideLabel
|
2019-03-20 01:11:48 +08:00
|
|
|
color="dark"
|
2017-12-16 01:45:14 +08:00
|
|
|
label={intl.formatMessage(intlMessages.options)}
|
2017-10-24 22:52:49 +08:00
|
|
|
aria-label={intl.formatMessage(intlMessages.options)}
|
2017-12-16 01:45:14 +08:00
|
|
|
onClick={() => null}
|
2017-10-17 03:28:27 +08:00
|
|
|
/>
|
2017-07-21 22:16:45 +08:00
|
|
|
</DropdownTrigger>
|
|
|
|
<DropdownContent placement="bottom right">
|
2018-01-20 01:38:04 +08:00
|
|
|
<DropdownList>{availableActions}</DropdownList>
|
2017-07-21 22:16:45 +08:00
|
|
|
</DropdownContent>
|
|
|
|
</Dropdown>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withModalMounter(injectIntl(ChatDropdown));
|