2019-10-07 12:35:04 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { Text, TouchableHighlight, View } from 'react-native';
|
|
|
|
|
2019-10-15 14:08:23 +00:00
|
|
|
import { ColorSchemeRegistry } from '../../../base/color-scheme';
|
2019-10-07 12:35:04 +00:00
|
|
|
import { translate } from '../../../base/i18n';
|
|
|
|
import { Icon, IconCancelSelection } from '../../../base/icons';
|
|
|
|
import { connect } from '../../../base/redux';
|
2019-10-15 14:08:23 +00:00
|
|
|
import { type StyleType } from '../../../base/styles';
|
2021-10-20 19:29:21 +00:00
|
|
|
import {
|
|
|
|
setParams
|
|
|
|
} from '../../../conference/components/native/ConferenceNavigationContainerRef';
|
|
|
|
import { setPrivateMessageRecipient } from '../../actions.any';
|
2019-10-07 12:35:04 +00:00
|
|
|
import AbstractMessageRecipient, {
|
2019-10-15 14:08:23 +00:00
|
|
|
type Props as AbstractProps
|
2019-10-07 12:35:04 +00:00
|
|
|
} from '../AbstractMessageRecipient';
|
|
|
|
|
2019-10-15 14:08:23 +00:00
|
|
|
type Props = AbstractProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The color-schemed stylesheet of the feature.
|
|
|
|
*/
|
2021-10-20 19:29:21 +00:00
|
|
|
_styles: StyleType,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Redux dispatch function.
|
|
|
|
*/
|
|
|
|
dispatch: Function,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The participant object set for private messaging.
|
|
|
|
*/
|
|
|
|
privateMessageRecipient: Object,
|
2019-10-15 14:08:23 +00:00
|
|
|
};
|
2019-10-07 12:35:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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> {
|
2021-10-20 19:29:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor of the component.
|
|
|
|
*
|
|
|
|
* @param {Props} props - The props of the component.
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._onResetPrivateMessageRecipient = this._onResetPrivateMessageRecipient.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onResetPrivateMessageRecipient: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets private message recipient from state.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onResetPrivateMessageRecipient() {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
|
|
|
dispatch(setPrivateMessageRecipient());
|
|
|
|
|
|
|
|
setParams({
|
|
|
|
privateMessageRecipient: undefined
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-07 12:35:04 +00:00
|
|
|
/**
|
|
|
|
* Implements {@code PureComponent#render}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
2021-10-20 19:29:21 +00:00
|
|
|
* @returns {ReactElement}
|
2019-10-07 12:35:04 +00:00
|
|
|
*/
|
|
|
|
render() {
|
2021-10-20 19:29:21 +00:00
|
|
|
const { _styles, privateMessageRecipient, t } = this.props;
|
2019-10-07 12:35:04 +00:00
|
|
|
|
2021-10-20 19:29:21 +00:00
|
|
|
if (!privateMessageRecipient) {
|
2019-10-07 12:35:04 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2019-10-15 14:08:23 +00:00
|
|
|
<View style = { _styles.messageRecipientContainer }>
|
|
|
|
<Text style = { _styles.messageRecipientText }>
|
2019-10-07 12:35:04 +00:00
|
|
|
{ t('chat.messageTo', {
|
2021-10-20 19:29:21 +00:00
|
|
|
recipient: privateMessageRecipient.name
|
2019-10-07 12:35:04 +00:00
|
|
|
}) }
|
|
|
|
</Text>
|
2021-10-20 19:29:21 +00:00
|
|
|
<TouchableHighlight
|
|
|
|
onPress = { this._onResetPrivateMessageRecipient }>
|
2019-10-07 12:35:04 +00:00
|
|
|
<Icon
|
|
|
|
src = { IconCancelSelection }
|
2019-10-15 14:08:23 +00:00
|
|
|
style = { _styles.messageRecipientCancelIcon } />
|
2019-10-07 12:35:04 +00:00
|
|
|
</TouchableHighlight>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-15 14:08:23 +00:00
|
|
|
/**
|
|
|
|
* Maps part of the redux state to the props of this component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
_styles: ColorSchemeRegistry.get(state, 'Chat')
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-10-20 19:29:21 +00:00
|
|
|
export default translate(connect(_mapStateToProps)(MessageRecipient));
|