/* eslint-disable react/jsx-no-useless-fragment */ import classNames from 'classnames'; import { Panel } from 'rc-dialog'; import type { PanelProps } from 'rc-dialog/lib/Dialog/Content/Panel'; import * as React from 'react'; import { ConfigContext } from '../config-provider'; import { ConfirmContent } from './ConfirmDialog'; import type { ModalFuncProps } from './interface'; import { Footer, renderCloseIcon } from './shared'; import useStyle from './style'; export interface PurePanelProps extends Omit, Pick { prefixCls?: string; style?: React.CSSProperties; } const PurePanel: React.FC = (props) => { const { prefixCls: customizePrefixCls, className, closeIcon, closable, type, title, children, ...restProps } = props; const { getPrefixCls } = React.useContext(ConfigContext); const rootPrefixCls = getPrefixCls(); const prefixCls = customizePrefixCls || getPrefixCls('modal'); const [, hashId] = useStyle(prefixCls); const confirmPrefixCls = `${prefixCls}-confirm`; // Choose target props by confirm mark let additionalProps: Partial = {}; if (type) { additionalProps = { closable: closable ?? false, title: '', footer: '', children: ( ), }; } else { additionalProps = { closable: closable ?? true, title, footer: props.footer === undefined ?