ant-design/components/modal/Modal.tsx

208 lines
5.5 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
2016-01-12 17:07:24 +08:00
import Dialog from 'rc-dialog';
import PropTypes from 'prop-types';
2018-07-31 17:05:07 +08:00
import classNames from 'classnames';
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, NativeButtonProps } from '../button/button';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import { getConfirmLocale } from './locale';
2016-01-12 17:07:24 +08:00
let mousePosition: { x: number, y: number } | null;
let mousePositionEventBinded: boolean;
2016-01-12 17:07:24 +08:00
export interface ModalProps {
2018-07-31 17:05:07 +08:00
prefixCls?: string;
/** 对话框是否可见*/
visible?: boolean;
/** 确定按钮 loading*/
confirmLoading?: boolean;
/** 标题*/
title?: React.ReactNode | string;
/** 是否显示右上角的关闭按钮*/
closable?: boolean;
/** 点击确定回调*/
onOk?: (e: React.MouseEvent<any>) => void;
/** 点击模态框右上角叉、取消按钮、Props.maskClosable 值为 true 时的遮罩层或键盘按下 Esc 时的回调*/
2016-10-19 17:51:33 +08:00
onCancel?: (e: React.MouseEvent<any>) => void;
afterClose?: () => void;
2018-07-31 17:05:07 +08:00
/** 居中 */
centered?: boolean;
/** 宽度*/
width?: string | number;
/** 底部内容*/
footer?: React.ReactNode;
/** 确认按钮文字*/
okText?: string;
/** 确认按钮类型*/
okType?: ButtonType;
/** 取消按钮文字*/
cancelText?: string;
/** 点击蒙层是否允许关闭*/
maskClosable?: boolean;
okButtonProps?: NativeButtonProps;
cancelButtonProps?: NativeButtonProps;
2017-12-28 15:13:06 +08:00
destroyOnClose?: boolean;
style?: React.CSSProperties;
wrapClassName?: string;
maskTransitionName?: string;
transitionName?: string;
className?: string;
getContainer?: (instance: React.ReactInstance) => HTMLElement;
2017-09-15 21:41:32 +08:00
zIndex?: number;
2017-12-01 10:29:48 +08:00
bodyStyle?: React.CSSProperties;
maskStyle?: React.CSSProperties;
mask?: boolean;
keyboard?: boolean;
wrapProps?: any;
}
export interface ModalFuncProps {
prefixCls?: string;
className?: string;
visible?: boolean;
title?: React.ReactNode;
content?: React.ReactNode;
onOk?: (...args: any[]) => any | PromiseLike<any>;
onCancel?: (...args: any[]) => any | PromiseLike<any>;
2018-07-31 17:05:07 +08:00
centered?: boolean;
width?: string | number;
iconClassName?: string;
okText?: string;
okType?: ButtonType;
cancelText?: string;
iconType?: string;
maskClosable?: boolean;
2017-09-15 22:51:03 +08:00
zIndex?: number;
okCancel?: boolean;
style?: React.CSSProperties;
type?: string;
keyboard?: boolean;
}
export type ModalFunc = (props: ModalFuncProps) => {
destroy: () => void,
};
export interface ModalLocale {
okText: string;
cancelText: string;
justOkText: string;
}
export default class Modal extends React.Component<ModalProps, {}> {
static info: ModalFunc;
static success: ModalFunc;
static error: ModalFunc;
static warn: ModalFunc;
static warning: ModalFunc;
static confirm: ModalFunc;
static defaultProps = {
prefixCls: 'ant-modal',
width: 520,
transitionName: 'zoom',
2016-04-04 17:38:39 +08:00
maskTransitionName: 'fade',
confirmLoading: false,
visible: false,
okType: 'primary' as ButtonType,
okButtonDisabled: false,
cancelButtonDisabled: false,
2016-07-13 11:14:24 +08:00
};
2016-03-03 17:43:38 +08:00
static propTypes = {
prefixCls: PropTypes.string,
onOk: PropTypes.func,
onCancel: PropTypes.func,
okText: PropTypes.node,
cancelText: PropTypes.node,
2018-07-31 17:05:07 +08:00
centered: PropTypes.bool,
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
};
handleCancel = (e: React.MouseEvent<HTMLButtonElement>) => {
2016-10-24 12:04:26 +08:00
const onCancel = this.props.onCancel;
if (onCancel) {
onCancel(e);
}
}
2016-01-12 17:07:24 +08:00
handleOk = (e: React.MouseEvent<HTMLButtonElement>) => {
2016-10-24 12:04:26 +08:00
const onOk = this.props.onOk;
if (onOk) {
onOk(e);
2016-10-24 12:04:26 +08:00
}
}
2016-01-12 17:07:24 +08:00
componentDidMount() {
if (mousePositionEventBinded) {
return;
}
// 只有点击事件支持从鼠标位置动画展开
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-01-12 17:07:24 +08:00
renderFooter = (locale: ModalLocale) => {
const { okText, okType, cancelText, confirmLoading } = this.props;
return (
<div>
<Button
onClick={this.handleCancel}
{...this.props.cancelButtonProps}
>
{cancelText || locale.cancelText}
</Button>
<Button
type={okType}
loading={confirmLoading}
onClick={this.handleOk}
{...this.props.okButtonProps}
>
{okText || locale.okText}
</Button>
</div>
);
}
2016-03-03 17:43:38 +08:00
render() {
2018-07-31 17:05:07 +08:00
const { footer, visible, className, centered, prefixCls, ...restProps } = this.props;
2016-03-03 17:43:38 +08:00
const defaultFooter = (
<LocaleReceiver
componentName="Modal"
defaultLocale={getConfirmLocale()}
>
{this.renderFooter}
</LocaleReceiver>
);
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
2018-07-31 17:05:07 +08:00
{...restProps}
2018-07-31 18:38:07 +08:00
prefixCls={prefixCls}
2018-07-31 18:57:20 +08:00
className={classNames({ [`${prefixCls}-centered`]: !!centered }, className)}
footer={footer === undefined ? defaultFooter : footer}
2016-08-29 20:48:47 +08:00
visible={visible}
mousePosition={mousePosition}
onClose={this.handleCancel}
/>
2016-01-13 22:22:33 +08:00
);
2016-01-12 17:07:24 +08:00
}
}