import classNames from 'classnames'; import { Popup } from 'rc-tooltip'; import * as React from 'react'; import type { PopoverProps } from '.'; import { ConfigContext } from '../config-provider'; import { getRenderPropValue } from '../_util/getRenderPropValue'; import useStyle from './style'; export const getOverlay = ( prefixCls: string, title?: PopoverProps['title'], content?: PopoverProps['content'], ) => { if (!title && !content) return undefined; return ( <> {title &&
{getRenderPropValue(title)}
}
{getRenderPropValue(content)}
); }; export interface PurePanelProps extends Omit { children?: React.ReactNode; } export function RawPurePanel(props: any) { const { hashId, prefixCls, className, style, placement = 'top', title, content, children, } = props; return (
{children || getOverlay(prefixCls, title, content)}
); } export default function PurePanel(props: any) { const { prefixCls: customizePrefixCls, ...restProps } = props; const { getPrefixCls } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('popover', customizePrefixCls); const [wrapSSR, hashId] = useStyle(prefixCls); return wrapSSR(); }