4f83f6cf25
leaving it in the Modal manager. We are using Modal manager to load other components not just BaseDialog and its subclasses and they might require different keyboard handling. Also depend on focus-trap-react rather than react-focus-trap for locking keyboard focus inside the dialog. The experience is much nicer and even the FocusTrap element it-self no longer gains the focus. On a side note using the FocusTrap element outside the dialog (on its parent) stops it from working properly.
95 lines
3.0 KiB
JavaScript
95 lines
3.0 KiB
JavaScript
/*
|
|
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 FocusTrap from 'focus-trap-react';
|
|
|
|
import * as KeyCode from '../../../KeyCode';
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
|
import sdk from '../../../index';
|
|
|
|
/**
|
|
* 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,
|
|
|
|
// 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,
|
|
|
|
// Id of content element
|
|
// If provided, this is used to add a aria-describedby attribute
|
|
contentId: React.PropTypes.string
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
this.applicationNode = document.getElementById('matrixchat');
|
|
if (this.applicationNode) {
|
|
this.applicationNode.setAttribute('aria-hidden', 'true');
|
|
}
|
|
},
|
|
|
|
componentWillUnmount: function() {
|
|
if (this.applicationNode) {
|
|
this.applicationNode.setAttribute('aria-hidden', 'false');
|
|
}
|
|
},
|
|
|
|
_onKeyDown: function(e) {
|
|
if (e.keyCode === KeyCode.ESCAPE) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
this.props.onFinished();
|
|
}
|
|
},
|
|
|
|
_onCancelClick: function(e) {
|
|
this.props.onFinished();
|
|
},
|
|
|
|
render: function() {
|
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
|
|
|
return (
|
|
<FocusTrap onKeyDown={this._onKeyDown} className={this.props.className} role="dialog" aria-labelledby='mx_BaseDialog_title' aria-describedby={this.props.contentId}>
|
|
<AccessibleButton onClick={this._onCancelClick}
|
|
className="mx_Dialog_cancelButton"
|
|
>
|
|
<TintableSvg src="img/icons-close-button.svg" width="35" height="35" />
|
|
</AccessibleButton>
|
|
<div className='mx_Dialog_title' id='mx_BaseDialog_title'>
|
|
{ this.props.title }
|
|
</div>
|
|
{ this.props.children }
|
|
</FocusTrap>
|
|
);
|
|
},
|
|
});
|