2017-05-09 13:40:33 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2015-11-18 23:42:01 +08:00
|
|
|
import Animate from 'rc-animate';
|
2015-11-23 22:58:11 +08:00
|
|
|
import ScrollNumber from './ScrollNumber';
|
2015-12-18 17:27:22 +08:00
|
|
|
import classNames from 'classnames';
|
2016-11-01 11:10:11 +08:00
|
|
|
import warning from '../_util/warning';
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2016-09-13 15:31:29 +08:00
|
|
|
export interface BadgeProps {
|
2016-07-14 13:29:50 +08:00
|
|
|
/** Number to show in badge */
|
2017-05-29 18:14:16 +08:00
|
|
|
count?: number | string;
|
2017-03-01 11:16:58 +08:00
|
|
|
showZero?: boolean;
|
2016-07-14 13:29:50 +08:00
|
|
|
/** Max count to show */
|
|
|
|
overflowCount?: number;
|
|
|
|
/** whether to show red dot without number */
|
|
|
|
dot?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
2016-08-20 17:43:46 +08:00
|
|
|
status?: 'success' | 'processing' | 'default' | 'error' | 'warning';
|
|
|
|
text?: string;
|
2016-07-14 13:29:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Badge extends React.Component<BadgeProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-badge',
|
|
|
|
count: null,
|
2017-03-01 11:16:58 +08:00
|
|
|
showZero: false,
|
2016-03-29 14:01:10 +08:00
|
|
|
dot: false,
|
|
|
|
overflowCount: 99,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
|
|
|
static propTypes = {
|
2017-03-01 11:16:58 +08:00
|
|
|
count: PropTypes.oneOfType([
|
|
|
|
PropTypes.string,
|
|
|
|
PropTypes.number,
|
2016-03-29 14:01:10 +08:00
|
|
|
]),
|
2017-03-01 11:16:58 +08:00
|
|
|
showZero: PropTypes.bool,
|
|
|
|
dot: PropTypes.bool,
|
|
|
|
overflowCount: PropTypes.number,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2015-09-01 13:59:07 +08:00
|
|
|
render() {
|
2017-03-01 11:16:58 +08:00
|
|
|
const {
|
|
|
|
count,
|
|
|
|
showZero,
|
|
|
|
prefixCls,
|
|
|
|
overflowCount,
|
|
|
|
className,
|
|
|
|
style,
|
|
|
|
children,
|
|
|
|
dot,
|
|
|
|
status,
|
|
|
|
text,
|
|
|
|
...restProps,
|
|
|
|
} = this.props;
|
2016-08-20 17:43:46 +08:00
|
|
|
const isDot = dot || status;
|
2017-05-29 19:06:26 +08:00
|
|
|
let displayCount = (count as number) > (overflowCount as number) ? `${overflowCount}+` : count;
|
2015-11-19 00:13:16 +08:00
|
|
|
// dot mode don't need count
|
2016-08-20 17:43:46 +08:00
|
|
|
if (isDot) {
|
2016-12-19 15:19:15 +08:00
|
|
|
displayCount = '';
|
2015-11-19 00:13:16 +08:00
|
|
|
}
|
|
|
|
|
2017-03-01 11:16:58 +08:00
|
|
|
const isZero = displayCount === '0' || displayCount === 0;
|
|
|
|
const isEmpty = displayCount === null || displayCount === undefined || displayCount === '';
|
|
|
|
const hidden = (isEmpty || (isZero && !showZero)) && !isDot;
|
2016-08-20 17:43:46 +08:00
|
|
|
const scrollNumberCls = classNames({
|
|
|
|
[`${prefixCls}-dot`]: isDot,
|
|
|
|
[`${prefixCls}-count`]: !isDot,
|
|
|
|
});
|
2016-11-30 10:20:23 +08:00
|
|
|
const badgeCls = classNames(className, prefixCls, {
|
2016-10-12 19:42:10 +08:00
|
|
|
[`${prefixCls}-status`]: !!status,
|
2015-12-18 17:27:22 +08:00
|
|
|
[`${prefixCls}-not-a-wrapper`]: !children,
|
|
|
|
});
|
2015-11-19 00:13:16 +08:00
|
|
|
|
2016-10-19 09:45:46 +08:00
|
|
|
warning(
|
|
|
|
!(children && status),
|
2017-03-23 21:15:49 +08:00
|
|
|
'`Badge[children]` and `Badge[status]` cannot be used at the same time.',
|
2016-10-19 09:45:46 +08:00
|
|
|
);
|
2016-10-12 19:42:10 +08:00
|
|
|
// <Badge status="success" />
|
|
|
|
if (!children && status) {
|
|
|
|
const statusCls = classNames({
|
|
|
|
[`${prefixCls}-status-dot`]: !!status,
|
|
|
|
[`${prefixCls}-status-${status}`]: true,
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<span className={badgeCls}>
|
|
|
|
<span className={statusCls} />
|
|
|
|
<span className={`${prefixCls}-status-text`}>{text}</span>
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:03:39 +08:00
|
|
|
const scrollNumber = hidden ? null : (
|
|
|
|
<ScrollNumber
|
|
|
|
data-show={!hidden}
|
|
|
|
className={scrollNumberCls}
|
2016-12-19 15:19:15 +08:00
|
|
|
count={displayCount}
|
2016-11-25 12:03:39 +08:00
|
|
|
style={style}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const statusText = (hidden || !text) ? null : (
|
|
|
|
<span className={`${prefixCls}-status-text`}>{text}</span>
|
|
|
|
);
|
|
|
|
|
2015-11-18 23:42:01 +08:00
|
|
|
return (
|
2016-12-19 15:19:15 +08:00
|
|
|
<span {...restProps} className={badgeCls} title={count as string}>
|
2015-12-18 17:27:22 +08:00
|
|
|
{children}
|
2016-07-08 17:17:57 +08:00
|
|
|
<Animate
|
|
|
|
component=""
|
2015-11-18 23:42:01 +08:00
|
|
|
showProp="data-show"
|
2016-11-03 16:58:51 +08:00
|
|
|
transitionName={children ? `${prefixCls}-zoom` : ''}
|
2017-05-25 16:54:15 +08:00
|
|
|
transitionAppear={true}
|
2016-06-06 13:54:10 +08:00
|
|
|
>
|
2016-11-25 12:03:39 +08:00
|
|
|
{scrollNumber}
|
2015-11-18 23:42:01 +08:00
|
|
|
</Animate>
|
2016-11-25 12:03:39 +08:00
|
|
|
{statusText}
|
2015-11-18 23:42:01 +08:00
|
|
|
</span>
|
|
|
|
);
|
2015-09-01 13:59:07 +08:00
|
|
|
}
|
|
|
|
}
|