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.
117 lines
3.4 KiB
117 lines
3.4 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import Dialog, { ModalFuncProps } from './Modal';
|
|
import ActionButton from './ActionButton';
|
|
import warning from '../_util/warning';
|
|
|
|
interface ConfirmDialogProps extends ModalFuncProps {
|
|
afterClose?: () => void;
|
|
close: (...args: any[]) => void;
|
|
autoFocusButton?: null | 'ok' | 'cancel';
|
|
}
|
|
|
|
const ConfirmDialog = (props: ConfirmDialogProps) => {
|
|
const {
|
|
icon,
|
|
onCancel,
|
|
onOk,
|
|
close,
|
|
zIndex,
|
|
afterClose,
|
|
visible,
|
|
keyboard,
|
|
centered,
|
|
getContainer,
|
|
maskStyle,
|
|
okText,
|
|
okButtonProps,
|
|
cancelText,
|
|
cancelButtonProps,
|
|
} = props;
|
|
|
|
warning(
|
|
!(typeof icon === 'string' && icon.length > 2),
|
|
'Modal',
|
|
`\`icon\` is using ReactNode instead of string naming in v4. Please check \`${icon}\` at https://ant.design/components/icon`,
|
|
);
|
|
|
|
// 支持传入{ icon: null }来隐藏`Modal.confirm`默认的Icon
|
|
const okType = props.okType || 'primary';
|
|
const prefixCls = props.prefixCls || 'ant-modal';
|
|
const contentPrefixCls = `${prefixCls}-confirm`;
|
|
// 默认为 true,保持向下兼容
|
|
const okCancel = 'okCancel' in props ? props.okCancel! : true;
|
|
const width = props.width || 416;
|
|
const style = props.style || {};
|
|
const mask = props.mask === undefined ? true : props.mask;
|
|
// 默认为 false,保持旧版默认行为
|
|
const maskClosable = props.maskClosable === undefined ? false : props.maskClosable;
|
|
const autoFocusButton = props.autoFocusButton === null ? false : props.autoFocusButton || 'ok';
|
|
const transitionName = props.transitionName || 'zoom';
|
|
const maskTransitionName = props.maskTransitionName || 'fade';
|
|
|
|
const classString = classNames(
|
|
contentPrefixCls,
|
|
`${contentPrefixCls}-${props.type}`,
|
|
props.className,
|
|
);
|
|
|
|
const cancelButton = okCancel && (
|
|
<ActionButton
|
|
actionFn={onCancel}
|
|
closeModal={close}
|
|
autoFocus={autoFocusButton === 'cancel'}
|
|
buttonProps={cancelButtonProps}
|
|
>
|
|
{cancelText}
|
|
</ActionButton>
|
|
);
|
|
|
|
return (
|
|
<Dialog
|
|
prefixCls={prefixCls}
|
|
className={classString}
|
|
wrapClassName={classNames({ [`${contentPrefixCls}-centered`]: !!props.centered })}
|
|
onCancel={() => close({ triggerCancel: true })}
|
|
visible={visible}
|
|
title=""
|
|
transitionName={transitionName}
|
|
footer=""
|
|
maskTransitionName={maskTransitionName}
|
|
mask={mask}
|
|
maskClosable={maskClosable}
|
|
maskStyle={maskStyle}
|
|
style={style}
|
|
width={width}
|
|
zIndex={zIndex}
|
|
afterClose={afterClose}
|
|
keyboard={keyboard}
|
|
centered={centered}
|
|
getContainer={getContainer}
|
|
>
|
|
<div className={`${contentPrefixCls}-body-wrapper`}>
|
|
<div className={`${contentPrefixCls}-body`}>
|
|
{icon}
|
|
{props.title === undefined ? null : (
|
|
<span className={`${contentPrefixCls}-title`}>{props.title}</span>
|
|
)}
|
|
<div className={`${contentPrefixCls}-content`}>{props.content}</div>
|
|
</div>
|
|
<div className={`${contentPrefixCls}-btns`}>
|
|
{cancelButton}
|
|
<ActionButton
|
|
type={okType}
|
|
actionFn={onOk}
|
|
closeModal={close}
|
|
autoFocus={autoFocusButton === 'ok'}
|
|
buttonProps={okButtonProps}
|
|
>
|
|
{okText}
|
|
</ActionButton>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default ConfirmDialog;
|
|
|