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';
|
2017-05-28 15:27:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2019-12-16 20:14:03 +03:00
|
|
|
import {Key} from '../../../Keyboard';
|
2017-04-21 14:56:59 +03:00
|
|
|
|
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
export default class ForwardMessage extends React.Component {
|
|
|
|
static propTypes = {
|
2017-12-26 04:03:18 +03:00
|
|
|
onCancelClick: PropTypes.func.isRequired,
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2017-04-21 14:56:59 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
componentDidMount() {
|
2017-04-21 14:56:59 +03:00
|
|
|
document.addEventListener('keydown', this._onKeyDown);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2017-04-21 14:56:59 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
componentWillUnmount() {
|
2017-04-21 14:56:59 +03:00
|
|
|
document.removeEventListener('keydown', this._onKeyDown);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2017-04-21 14:56:59 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
_onKeyDown = 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;
|
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
};
|
2017-04-21 14:56:59 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
render() {
|
2017-04-21 14:56:59 +03:00
|
|
|
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>
|
|
|
|
);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
|
|
|
}
|