You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB

import React from 'react';
import Dialog from 'rc-dialog';
10 years ago
function noop() {
}
10 years ago
export default React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-modal',
onOk: noop,
onCancel: noop
};
},
getInitialState() {
return {
confirmLoading: false,
visible: this.props.visible
};
},
10 years ago
handleCancel() {
this.props.onCancel();
this.setState({
visible: false
});
10 years ago
},
handleOk() {
this.setState({
confirmLoading: true
});
this.props.onOk();
},
componentWillReceiveProps(nextProps) {
if ('visible' in nextProps) {
let newState = {
visible: nextProps.visible
};
// 隐藏后去除按钮 loading 效果
if (!nextProps.visible) {
newState.confirmLoading = false;
}
this.setState(newState);
}
10 years ago
},
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} />;
}
10 years ago
});