import { Sparklines, SparklinesCurve } from 'react-sparklines'; import { FormattedMessage } from 'react-intl'; import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { shortNumberFormat } from '../../utils/numbers'; import Permalink from '../permalink'; import './trending_item.scss'; export default class TrendingItem extends ImmutablePureComponent { static propTypes = { hashtag: ImmutablePropTypes.map.isRequired, }; render() { const { hashtag } = this.props; return (
#{hashtag.get('name')} {shortNumberFormat(hashtag.getIn(['history', 0, 'accounts']))}, }} />
{shortNumberFormat(hashtag.getIn(['history', 0, 'uses']))}
day.get('uses')).toArray()}>
); } }