jiti-meet/react/features/chat/components/web/MessageRecipient.js

49 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-10-07 12:35:04 +00:00
// @flow
import React from 'react';
import { translate } from '../../../base/i18n';
import { Icon, IconCancelSelection } from '../../../base/icons';
import { connect } from '../../../base/redux';
import AbstractMessageRecipient, {
_mapDispatchToProps,
2019-10-15 14:08:23 +00:00
_mapStateToProps,
type Props
2019-10-07 12:35:04 +00:00
} from '../AbstractMessageRecipient';
/**
* Class to implement the displaying of the recipient of the next message.
*/
2019-10-15 14:08:23 +00:00
class MessageRecipient extends AbstractMessageRecipient<Props> {
2019-10-07 12:35:04 +00:00
/**
* Implements {@code PureComponent#render}.
*
* @inheritdoc
*/
render() {
const { _privateMessageRecipient } = this.props;
if (!_privateMessageRecipient) {
return null;
}
const { t } = this.props;
return (
<div id = 'chat-recipient'>
<span>
{ t('chat.messageTo', {
recipient: _privateMessageRecipient
}) }
</span>
<div onClick = { this.props._onRemovePrivateMessageRecipient }>
<Icon
src = { IconCancelSelection } />
</div>
</div>
);
}
}
export default translate(connect(_mapStateToProps, _mapDispatchToProps)(MessageRecipient));