ant-design/components/modal/index.jsx

119 lines
2.7 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';
import { Button } from '../button';
2015-09-07 11:48:57 +08:00
2015-06-11 16:35:36 +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',
2015-09-11 17:11:00 +08:00
maskAnimation: 'fade'
};
},
2015-06-12 17:11:32 +08:00
getInitialState() {
return {
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-06-10 22:02:13 +08:00
},
handleOk() {
2015-06-12 17:11:32 +08:00
this.setState({
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
},
componentWillReceiveProps(nextProps) {
let newState = {};
if ('visible' in nextProps) {
newState.visible = nextProps.visible;
// 隐藏后默认去除按钮 loading 效果
if (!nextProps.visible) {
newState.confirmLoading = false;
}
}
if ('confirmLoading' in nextProps) {
2015-10-20 10:45:49 +08:00
newState.confirmLoading = !!nextProps.confirmLoading;
}
this.setState(newState);
2015-06-10 22:02:13 +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" size="lg" onClick={this.handleCancel}> </Button>,
<Button key="confirm"
type="primary"
size="lg"
loading={this.state.confirmLoading}
onClick={this.handleOk}>
</Button>
];
let footer = props.footer || defaultFooter;
let visible = this.state.visible;
2015-08-25 16:56:08 +08:00
return <Dialog onClose={this.handleCancel} footer={footer} {...props}
visible={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;