|
|
|
import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
|
|
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
|
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
|
|
import InfoCircleFilled from '@ant-design/icons/InfoCircleFilled';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import * as React from 'react';
|
|
|
|
import ConfigProvider from '../config-provider';
|
|
|
|
import { useLocale } from '../locale';
|
|
|
|
import ActionButton from '../_util/ActionButton';
|
|
|
|
import { getTransitionName } from '../_util/motion';
|
|
|
|
import warning from '../_util/warning';
|
|
|
|
import type { ModalFuncProps, ModalLocale } from './Modal';
|
|
|
|
import Dialog from './Modal';
|
|
|
|
|
|
|
|
interface ConfirmDialogProps extends ModalFuncProps {
|
|
|
|
afterClose?: () => void;
|
|
|
|
close?: (...args: any[]) => void;
|
|
|
|
autoFocusButton?: null | 'ok' | 'cancel';
|
|
|
|
rootPrefixCls: string;
|
|
|
|
iconPrefixCls?: string;
|
|
|
|
|
|
|
|
/** @private Internal Usage. Do not override this */
|
|
|
|
locale?: ModalLocale;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ConfirmContent(
|
|
|
|
props: ConfirmDialogProps & {
|
|
|
|
confirmPrefixCls: string;
|
|
|
|
},
|
|
|
|
) {
|
|
|
|
const {
|
|
|
|
icon,
|
|
|
|
onCancel,
|
|
|
|
onOk,
|
|
|
|
close,
|
|
|
|
okText,
|
|
|
|
okButtonProps,
|
|
|
|
cancelText,
|
|
|
|
cancelButtonProps,
|
|
|
|
confirmPrefixCls,
|
|
|
|
rootPrefixCls,
|
|
|
|
type,
|
|
|
|
okCancel,
|
|
|
|
footer,
|
|
|
|
// Legacy for static function usage
|
|
|
|
locale: staticLocale,
|
|
|
|
} = 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
|
|
|
|
let mergedIcon: React.ReactNode = icon;
|
|
|
|
|
|
|
|
// 支持传入{ icon: null }来隐藏`Modal.confirm`默认的Icon
|
|
|
|
if (!icon && icon !== null) {
|
|
|
|
switch (type) {
|
|
|
|
case 'info':
|
|
|
|
mergedIcon = <InfoCircleFilled />;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'success':
|
|
|
|
mergedIcon = <CheckCircleFilled />;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'error':
|
|
|
|
mergedIcon = <CloseCircleFilled />;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
mergedIcon = <ExclamationCircleFilled />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const okType = props.okType || 'primary';
|
|
|
|
// 默认为 true,保持向下兼容
|
|
|
|
const mergedOkCancel = okCancel ?? type === 'confirm';
|
|
|
|
|
|
|
|
const autoFocusButton = props.autoFocusButton === null ? false : props.autoFocusButton || 'ok';
|
|
|
|
|
|
|
|
const [locale] = useLocale('Modal');
|
|
|
|
|
|
|
|
const mergedLocale = staticLocale || locale;
|
|
|
|
|
|
|
|
const cancelButton = mergedOkCancel && (
|
|
|
|
<ActionButton
|
|
|
|
actionFn={onCancel}
|
|
|
|
close={close}
|
|
|
|
autoFocus={autoFocusButton === 'cancel'}
|
|
|
|
buttonProps={cancelButtonProps}
|
|
|
|
prefixCls={`${rootPrefixCls}-btn`}
|
|
|
|
>
|
|
|
|
{cancelText || mergedLocale?.cancelText}
|
|
|
|
</ActionButton>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={`${confirmPrefixCls}-body-wrapper`}>
|
|
|
|
<div className={`${confirmPrefixCls}-body`}>
|
|
|
|
{mergedIcon}
|
|
|
|
{props.title === undefined ? null : (
|
|
|
|
<span className={`${confirmPrefixCls}-title`}>{props.title}</span>
|
|
|
|
)}
|
|
|
|
<div className={`${confirmPrefixCls}-content`}>{props.content}</div>
|
|
|
|
</div>
|
|