2015-07-23 22:23:11 +08:00
|
|
|
import React from 'react';
|
|
|
|
import Dialog from 'rc-dialog';
|
2015-08-18 16:21:56 +08:00
|
|
|
import { Dom } from 'rc-util';
|
2015-06-11 16:35:36 +08:00
|
|
|
function noop() {
|
|
|
|
}
|
2015-06-10 22:02:13 +08:00
|
|
|
|
2015-08-18 13:15:43 +08:00
|
|
|
let mousePosition;
|
2015-08-18 16:24:18 +08:00
|
|
|
Dom.addEventListener(document, 'mousemove', function onDocumentMousemove(e) {
|
2015-08-18 13:15:43 +08:00
|
|
|
mousePosition = {
|
|
|
|
x: e.pageX,
|
|
|
|
y: e.pageY
|
2015-08-18 12:26:19 +08:00
|
|
|
};
|
2015-08-18 16:24:18 +08:00
|
|
|
});
|
2015-08-18 12:26:19 +08:00
|
|
|
|
2015-07-23 22:23:11 +08:00
|
|
|
export default React.createClass({
|
2015-08-18 11:46:07 +08:00
|
|
|
getDefaultProps() {
|
|
|
|
return {
|
|
|
|
prefixCls: 'ant-modal',
|
|
|
|
onOk: noop,
|
|
|
|
onCancel: noop
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-06-12 17:11:32 +08:00
|
|
|
getInitialState() {
|
|
|
|
return {
|
2015-08-18 11:46:07 +08:00
|
|
|
confirmLoading: false,
|
|
|
|
visible: this.props.visible
|
2015-06-12 17:11:32 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-06-10 22:02:13 +08:00
|
|
|
handleCancel() {
|
2015-08-17 23:42:52 +08:00
|
|
|
this.props.onCancel();
|
2015-08-18 11:46:07 +08:00
|
|
|
this.setState({
|
|
|
|
visible: false
|
|
|
|
});
|
2015-06-10 22:02:13 +08:00
|
|
|
},
|
|
|
|
|
2015-07-22 17:32:22 +08:00
|
|
|
handleOk() {
|
2015-06-12 17:11:32 +08:00
|
|
|
this.setState({
|
2015-07-22 17:32:22 +08:00
|
|
|
confirmLoading: true
|
2015-06-12 17:11:32 +08:00
|
|
|
});
|
2015-08-17 23:46:09 +08:00
|
|
|
this.props.onOk();
|
2015-06-12 17:11:32 +08:00
|
|
|
},
|
|
|
|
|
2015-07-22 17:32:22 +08:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if ('visible' in nextProps) {
|
2015-08-18 11:46:07 +08:00
|
|
|
let newState = {
|
|
|
|
visible: nextProps.visible
|
|
|
|
};
|
2015-07-22 17:32:22 +08:00
|
|
|
// 隐藏后去除按钮 loading 效果
|
|
|
|
if (!nextProps.visible) {
|
2015-08-18 11:46:07 +08:00
|
|
|
newState.confirmLoading = false;
|
2015-07-22 17:32:22 +08:00
|
|
|
}
|
2015-08-18 11:46:07 +08:00
|
|
|
this.setState(newState);
|
2015-07-22 17:32:22 +08:00
|
|
|
}
|
2015-06-10 22:02:13 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
2015-08-18 11:46:07 +08:00
|
|
|
let loadingClass = this.state.confirmLoading ? ' ant-btn-loading' : '';
|
|
|
|
let props = this.props;
|
|
|
|
let defaultFooter = [
|
2015-07-22 17:32:22 +08:00
|
|
|
<button key="cancel" type="button" className="ant-btn ant-btn-lg" onClick={this.handleCancel}>取 消</button>,
|
2015-08-18 11:46:07 +08:00
|
|
|
<button key="confirm"
|
|
|
|
type="button"
|
|
|
|
className={'ant-btn ant-btn-primary ant-btn-lg' + loadingClass}
|
|
|
|
onClick={this.handleOk}>
|
|
|
|
确 定
|
2015-07-22 17:32:22 +08:00
|
|
|
</button>
|
|
|
|
];
|
2015-08-18 11:46:07 +08:00
|
|
|
let footer = props.footer || defaultFooter;
|
|
|
|
let visible = this.state.visible;
|
2015-08-18 12:26:19 +08:00
|
|
|
return <Dialog transitionName="zoom" onClose={this.handleCancel}
|
|
|
|
maskAnimation="fade" width="500" footer={footer} {...props}
|
2015-08-18 13:15:43 +08:00
|
|
|
visible={visible} mousePosition={mousePosition} />;
|
2015-06-10 17:59:32 +08:00
|
|
|
}
|
2015-06-10 22:02:13 +08:00
|
|
|
});
|