import * as React from 'react'; import Animate from 'rc-animate'; import ScrollNumber from './ScrollNumber'; import classNames from 'classnames'; interface BadgeProps { /** Number to show in badge */ count: number | string; /** Max count to show */ overflowCount?: number; /** whether to show red dot without number */ dot?: boolean; style?: React.CSSProperties; prefixCls?: string; className?: string; status?: 'success' | 'processing' | 'default' | 'error' | 'warning'; text?: string; } export default class Badge extends React.Component { static defaultProps = { prefixCls: 'ant-badge', count: null, dot: false, overflowCount: 99, // status: 'default', }; static propTypes = { count: React.PropTypes.oneOfType([ React.PropTypes.string, React.PropTypes.number, ]), dot: React.PropTypes.bool, overflowCount: React.PropTypes.number, }; render() { let { count, prefixCls, overflowCount, className, style, children, dot, status, text } = this.props; const isDot = dot || status; count = count > overflowCount ? `${overflowCount}+` : count; // dot mode don't need count if (isDot) { count = ''; } // null undefined "" "0" 0 const hidden = (!count || count === '0') && !isDot; const scrollNumberCls = classNames({ [`${prefixCls}-dot`]: isDot, [`${prefixCls}-count`]: !isDot, [`${prefixCls}-status`]: status, [`${prefixCls}-status-${status}`]: status, [`${prefixCls}-status-with-text`]: text, }); const badgeCls = classNames({ [className]: !!className, [prefixCls]: true, [`${prefixCls}-not-a-wrapper`]: !children, }); return ( {children} { hidden ? null : } { hidden || !text ? null : {text} } ); } }