2017-01-24 18:54:05 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
|
|
|
import * as KeyCode from '../../../KeyCode';
|
2017-02-13 19:03:21 +03:00
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
2017-03-12 23:13:39 +03:00
|
|
|
import sdk from '../../../index';
|
2017-01-24 18:54:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic container for modal dialogs.
|
|
|
|
*
|
|
|
|
* Includes a div for the title, and a keypress handler which cancels the
|
|
|
|
* dialog on escape.
|
|
|
|
*/
|
|
|
|
export default React.createClass({
|
|
|
|
displayName: 'BaseDialog',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
// onFinished callback to call when Escape is pressed
|
|
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
|
|
|
|
|
|
// callback to call when Enter is pressed
|
|
|
|
onEnterPressed: React.PropTypes.func,
|
|
|
|
|
|
|
|
// CSS class to apply to dialog div
|
|
|
|
className: React.PropTypes.string,
|
|
|
|
|
|
|
|
// Title for the dialog.
|
|
|
|
// (could probably actually be something more complicated than a string if desired)
|
|
|
|
title: React.PropTypes.string.isRequired,
|
|
|
|
|
|
|
|
// children should be the content of the dialog
|
|
|
|
children: React.PropTypes.node,
|
|
|
|
},
|
|
|
|
|
2017-04-22 06:57:27 +03:00
|
|
|
componentWillMount: function() {
|
|
|
|
this.priorActiveElement = document.activeElement;
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
if (this.priorActiveElement !== null) {
|
|
|
|
this.priorActiveElement.focus();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-05-09 13:27:06 +03:00
|
|
|
// Don't let key{down,press} events escape the modal. Consume them all.
|
|
|
|
_eatKeyEvent: function(e) {
|
|
|
|
e.stopPropagation();
|
2017-05-07 22:43:42 +03:00
|
|
|
},
|
|
|
|
|
2017-04-26 19:37:52 +03:00
|
|
|
// Must be when the key is released (and not pressed) otherwise componentWillUnmount
|
|
|
|
// will focus another element which will receive future key events
|
|
|
|
_onKeyUp: function(e) {
|
2017-01-24 18:54:05 +03:00
|
|
|
if (e.keyCode === KeyCode.ESCAPE) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onFinished();
|
|
|
|
} else if (e.keyCode === KeyCode.ENTER) {
|
|
|
|
if (this.props.onEnterPressed) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onEnterPressed(e);
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 13:27:06 +03:00
|
|
|
// Consume all keyup events while Modal is open
|
|
|
|
e.stopPropagation();
|
2017-01-24 18:54:05 +03:00
|
|
|
},
|
|
|
|
|
2017-02-13 19:03:21 +03:00
|
|
|
_onCancelClick: function(e) {
|
|
|
|
this.props.onFinished();
|
|
|
|
},
|
|
|
|
|
2017-01-24 18:54:05 +03:00
|
|
|
render: function() {
|
2017-03-12 23:03:05 +03:00
|
|
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2017-04-22 06:57:27 +03:00
|
|
|
|
2017-01-24 18:54:05 +03:00
|
|
|
return (
|
2017-05-09 13:27:06 +03:00
|
|
|
<div onKeyUp={this._onKeyUp}
|
|
|
|
onKeyDown={this._eatKeyEvent}
|
|
|
|
onKeyPress={this._eatKeyEvent}
|
|
|
|
className={this.props.className}
|
|
|
|
>
|
2017-02-13 19:03:21 +03:00
|
|
|
<AccessibleButton onClick={this._onCancelClick}
|
|
|
|
className="mx_Dialog_cancelButton"
|
|
|
|
>
|
2017-03-12 23:03:05 +03:00
|
|
|
<TintableSvg src="img/icons-close-button.svg" width="35" height="35" />
|
2017-02-13 19:03:21 +03:00
|
|
|
</AccessibleButton>
|
2017-01-24 18:54:05 +03:00
|
|
|
<div className='mx_Dialog_title'>
|
|
|
|
{ this.props.title }
|
|
|
|
</div>
|
|
|
|
{ this.props.children }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|