import classNames from 'classnames'; import * as React from 'react'; import type { PresetColorType } from '../_util/colors'; import { isPresetColor } from '../_util/colors'; import type { LiteralUnion } from '../_util/type'; import { ConfigContext } from '../config-provider'; import useStyle from './style'; type RibbonPlacement = 'start' | 'end'; export interface RibbonProps { className?: string; prefixCls?: string; style?: React.CSSProperties; // style of ribbon element, not the wrapper text?: React.ReactNode; color?: LiteralUnion; children?: React.ReactNode; placement?: RibbonPlacement; } const Ribbon: React.FC = (props) => { const { className, prefixCls: customizePrefixCls, style, color, children, text, placement = 'end', } = props; const { getPrefixCls, direction } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('ribbon', customizePrefixCls); const colorInPreset = isPresetColor(color, false); const ribbonCls = classNames( prefixCls, `${prefixCls}-placement-${placement}`, { [`${prefixCls}-rtl`]: direction === 'rtl', [`${prefixCls}-color-${color}`]: colorInPreset, }, className, ); const [wrapSSR, hashId] = useStyle(prefixCls); const colorStyle: React.CSSProperties = {}; const cornerColorStyle: React.CSSProperties = {}; if (color && !colorInPreset) { colorStyle.background = color; cornerColorStyle.color = color; } return wrapSSR(
{children}
{text}
, ); }; if (process.env.NODE_ENV !== 'production') { Ribbon.displayName = 'Ribbon'; } export default Ribbon;