mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:28:05 +08:00
34 lines
762 B
JavaScript
34 lines
762 B
JavaScript
'use strict';
|
|
|
|
var React = require('react');
|
|
var Dialog = require('rc-dialog');
|
|
function noop(){}
|
|
|
|
var Modal = React.createClass({
|
|
handleCancel() {
|
|
this.refs.d.requestClose();
|
|
},
|
|
|
|
getDefaultProps(){
|
|
return {
|
|
onOk:noop,
|
|
onCancel:noop,
|
|
onBeforeClose:noop
|
|
};
|
|
},
|
|
|
|
handleOk() {
|
|
this.props.onOk();
|
|
},
|
|
|
|
render() {
|
|
var props = this.props;
|
|
var footer = [
|
|
<button type="button" className="ant-btn-default ant-btn" onClick={this.handleCancel}>取 消</button>,
|
|
<button type="button" className="ant-btn-primary ant-btn" onClick={this.handleOk}>确 定</button>
|
|
];
|
|
return <Dialog animation="zoom" maskAnimation="fade" width="500" footer={footer} {...props} ref="d"/>
|
|
}
|
|
});
|
|
|
|
module.exports = Modal; |