2017-11-16 18:26:14 +00:00
|
|
|
// @flow
|
|
|
|
|
2017-05-03 23:57:52 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2017-10-02 23:08:07 +00:00
|
|
|
import { Dialog, hideDialog } from '../../base/dialog';
|
2017-05-03 23:57:52 +00:00
|
|
|
import { translate } from '../../base/i18n';
|
|
|
|
import { getParticipantById } from '../../base/participants';
|
2019-03-21 16:38:29 +00:00
|
|
|
import { connect } from '../../base/redux';
|
2017-05-03 23:57:52 +00:00
|
|
|
|
|
|
|
declare var APP: Object;
|
|
|
|
|
|
|
|
/**
|
2018-10-30 05:02:23 +00:00
|
|
|
* The type of the React {@code Component} props of
|
|
|
|
* {@link RemoteControlAuthorizationDialog}.
|
2017-05-03 23:57:52 +00:00
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
type Props = {
|
|
|
|
|
2017-05-03 23:57:52 +00:00
|
|
|
/**
|
2018-10-30 05:02:23 +00:00
|
|
|
* The display name of the participant who is requesting authorization for
|
|
|
|
* remote desktop control session.
|
|
|
|
*/
|
|
|
|
_displayName: string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to show/hide the dialog on cancel.
|
2017-05-03 23:57:52 +00:00
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
dispatch: Function,
|
2017-05-03 23:57:52 +00:00
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
/**
|
|
|
|
* The ID of the participant who is requesting authorization for remote
|
|
|
|
* desktop control session.
|
|
|
|
*/
|
|
|
|
participantId: string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to obtain translated strings.
|
|
|
|
*/
|
|
|
|
t: Function
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements a dialog for remote control authorization.
|
|
|
|
*/
|
|
|
|
class RemoteControlAuthorizationDialog extends Component<Props> {
|
2017-05-03 23:57:52 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new RemoteControlAuthorizationDialog instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
constructor(props: Props) {
|
2017-05-03 23:57:52 +00:00
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._onCancel = this._onCancel.bind(this);
|
|
|
|
this._onSubmit = this._onSubmit.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Dialog
|
2019-03-06 17:23:53 +00:00
|
|
|
okKey = { 'dialog.allow' }
|
2017-05-03 23:57:52 +00:00
|
|
|
onCancel = { this._onCancel }
|
|
|
|
onSubmit = { this._onSubmit }
|
|
|
|
titleKey = 'dialog.remoteControlTitle'
|
|
|
|
width = 'small'>
|
|
|
|
{
|
2017-06-15 00:40:51 +00:00
|
|
|
this.props.t(
|
|
|
|
'dialog.remoteControlRequestMessage',
|
|
|
|
{ user: this.props._displayName })
|
2017-05-03 23:57:52 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
this._getAdditionalMessage()
|
|
|
|
}
|
|
|
|
</Dialog>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders additional message text for the dialog.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_getAdditionalMessage() {
|
|
|
|
// FIXME: Once we have this information in redux we should
|
|
|
|
// start getting it from there.
|
2017-07-09 21:34:08 +00:00
|
|
|
if (APP.conference.isSharingScreen
|
|
|
|
&& APP.conference.getDesktopSharingSourceType() === 'screen') {
|
2017-05-03 23:57:52 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<br />
|
|
|
|
{ this.props.t('dialog.remoteControlShareScreenWarning') }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-11-16 18:26:14 +00:00
|
|
|
_onCancel: () => boolean;
|
|
|
|
|
2017-05-03 23:57:52 +00:00
|
|
|
/**
|
|
|
|
* Notifies the remote control module about the denial of the remote control
|
|
|
|
* request.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {boolean} Returns true to close the dialog.
|
|
|
|
*/
|
|
|
|
_onCancel() {
|
|
|
|
// FIXME: This should be action one day.
|
|
|
|
APP.remoteControl.receiver.deny(this.props.participantId);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-16 18:26:14 +00:00
|
|
|
_onSubmit: () => boolean;
|
|
|
|
|
2017-05-03 23:57:52 +00:00
|
|
|
/**
|
|
|
|
* Notifies the remote control module that the remote control request is
|
|
|
|
* accepted.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {boolean} Returns false to prevent closure because the dialog is
|
|
|
|
* closed manually to be sure that if the desktop picker dialog can be
|
|
|
|
* displayed (if this dialog is displayed when we try to display the desktop
|
|
|
|
* picker window, the action will be ignored).
|
|
|
|
*/
|
|
|
|
_onSubmit() {
|
|
|
|
this.props.dispatch(hideDialog());
|
|
|
|
|
|
|
|
// FIXME: This should be action one day.
|
|
|
|
APP.remoteControl.receiver.grant(this.props.participantId);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the Redux state to the RemoteControlAuthorizationDialog's
|
|
|
|
* props.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @param {Object} ownProps - The React Component props passed to the associated
|
|
|
|
* (instance of) RemoteControlAuthorizationDialog.
|
|
|
|
* @private
|
|
|
|
* @returns {{
|
|
|
|
* _displayName: string
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state, ownProps) {
|
|
|
|
const { _displayName, participantId } = ownProps;
|
2018-05-22 22:41:53 +00:00
|
|
|
const participant = getParticipantById(state, participantId);
|
2017-05-03 23:57:52 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
_displayName: participant ? participant.name : _displayName
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(
|
|
|
|
connect(_mapStateToProps)(RemoteControlAuthorizationDialog));
|