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.
51 lines
1.4 KiB
51 lines
1.4 KiB
2 years ago
|
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 default function PurePanel(props: any) {
|
||
|
const { prefixCls: customizePrefixCls, className, placement = 'top', title, content } = props;
|
||
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
||
|
|
||
|
const prefixCls = getPrefixCls('popover', customizePrefixCls);
|
||
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
||
|
|
||
|
return wrapSSR(
|
||
|
<div
|
||
|
className={classNames(
|
||
|
hashId,
|
||
|
prefixCls,
|
||
|
`${prefixCls}-pure`,
|
||
|
`${prefixCls}-placement-${placement}`,
|
||
|
className,
|
||
|
)}
|
||
|
>
|
||
|
<Popup {...props} className={hashId} prefixCls={prefixCls}>
|
||
|
{getOverlay(prefixCls, title, content)}
|
||
|
</Popup>
|
||
|
</div>,
|
||
|
);
|
||
|
}
|