2019-10-07 12:35:04 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
|
|
import { IconMessage } from '../../../base/icons';
|
|
|
|
import { connect } from '../../../base/redux';
|
2019-11-08 13:40:20 +00:00
|
|
|
import {
|
|
|
|
_mapDispatchToProps,
|
|
|
|
_mapStateToProps as _abstractMapStateToProps,
|
|
|
|
type Props as AbstractProps
|
|
|
|
} from '../../../chat/components/PrivateMessageButton';
|
2020-07-24 12:14:33 +00:00
|
|
|
import { isButtonEnabled } from '../../../toolbox/functions.web';
|
2019-10-07 12:35:04 +00:00
|
|
|
|
|
|
|
import RemoteVideoMenuButton from './RemoteVideoMenuButton';
|
|
|
|
|
2019-11-08 13:40:20 +00:00
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
|
|
|
|
type Props = AbstractProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the private chat functionality is disabled, hence the button is not visible.
|
|
|
|
*/
|
|
|
|
_hidden: boolean
|
|
|
|
};
|
|
|
|
|
2019-10-07 12:35:04 +00:00
|
|
|
/**
|
|
|
|
* A custom implementation of the PrivateMessageButton specialized for
|
|
|
|
* the web version of the remote video menu. When the web platform starts to use
|
|
|
|
* the {@code AbstractButton} component for the remote video menu, we can get rid
|
|
|
|
* of this component and use the generic button in the chat feature.
|
|
|
|
*/
|
|
|
|
class PrivateMessageMenuButton extends Component<Props> {
|
|
|
|
/**
|
|
|
|
* Instantiates a new Component instance.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._onClick = this._onClick.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2019-11-08 13:40:20 +00:00
|
|
|
const { participantID, t, _hidden } = this.props;
|
|
|
|
|
|
|
|
if (_hidden) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-10-07 12:35:04 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<RemoteVideoMenuButton
|
|
|
|
buttonText = { t('toolbar.privateMessage') }
|
|
|
|
icon = { IconMessage }
|
|
|
|
id = { `privmsglink_${participantID}` }
|
|
|
|
onClick = { this._onClick } />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClick: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to be invoked on pressing the button.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onClick() {
|
|
|
|
const { _participant, _setPrivateMessageRecipient } = this.props;
|
|
|
|
|
|
|
|
_setPrivateMessageRecipient(_participant);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-08 13:40:20 +00:00
|
|
|
/**
|
|
|
|
* Maps part of the Redux store to the props of this component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @param {Props} ownProps - The own props of the component.
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state: Object, ownProps: Props): $Shape<Props> {
|
|
|
|
return {
|
|
|
|
..._abstractMapStateToProps(state, ownProps),
|
|
|
|
_hidden: typeof interfaceConfig !== 'undefined'
|
|
|
|
&& (interfaceConfig.DISABLE_PRIVATE_MESSAGES || !isButtonEnabled('chat'))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-10-07 12:35:04 +00:00
|
|
|
export default translate(connect(_mapStateToProps, _mapDispatchToProps)(PrivateMessageMenuButton));
|