2015-09-19 01:39:16 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket 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.
|
|
|
|
*/
|
|
|
|
|
2015-11-30 22:11:04 +08:00
|
|
|
/*
|
|
|
|
* Usage:
|
|
|
|
* Modal.createDialog(ErrorDialog, {
|
|
|
|
* title: "some text", (default: "Error")
|
|
|
|
* description: "some more text",
|
|
|
|
* button: "Button Text",
|
|
|
|
* onClose: someFunction,
|
|
|
|
* focus: true|false (default: true)
|
|
|
|
* });
|
|
|
|
*/
|
|
|
|
|
2015-09-19 01:39:16 +08:00
|
|
|
var React = require("react");
|
|
|
|
|
2015-11-30 22:11:04 +08:00
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'ErrorDialog',
|
2015-09-19 01:39:16 +08:00
|
|
|
propTypes: {
|
|
|
|
title: React.PropTypes.string,
|
|
|
|
button: React.PropTypes.string,
|
|
|
|
focus: React.PropTypes.bool,
|
|
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
title: "Error",
|
|
|
|
description: "An error has occurred.",
|
|
|
|
button: "OK",
|
|
|
|
focus: true,
|
|
|
|
};
|
|
|
|
},
|
2015-11-30 22:11:04 +08:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_ErrorDialog">
|
|
|
|
<div className="mx_ErrorDialogTitle">
|
|
|
|
{this.props.title}
|
|
|
|
</div>
|
|
|
|
<div className="mx_Dialog_content">
|
|
|
|
{this.props.description}
|
|
|
|
</div>
|
|
|
|
<div className="mx_Dialog_buttons">
|
|
|
|
<button onClick={this.props.onFinished} autoFocus={this.props.focus}>
|
|
|
|
{this.props.button}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|