2017-04-21 14:56:59 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Copyright 2017 Michael Telatynski
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-06 17:04:46 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2017-05-28 15:27:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-04-21 14:56:59 +03:00
|
|
|
import dis from '../../../dispatcher';
|
2019-12-16 20:14:03 +03:00
|
|
|
import {Key} from '../../../Keyboard';
|
2017-04-21 14:56:59 +03:00
|
|
|
|
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2017-04-21 14:56:59 +03:00
|
|
|
displayName: 'ForwardMessage',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-12-26 04:03:18 +03:00
|
|
|
onCancelClick: PropTypes.func.isRequired,
|
2017-04-21 14:56:59 +03:00
|
|
|
},
|
|
|
|
|
2020-03-31 23:14:17 +03:00
|
|
|
componentDidMount: function() {
|
2017-04-21 14:56:59 +03:00
|
|
|
dis.dispatch({
|
2017-10-25 13:09:48 +03:00
|
|
|
action: 'panel_disable',
|
|
|
|
middleDisabled: true,
|
2017-04-21 14:56:59 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
document.addEventListener('keydown', this._onKeyDown);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.dispatch({
|
2017-10-25 13:09:48 +03:00
|
|
|
action: 'panel_disable',
|
|
|
|
middleDisabled: false,
|
2017-04-21 14:56:59 +03:00
|
|
|
});
|
|
|
|
document.removeEventListener('keydown', this._onKeyDown);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onKeyDown: function(ev) {
|
2019-12-16 20:14:03 +03:00
|
|
|
switch (ev.key) {
|
|
|
|
case Key.ESCAPE:
|
2017-04-21 14:56:59 +03:00
|
|
|
this.props.onCancelClick();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_ForwardMessage">
|
2017-09-28 13:21:06 +03:00
|
|
|
<h1>{ _t('Please select the destination room for this message') }</h1>
|
2017-04-21 14:56:59 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|