mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
c4b8c9df93
* refactor: genStyleHooks * chore: update sciprt * refactor: affix * refactor: select * chore: update * refactor: update * refactor: update * refactor: done * chore: code clean * chore: code clean * chore: fix lint * chore: decrease size limit * chore: code clean * chore: code clean * chore: remove export
61 lines
1.5 KiB
TypeScript
61 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] = useStyle(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;
|