ant-design/components/badge/index.jsx

60 lines
1.5 KiB
React
Raw Normal View History

2015-11-18 23:42:01 +08:00
import React from 'react';
import Animate from 'rc-animate';
2015-11-23 22:58:11 +08:00
import ScrollNumber from './ScrollNumber';
import classNames from 'classnames';
2015-09-01 13:59:07 +08:00
export default class Badge extends React.Component {
static defaultProps = {
prefixCls: 'ant-badge',
count: null,
dot: false,
overflowCount: 99,
}
static propTypes = {
count: React.PropTypes.oneOfType([
React.PropTypes.string,
2016-05-11 09:32:33 +08:00
React.PropTypes.number,
]),
dot: React.PropTypes.bool,
overflowCount: React.PropTypes.number,
}
2015-09-01 13:59:07 +08:00
render() {
let { count, prefixCls, overflowCount, className, style, children } = this.props;
2015-11-18 23:42:01 +08:00
const dot = this.props.dot;
2015-11-19 00:13:16 +08:00
count = count > overflowCount ? `${overflowCount}+` : count;
2015-11-19 00:13:16 +08:00
// dot mode don't need count
if (dot) {
count = '';
}
// null undefined "" "0" 0
const hidden = (!count || count === '0') && !dot;
const scrollNumberCls = prefixCls + (dot ? '-dot' : '-count');
const badgeCls = classNames({
[className]: !!className,
[prefixCls]: true,
[`${prefixCls}-not-a-wrapper`]: !children,
});
2015-11-19 00:13:16 +08:00
2015-11-18 23:42:01 +08:00
return (
<span className={badgeCls} title={count} {...this.props} style={null}>
{children}
2015-11-18 23:42:01 +08:00
<Animate component=""
showProp="data-show"
transitionName={`${prefixCls}-zoom`}
2015-11-25 17:47:55 +08:00
transitionAppear>
2015-11-19 00:13:16 +08:00
{
hidden ? null :
<ScrollNumber data-show={!hidden} className={scrollNumberCls}
count={count} style={style} />
2015-11-19 00:13:16 +08:00
}
2015-11-18 23:42:01 +08:00
</Animate>
</span>
);
2015-09-01 13:59:07 +08:00
}
}