2019-05-26 00:55:37 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Icon from 'mastodon/components/icon';
|
|
|
|
|
|
|
|
const formatNumber = num => num > 40 ? '40+' : num;
|
|
|
|
|
2020-10-12 22:37:21 +00:00
|
|
|
const IconWithBadge = ({ id, count, issueBadge, className }) => (
|
2019-05-26 00:55:37 +00:00
|
|
|
<i className='icon-with-badge'>
|
|
|
|
<Icon id={id} fixedWidth className={className} />
|
|
|
|
{count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
|
2020-10-12 22:37:21 +00:00
|
|
|
{issueBadge && <i className='icon-with-badge__issue-badge' />}
|
2019-05-26 00:55:37 +00:00
|
|
|
</i>
|
|
|
|
);
|
|
|
|
|
|
|
|
IconWithBadge.propTypes = {
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
count: PropTypes.number.isRequired,
|
2020-10-12 22:37:21 +00:00
|
|
|
issueBadge: PropTypes.bool,
|
2019-05-26 00:55:37 +00:00
|
|
|
className: PropTypes.string,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default IconWithBadge;
|