ant-design/components/modal/index.jsx

99 lines
2.2 KiB
React
Raw Normal View History

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
function noop() {}
2015-06-10 22:02:13 +08:00
let mousePosition;
2015-08-18 18:36:31 +08:00
let mousePositionEventBinded;
2015-09-11 16:46:28 +08:00
let AntModal = React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-modal',
onOk: noop,
2015-08-25 16:56:08 +08:00
onCancel: noop,
width: 520,
transitionName: 'zoom',
maskAnimation: 'fade',
confirmLoading: false,
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
},
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
};
// 20ms 内发生过点击事件,则从点击位置动画展示
2015-08-18 18:36:31 +08:00
// 否则直接 zoom 展示
// 这样可以兼容非点击方式展开
setTimeout(() => mousePosition = null, 20);
2015-08-18 18:36:31 +08:00
});
mousePositionEventBinded = true;
},
2015-06-10 22:02:13 +08:00
render() {
let props = this.props;
let defaultFooter = [
<Button key="cancel"
type="ghost"
size="large"
onClick={this.handleCancel}>
取消
</Button>,
<Button key="confirm"
type="primary"
2015-10-26 11:02:48 +08:00
size="large"
loading={props.confirmLoading}
onClick={this.handleOk}>
确定
</Button>
];
let footer = props.footer || defaultFooter;
2015-08-25 16:56:08 +08:00
return <Dialog onClose={this.handleCancel} footer={footer} {...props}
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) {
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) {
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) {
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;