ant-design/components/tooltip/PurePanel.tsx
MadCcc 96fa23ea7c
refactor: Tooltip, Popover, Dropdown, Tour support css var (#45705)
* feat: Tooltip, Popover, Dropdown, Tour support css var

* chore: update snapshot

* chore: code clean

* chore: code clean

* chore: update snapshot

* chore: update snapshot

* chore: update snapshot

* chore: add test
2023-11-08 14:56:15 +08:00

63 lines
1.6 KiB
TypeScript

import classNames from 'classnames';
import { Popup } from 'rc-tooltip';
import * as React from 'react';
import type { TooltipProps } from '.';
import { ConfigContext } from '../config-provider';
import useStyle from './style';
import useCSSVar from './style/cssVar';
import { parseColor } from './util';
export interface PurePanelProps extends Omit<TooltipProps, 'children'> {}
/** @private Internal Component. Do not use in your production. */
const PurePanel: React.FC<PurePanelProps> = (props) => {
const {
prefixCls: customizePrefixCls,
className,
placement = 'top',
title,
color,
overlayInnerStyle,
} = props;
const { getPrefixCls } = React.useContext(ConfigContext);
const prefixCls = getPrefixCls('tooltip', customizePrefixCls);
const [, hashId] = useStyle(prefixCls, true);
const wrapCSSVar = useCSSVar(prefixCls);
// Color
const colorInfo = parseColor(prefixCls, color);
const arrowContentStyle = colorInfo.arrowStyle;
const formattedOverlayInnerStyle: React.CSSProperties = {
...overlayInnerStyle,
...colorInfo.overlayStyle,
};
const cls = classNames(
hashId,
prefixCls,
`${prefixCls}-pure`,
`${prefixCls}-placement-${placement}`,
className,
colorInfo.className,
);
return wrapCSSVar(
<div className={cls} style={arrowContentStyle}>
<div className={`${prefixCls}-arrow`} />
<Popup
{...props}
className={hashId}
prefixCls={prefixCls}
overlayInnerStyle={formattedOverlayInnerStyle}
>
{title}
</Popup>
</div>,
);
};
export default PurePanel;