ant-design/components/tooltip/PurePanel.tsx
MadCcc 2e0942ab26
refactor: separate cssVarCls from hashId (#46424)
* refactor: cssVarCls

* refactor: update

* chore: update

* fix: cascader & tree-select

* fix: ribbon
2023-12-14 14:58:53 +08:00

62 lines
1.5 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 { 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 [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
// Color
const colorInfo = parseColor(prefixCls, color);
const arrowContentStyle = colorInfo.arrowStyle;
const formattedOverlayInnerStyle: React.CSSProperties = {
...overlayInnerStyle,
...colorInfo.overlayStyle,
};
const cls = classNames(
hashId,
cssVarCls,
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;