about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/icon_with_badge.js
blob: 4a15ee5b44120feee3b97993a8755b658f2d39a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react';
import PropTypes from 'prop-types';
import Icon from 'flavours/glitch/components/icon';

const formatNumber = num => num > 40 ? '40+' : num;

const IconWithBadge = ({ id, count, className }) => (
  <i className='icon-with-badge'>
    <Icon icon={id} fixedWidth className={className} />
    {count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
  </i>
);

IconWithBadge.propTypes = {
  id: PropTypes.string.isRequired,
  count: PropTypes.number.isRequired,
  className: PropTypes.string,
};

export default IconWithBadge;