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.
 
 

66 lines
1.7 KiB

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