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-09-07 11:48:57 +08:00
|
|
|
import confirm from './confirm';
|
2015-11-03 20:06:44 +08:00
|
|
|
import Button from '../button';
|
2015-09-07 11:48:57 +08:00
|
|
|
|
2015-10-27 19:57:18 +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 18:36:31 +08:00
|
|
|
let mousePositionEventBinded;
|
2015-08-18 12:26:19 +08:00
|
|
|
|
2015-09-11 16:46:28 +08:00
|
|
|
let AntModal = React.createClass({
|
2015-08-18 11:46:07 +08:00
|
|
|
getDefaultProps() {
|
|
|
|
return {
|
|
|
|
prefixCls: 'ant-modal',
|
|
|
|
onOk: noop,
|
2015-08-25 16:56:08 +08:00
|
|
|
onCancel: noop,
|
|
|
|
width: 520,
|
|
|
|
transitionName: 'zoom',
|
2015-10-27 19:57:18 +08:00
|
|
|
maskAnimation: 'fade',
|
2015-08-18 11:46:07 +08:00
|
|
|
confirmLoading: false,
|
2015-10-27 19:57:18 +08:00
|
|
|
visible: false
|
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-06-10 22:02:13 +08:00
|
|
|
},
|
|
|
|
|
2015-07-22 17:32:22 +08:00
|
|
|
handleOk() {
|
2015-08-17 23:46:09 +08:00
|
|
|
this.props.onOk();
|
2015-06-12 17:11:32 +08:00
|
|
|
},
|
|
|
|
|
2015-08-18 18:36:31 +08:00
|
|
|
componentDidMount() {
|
|
|
|
if (mousePositionEventBinded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 只有点击事件支持从鼠标位置动画展开
|
|
|
|
Dom.addEventListener(document.body, 'click', function onDocumentMousemove(e) {
|
|
|
|
mousePosition = {
|
|
|
|
x: e.pageX,
|
|
|
|
y: e.pageY
|
|
|
|
};
|
2015-08-19 10:09:44 +08:00
|
|
|
// 20ms 内发生过点击事件,则从点击位置动画展示
|
2015-08-18 18:36:31 +08:00
|
|
|
// 否则直接 zoom 展示
|
|
|
|
// 这样可以兼容非点击方式展开
|
2015-08-19 10:09:44 +08:00
|
|
|
setTimeout(() => mousePosition = null, 20);
|
2015-08-18 18:36:31 +08:00
|
|
|
});
|
|
|
|
mousePositionEventBinded = true;
|
|
|
|
},
|
|
|
|
|
2015-06-10 22:02:13 +08:00
|
|
|
render() {
|
2015-08-18 11:46:07 +08:00
|
|
|
let props = this.props;
|
|
|
|
let defaultFooter = [
|
2015-10-26 11:08:36 +08:00
|
|
|
<Button key="cancel"
|
|
|
|
type="ghost"
|
|
|
|
size="large"
|
|
|
|
onClick={this.handleCancel}>
|
|
|
|
取消
|
|
|
|
</Button>,
|
2015-10-08 15:13:04 +08:00
|
|
|
<Button key="confirm"
|
|
|
|
type="primary"
|
2015-10-26 11:02:48 +08:00
|
|
|
size="large"
|
2015-10-27 19:57:18 +08:00
|
|
|
loading={props.confirmLoading}
|
2015-08-18 11:46:07 +08:00
|
|
|
onClick={this.handleOk}>
|
2015-10-26 11:08:36 +08:00
|
|
|
确定
|
2015-10-08 15:13:04 +08:00
|
|
|
</Button>
|
2015-07-22 17:32:22 +08:00
|
|
|
];
|
2015-08-18 11:46:07 +08:00
|
|
|
let footer = props.footer || defaultFooter;
|
2015-08-25 16:56:08 +08:00
|
|
|
return <Dialog onClose={this.handleCancel} footer={footer} {...props}
|
2015-10-27 19:57:18 +08:00
|
|
|
visible={props.visible} mousePosition={mousePosition} />;
|
2015-06-10 17:59:32 +08:00
|
|
|
}
|
2015-06-10 22:02:13 +08:00
|
|
|
});
|
2015-09-07 11:48:57 +08:00
|
|
|
|
2015-09-11 16:46:28 +08:00
|
|
|
AntModal.info = function (props) {
|
2015-10-02 15:41:04 +08:00
|
|
|
props.iconClassName = 'info-circle';
|
2015-09-07 11:48:57 +08:00
|
|
|
props.okCancel = false;
|
|
|
|
return confirm(props);
|
|
|
|
};
|
|
|
|
|
2015-09-11 16:46:28 +08:00
|
|
|
AntModal.success = function (props) {
|
2015-10-02 15:41:04 +08:00
|
|
|
props.iconClassName = 'check-circle';
|
2015-09-07 11:48:57 +08:00
|
|
|
props.okCancel = false;
|
|
|
|
return confirm(props);
|
|
|
|
};
|
|
|
|
|
2015-09-11 16:46:28 +08:00
|
|
|
AntModal.error = function (props) {
|
2015-10-02 15:41:04 +08:00
|
|
|
props.iconClassName = 'exclamation-circle';
|
2015-09-07 11:48:57 +08:00
|
|
|
props.okCancel = false;
|
|
|
|
return confirm(props);
|
|
|
|
};
|
|
|
|
|
2015-09-11 16:46:28 +08:00
|
|
|
AntModal.confirm = function (props) {
|
2015-09-07 11:48:57 +08:00
|
|
|
props.okCancel = true;
|
|
|
|
return confirm(props);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AntModal;
|