ant-design/components/modal/index.jsx

77 lines
1.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-06-11 16:35:36 +08:00
function noop() {
}
2015-06-10 22:02:13 +08:00
let mousePosition;
2015-08-18 16:24:18 +08:00
Dom.addEventListener(document, 'mousemove', function onDocumentMousemove(e) {
mousePosition = {
x: e.pageX,
y: e.pageY
};
2015-08-18 16:24:18 +08:00
});
export default React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-modal',
onOk: noop,
onCancel: noop
};
},
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();
this.setState({
visible: false
});
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) {
if ('visible' in nextProps) {
let newState = {
visible: nextProps.visible
};
// 隐藏后去除按钮 loading 效果
if (!nextProps.visible) {
newState.confirmLoading = false;
}
this.setState(newState);
}
2015-06-10 22:02:13 +08:00
},
render() {
let loadingClass = this.state.confirmLoading ? ' ant-btn-loading' : '';
let props = this.props;
let defaultFooter = [
<button key="cancel" type="button" className="ant-btn ant-btn-lg" onClick={this.handleCancel}> </button>,
<button key="confirm"
type="button"
className={'ant-btn ant-btn-primary ant-btn-lg' + loadingClass}
onClick={this.handleOk}>
</button>
];
let footer = props.footer || defaultFooter;
let visible = this.state.visible;
return <Dialog transitionName="zoom" onClose={this.handleCancel}
maskAnimation="fade" width="500" footer={footer} {...props}
visible={visible} mousePosition={mousePosition} />;
2015-06-10 17:59:32 +08:00
}
2015-06-10 22:02:13 +08:00
});