2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-01-12 17:07:24 +08:00
|
|
|
import Dialog from 'rc-dialog';
|
2017-04-12 04:49:08 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2016-06-16 22:34:54 +08:00
|
|
|
import addEventListener from 'rc-util/lib/Dom/addEventListener';
|
2017-07-17 09:40:55 +08:00
|
|
|
import Button from '../button';
|
|
|
|
import { ButtonType } from '../button/button';
|
2016-01-12 17:07:24 +08:00
|
|
|
|
|
|
|
let mousePosition;
|
|
|
|
let mousePositionEventBinded;
|
|
|
|
|
2016-08-15 12:00:05 +08:00
|
|
|
export interface ModalProps {
|
|
|
|
/** 对话框是否可见*/
|
|
|
|
visible?: boolean;
|
|
|
|
/** 确定按钮 loading*/
|
|
|
|
confirmLoading?: boolean;
|
|
|
|
/** 标题*/
|
2016-09-19 10:17:07 +08:00
|
|
|
title?: React.ReactNode | string;
|
2016-08-15 12:00:05 +08:00
|
|
|
/** 是否显示右上角的关闭按钮*/
|
|
|
|
closable?: boolean;
|
|
|
|
/** 点击确定回调*/
|
2017-02-24 16:07:39 +08:00
|
|
|
onOk?: (e: React.MouseEvent<any>) => void;
|
2016-09-20 08:58:20 +08:00
|
|
|
/** 点击模态框右上角叉、取消按钮、Props.maskClosable 值为 true 时的遮罩层或键盘按下 Esc 时的回调*/
|
2016-10-19 17:51:33 +08:00
|
|
|
onCancel?: (e: React.MouseEvent<any>) => void;
|
2017-01-05 12:08:43 +08:00
|
|
|
afterClose?: () => void;
|
2016-08-15 12:00:05 +08:00
|
|
|
/** 宽度*/
|
|
|
|
width?: string | number;
|
|
|
|
/** 底部内容*/
|
|
|
|
footer?: React.ReactNode;
|
|
|
|
/** 确认按钮文字*/
|
|
|
|
okText?: string;
|
2017-07-16 17:42:02 +08:00
|
|
|
/** 确认按钮类型*/
|
|
|
|
okType?: ButtonType;
|
2016-08-15 12:00:05 +08:00
|
|
|
/** 取消按钮文字*/
|
|
|
|
cancelText?: string;
|
|
|
|
/** 点击蒙层是否允许关闭*/
|
|
|
|
maskClosable?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
wrapClassName?: string;
|
|
|
|
maskTransitionName?: string;
|
|
|
|
transitionName?: string;
|
|
|
|
className?: string;
|
2017-05-24 10:00:59 +08:00
|
|
|
getContainer?: (instance: React.ReactInstance) => HTMLElement;
|
2017-09-15 21:41:32 +08:00
|
|
|
zIndex?: number;
|
2016-08-15 12:00:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ModalContext {
|
|
|
|
antLocale?: {
|
|
|
|
Modal?: any,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-03-03 11:40:54 +08:00
|
|
|
export interface ModalFuncProps {
|
|
|
|
visible?: boolean;
|
|
|
|
title?: React.ReactNode | string;
|
|
|
|
content?: React.ReactNode | string;
|
|
|
|
onOk?: (func: Function) => any;
|
|
|
|
onCancel?: (func: Function) => any;
|
|
|
|
width?: string | number;
|
|
|
|
iconClassName?: string;
|
|
|
|
okText?: string;
|
2017-07-16 17:42:02 +08:00
|
|
|
okType?: ButtonType;
|
2017-03-03 11:40:54 +08:00
|
|
|
cancelText?: string;
|
|
|
|
iconType?: string;
|
2017-07-17 15:26:37 +08:00
|
|
|
maskClosable?: boolean;
|
2017-09-15 22:51:03 +08:00
|
|
|
zIndex?: number;
|
2017-03-03 11:40:54 +08:00
|
|
|
}
|
|
|
|
export type ModalFunc = (props: ModalFuncProps) => {
|
2017-03-23 21:15:49 +08:00
|
|
|
destroy: () => void,
|
|
|
|
};
|
2017-03-03 11:40:54 +08:00
|
|
|
|
2016-08-15 12:00:05 +08:00
|
|
|
export default class Modal extends React.Component<ModalProps, any> {
|
2017-03-03 11:40:54 +08:00
|
|
|
static info: ModalFunc;
|
|
|
|
static success: ModalFunc;
|
|
|
|
static error: ModalFunc;
|
|
|
|
static warn: ModalFunc;
|
|
|
|
static warning: ModalFunc;
|
|
|
|
static confirm: ModalFunc;
|
2016-08-15 12:00:05 +08:00
|
|
|
|
2016-03-29 17:33:37 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-modal',
|
|
|
|
width: 520,
|
|
|
|
transitionName: 'zoom',
|
2016-04-04 17:38:39 +08:00
|
|
|
maskTransitionName: 'fade',
|
2016-03-29 17:33:37 +08:00
|
|
|
confirmLoading: false,
|
|
|
|
visible: false,
|
2017-07-17 09:50:24 +08:00
|
|
|
okType: 'primary',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-03 17:43:38 +08:00
|
|
|
|
2016-03-29 17:33:37 +08:00
|
|
|
static propTypes = {
|
2016-03-14 11:46:48 +08:00
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
onOk: PropTypes.func,
|
|
|
|
onCancel: PropTypes.func,
|
|
|
|
okText: PropTypes.node,
|
|
|
|
cancelText: PropTypes.node,
|
|
|
|
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
|
|
confirmLoading: PropTypes.bool,
|
|
|
|
visible: PropTypes.bool,
|
|
|
|
align: PropTypes.object,
|
|
|
|
footer: PropTypes.node,
|
|
|
|
title: PropTypes.node,
|
|
|
|
closable: PropTypes.bool,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-14 11:46:48 +08:00
|
|
|
|
2016-03-29 17:33:37 +08:00
|
|
|
static contextTypes = {
|
2017-04-12 04:49:08 +08:00
|
|
|
antLocale: PropTypes.object,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 17:33:37 +08:00
|
|
|
|
2016-08-15 12:00:05 +08:00
|
|
|
context: ModalContext;
|
|
|
|
|
2016-03-29 17:33:37 +08:00
|
|
|
handleCancel = (e) => {
|
2016-10-24 12:04:26 +08:00
|
|
|
const onCancel = this.props.onCancel;
|
|
|
|
if (onCancel) {
|
|
|
|
onCancel(e);
|
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
2016-01-12 17:07:24 +08:00
|
|
|
|
2017-02-24 16:07:39 +08:00
|
|
|
handleOk = (e) => {
|
2016-10-24 12:04:26 +08:00
|
|
|
const onOk = this.props.onOk;
|
|
|
|
if (onOk) {
|
2017-02-24 16:07:39 +08:00
|
|
|
onOk(e);
|
2016-10-24 12:04:26 +08:00
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
2016-01-12 17:07:24 +08:00
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
if (mousePositionEventBinded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 只有点击事件支持从鼠标位置动画展开
|
2017-07-29 14:17:02 +08:00
|
|
|
addEventListener(document.documentElement, 'click', (e: MouseEvent) => {
|
2016-01-12 17:07:24 +08:00
|
|
|
mousePosition = {
|
|
|
|
x: e.pageX,
|
2016-05-11 09:32:33 +08:00
|
|
|
y: e.pageY,
|
2016-01-12 17:07:24 +08:00
|
|
|
};
|
2016-10-07 18:00:40 +08:00
|
|
|
// 100ms 内发生过点击事件,则从点击位置动画展示
|
2016-01-12 17:07:24 +08:00
|
|
|
// 否则直接 zoom 展示
|
|
|
|
// 这样可以兼容非点击方式展开
|
2016-10-07 18:00:40 +08:00
|
|
|
setTimeout(() => mousePosition = null, 100);
|
2016-01-12 17:07:24 +08:00
|
|
|
});
|
|
|
|
mousePositionEventBinded = true;
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|
2016-01-12 17:07:24 +08:00
|
|
|
|
|
|
|
render() {
|
2017-07-17 10:50:58 +08:00
|
|
|
let { okText, okType, cancelText, confirmLoading, footer, visible } = this.props;
|
2016-03-03 17:43:38 +08:00
|
|
|
|
2016-03-05 16:39:27 +08:00
|
|
|
if (this.context.antLocale && this.context.antLocale.Modal) {
|
|
|
|
okText = okText || this.context.antLocale.Modal.okText;
|
|
|
|
cancelText = cancelText || this.context.antLocale.Modal.cancelText;
|
2016-03-03 17:43:38 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 21:15:49 +08:00
|
|
|
const defaultFooter = [(
|
2016-08-29 20:48:47 +08:00
|
|
|
<Button
|
|
|
|
key="cancel"
|
2016-01-12 17:07:24 +08:00
|
|
|
size="large"
|
2016-06-06 13:54:10 +08:00
|
|
|
onClick={this.handleCancel}
|
|
|
|
>
|
2016-03-07 12:08:52 +08:00
|
|
|
{cancelText || '取消'}
|
2017-03-23 21:15:49 +08:00
|
|
|
</Button>
|
|
|
|
), (
|
2016-08-29 20:48:47 +08:00
|
|
|
<Button
|
|
|
|
key="confirm"
|
2017-07-16 17:42:02 +08:00
|
|
|
type={okType}
|
2016-01-12 17:07:24 +08:00
|
|
|
size="large"
|
2016-08-29 20:48:47 +08:00
|
|
|
loading={confirmLoading}
|
2016-06-06 13:54:10 +08:00
|
|
|
onClick={this.handleOk}
|
|
|
|
>
|
2016-03-07 12:08:52 +08:00
|
|
|
{okText || '确定'}
|
2017-03-23 21:15:49 +08:00
|
|
|
</Button>
|
|
|
|
)];
|
2016-08-29 20:48:47 +08:00
|
|
|
|
2016-01-13 22:22:33 +08:00
|
|
|
return (
|
2016-08-29 20:48:47 +08:00
|
|
|
<Dialog
|
|
|
|
onClose={this.handleCancel}
|
2017-03-24 14:41:41 +08:00
|
|
|
footer={footer === undefined ? defaultFooter : footer}
|
2016-08-29 20:48:47 +08:00
|
|
|
{...this.props}
|
|
|
|
visible={visible}
|
|
|
|
mousePosition={mousePosition}
|
2016-06-06 13:54:10 +08:00
|
|
|
/>
|
2016-01-13 22:22:33 +08:00
|
|
|
);
|
2016-01-12 17:07:24 +08:00
|
|
|
}
|
2016-03-29 17:33:37 +08:00
|
|
|
}
|