mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
63 lines
1.5 KiB
TypeScript
63 lines
1.5 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { Popup } from 'rc-tooltip';
|
|
|
|
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;
|