12345678910111213141516171819202122232425262728293031323334353637383940 |
- "use client";
- import * as React from 'react';
- import classNames from 'classnames';
- import { Popup } from 'rc-tooltip';
- import { ConfigContext } from '../config-provider';
- import useStyle from './style';
- import { parseColor } from './util';
- /** @private Internal Component. Do not use in your production. */
- const PurePanel = 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 = Object.assign(Object.assign({}, overlayInnerStyle), colorInfo.overlayStyle);
- const cls = classNames(hashId, cssVarCls, prefixCls, `${prefixCls}-pure`, `${prefixCls}-placement-${placement}`, className, colorInfo.className);
- return wrapCSSVar(/*#__PURE__*/React.createElement("div", {
- className: cls,
- style: arrowContentStyle
- }, /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-arrow`
- }), /*#__PURE__*/React.createElement(Popup, Object.assign({}, props, {
- className: hashId,
- prefixCls: prefixCls,
- overlayInnerStyle: formattedOverlayInnerStyle
- }), title)));
- };
- export default PurePanel;
|