mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
854cdb4352
* type: optimize CompoundedComponent type * chore: fix * type: fix type * chore: fix * type: fix type * type: add ts-ignore * fix: fix * chore: revert
132 lines
3.7 KiB
TypeScript
132 lines
3.7 KiB
TypeScript
import * as React from 'react';
|
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
import classNames from 'classnames';
|
|
import useMergedState from 'rc-util/lib/hooks/useMergedState';
|
|
import omit from 'rc-util/lib/omit';
|
|
|
|
import type { RenderFunction } from '../_util/getRenderPropValue';
|
|
import type { ButtonProps, LegacyButtonType } from '../button/button';
|
|
import { ConfigContext } from '../config-provider';
|
|
import type { PopoverProps } from '../popover';
|
|
import Popover from '../popover';
|
|
import type { AbstractTooltipProps, TooltipRef } from '../tooltip';
|
|
import PurePanel, { Overlay } from './PurePanel';
|
|
import useStyle from './style';
|
|
|
|
export interface PopconfirmProps extends AbstractTooltipProps {
|
|
title: React.ReactNode | RenderFunction;
|
|
description?: React.ReactNode | RenderFunction;
|
|
disabled?: boolean;
|
|
onConfirm?: (e?: React.MouseEvent<HTMLElement>) => void;
|
|
onCancel?: (e?: React.MouseEvent<HTMLElement>) => void;
|
|
okText?: React.ReactNode;
|
|
okType?: LegacyButtonType;
|
|
cancelText?: React.ReactNode;
|
|
okButtonProps?: ButtonProps;
|
|
cancelButtonProps?: ButtonProps;
|
|
showCancel?: boolean;
|
|
icon?: React.ReactNode;
|
|
onOpenChange?: (
|
|
open: boolean,
|
|
e?: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLDivElement>,
|
|
) => void;
|
|
onPopupClick?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
}
|
|
|
|
export interface PopconfirmState {
|
|
open?: boolean;
|
|
}
|
|
|
|
const InternalPopconfirm = React.forwardRef<TooltipRef, PopconfirmProps>((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
placement = 'top',
|
|
trigger = 'click',
|
|
okType = 'primary',
|
|
icon = <ExclamationCircleFilled />,
|
|
children,
|
|
overlayClassName,
|
|
onOpenChange,
|
|
onVisibleChange,
|
|
...restProps
|
|
} = props;
|
|
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const [open, setOpen] = useMergedState(false, {
|
|
value: props.open ?? props.visible,
|
|
defaultValue: props.defaultOpen ?? props.defaultVisible,
|
|
});
|
|
|
|
const settingOpen: PopoverProps['onOpenChange'] = (value, e) => {
|
|
setOpen(value, true);
|
|
onVisibleChange?.(value);
|
|
onOpenChange?.(value, e);
|
|
};
|
|
|
|
const close = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
settingOpen(false, e);
|
|
};
|
|
|
|
const onConfirm = (e: React.MouseEvent<HTMLButtonElement>) => props.onConfirm?.call(this, e);
|
|
|
|
const onCancel = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
settingOpen(false, e);
|
|
props.onCancel?.call(this, e);
|
|
};
|
|
|
|
const onInternalOpenChange: PopoverProps['onOpenChange'] = (value, e) => {
|
|
const { disabled = false } = props;
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
settingOpen(value, e);
|
|
};
|
|
|
|
const prefixCls = getPrefixCls('popconfirm', customizePrefixCls);
|
|
const overlayClassNames = classNames(prefixCls, overlayClassName);
|
|
|
|
const [wrapCSSVar] = useStyle(prefixCls);
|
|
|
|
return wrapCSSVar(
|
|
<Popover
|
|
{...omit(restProps, ['title'])}
|
|
trigger={trigger}
|
|
placement={placement}
|
|
onOpenChange={onInternalOpenChange}
|
|
open={open}
|
|
ref={ref}
|
|
overlayClassName={overlayClassNames}
|
|
content={
|
|
<Overlay
|
|
okType={okType}
|
|
icon={icon}
|
|
{...props}
|
|
prefixCls={prefixCls}
|
|
close={close}
|
|
onConfirm={onConfirm}
|
|
onCancel={onCancel}
|
|
/>
|
|
}
|
|
data-popover-inject
|
|
>
|
|
{children}
|
|
</Popover>,
|
|
);
|
|
});
|
|
|
|
type CompoundedComponent = typeof InternalPopconfirm & {
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
|
|
};
|
|
|
|
const Popconfirm = InternalPopconfirm as CompoundedComponent;
|
|
|
|
// We don't care debug panel
|
|
/* istanbul ignore next */
|
|
Popconfirm._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Popconfirm.displayName = 'Popconfirm';
|
|
}
|
|
|
|
export default Popconfirm;
|