import * as React from 'react'; import Animate from 'rc-animate'; import classNames from 'classnames'; import ScrollNumber from './ScrollNumber'; import { PresetColorTypes, PresetColorType, PresetStatusColorType } from '../_util/colors'; import { ConfigContext } from '../config-provider'; import { LiteralUnion } from '../_util/type'; import { cloneElement } from '../_util/reactNode'; export { ScrollNumberProps } from './ScrollNumber'; export interface BadgeProps { /** Number to show in badge */ count?: React.ReactNode; showZero?: boolean; /** Max count to show */ overflowCount?: number; /** whether to show red dot without number */ dot?: boolean; style?: React.CSSProperties; prefixCls?: string; scrollNumberPrefixCls?: string; className?: string; status?: PresetStatusColorType; color?: LiteralUnion; text?: React.ReactNode; offset?: [number | string, number | string]; title?: string; } function isPresetColor(color?: string): boolean { return (PresetColorTypes as any[]).indexOf(color) !== -1; } const Badge: React.FC = ({ prefixCls: customizePrefixCls, scrollNumberPrefixCls: customizeScrollNumberPrefixCls, children, status, text, color, count = null, overflowCount = 99, dot = false, title, offset, style, className, showZero = false, ...restProps }) => { const { getPrefixCls, direction } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('badge', customizePrefixCls); const getNumberedDisplayCount = () => { const displayCount = (count as number) > (overflowCount as number) ? `${overflowCount}+` : count; return displayCount as string | number | null; }; const hasStatus = (): boolean => { return !!status || !!color; }; const isZero = () => { const numberedDisplayCount = getNumberedDisplayCount(); return numberedDisplayCount === '0' || numberedDisplayCount === 0; }; const isDot = () => { return (dot && !isZero()) || hasStatus(); }; const getDisplayCount = () => { // dot mode don't need count if (isDot()) { return ''; } return getNumberedDisplayCount(); }; const getScrollNumberTitle = () => { if (title) { return title; } return typeof count === 'string' || typeof count === 'number' ? count : undefined; }; const getStyleWithOffset = () => { if (direction === 'rtl') { return offset ? { left: parseInt(offset[0] as string, 10), marginTop: offset[1], ...style, } : style; } return offset ? { right: -parseInt(offset[0] as string, 10), marginTop: offset[1], ...style, } : style; }; const isHidden = () => { const displayCount = getDisplayCount(); const isEmpty = displayCount === null || displayCount === undefined || displayCount === ''; return (isEmpty || (isZero() && !showZero)) && !isDot(); }; const renderStatusText = () => { const hidden = isHidden(); return hidden || !text ? null : {text}; }; const renderDisplayComponent = () => { const customNode = count as React.ReactElement; if (!customNode || typeof customNode !== 'object') { return undefined; } return cloneElement(customNode, { style: { ...getStyleWithOffset(), ...(customNode.props && customNode.props.style), }, }); }; const renderBadgeNumber = () => { const scrollNumberPrefixCls = getPrefixCls('scroll-number', customizeScrollNumberPrefixCls); const displayCount = getDisplayCount(); const bDot = isDot(); const hidden = isHidden(); const scrollNumberCls = classNames({ [`${prefixCls}-dot`]: bDot, [`${prefixCls}-count`]: !bDot, [`${prefixCls}-multiple-words`]: !bDot && count && count.toString && count.toString().length > 1, [`${prefixCls}-status-${status}`]: !!status, [`${prefixCls}-status-${color}`]: isPresetColor(color), }); let statusStyle: React.CSSProperties | undefined = getStyleWithOffset(); if (color && !isPresetColor(color)) { statusStyle = statusStyle || {}; statusStyle.background = color; } return hidden ? null : ( }> title={getScrollNumberTitle()} style={statusStyle} key="scrollNumber" /> ); }; const statusCls = classNames({ [`${prefixCls}-status-dot`]: hasStatus(), [`${prefixCls}-status-${status}`]: !!status, [`${prefixCls}-status-${color}`]: isPresetColor(color), }); const statusStyle: React.CSSProperties = {}; if (color && !isPresetColor(color)) { statusStyle.background = color; } const badgeClassName = classNames(className, prefixCls, { [`${prefixCls}-status`]: hasStatus(), [`${prefixCls}-not-a-wrapper`]: !children, [`${prefixCls}-rtl`]: direction === 'rtl', }); // if (!children && hasStatus()) { const styleWithOffset = getStyleWithOffset(); const statusTextColor = styleWithOffset && styleWithOffset.color; return ( {text} ); } return ( {children} {renderBadgeNumber()} {renderStatusText()} ); }; export default Badge;