Display numbers in account header using shortNumberFormat for consistency (#7723)
This commit is contained in:
		
							parent
							
								
									5bf5003384
								
							
						
					
					
						commit
						1bbe81030c
					
				
					 3 changed files with 17 additions and 13 deletions
				
			
		|  | @ -1,16 +1,9 @@ | |||
| import React from 'react'; | ||||
| import { Sparklines, SparklinesCurve } from 'react-sparklines'; | ||||
| import { Link } from 'react-router-dom'; | ||||
| import { FormattedMessage, FormattedNumber } from 'react-intl'; | ||||
| import { FormattedMessage } from 'react-intl'; | ||||
| import ImmutablePropTypes from 'react-immutable-proptypes'; | ||||
| 
 | ||||
| const shortNumberFormat = number => { | ||||
|   if (number < 1000) { | ||||
|     return <FormattedNumber value={number} />; | ||||
|   } else { | ||||
|     return <React.Fragment><FormattedNumber value={number / 1000} maximumFractionDigits={1} />K</React.Fragment>; | ||||
|   } | ||||
| }; | ||||
| import { shortNumberFormat } from '../utils/numbers'; | ||||
| 
 | ||||
| const Hashtag = ({ hashtag }) => ( | ||||
|   <div className='trends__item'> | ||||
|  |  | |||
|  | @ -3,8 +3,9 @@ import ImmutablePropTypes from 'react-immutable-proptypes'; | |||
| import PropTypes from 'prop-types'; | ||||
| import DropdownMenuContainer from '../../../containers/dropdown_menu_container'; | ||||
| import { Link } from 'react-router-dom'; | ||||
| import { defineMessages, injectIntl, FormattedMessage, FormattedNumber } from 'react-intl'; | ||||
| import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; | ||||
| import { me } from '../../../initial_state'; | ||||
| import { shortNumberFormat } from '../../../utils/numbers'; | ||||
| 
 | ||||
| const messages = defineMessages({ | ||||
|   mention: { id: 'account.mention', defaultMessage: 'Mention @{name}' }, | ||||
|  | @ -146,17 +147,17 @@ export default class ActionBar extends React.PureComponent { | |||
|           <div className='account__action-bar-links'> | ||||
|             <Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}`}> | ||||
|               <span><FormattedMessage id='account.posts' defaultMessage='Toots' /></span> | ||||
|               <strong><FormattedNumber value={account.get('statuses_count')} /></strong> | ||||
|               <strong>{shortNumberFormat(account.get('statuses_count'))}</strong> | ||||
|             </Link> | ||||
| 
 | ||||
|             <Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}/following`}> | ||||
|               <span><FormattedMessage id='account.follows' defaultMessage='Follows' /></span> | ||||
|               <strong><FormattedNumber value={account.get('following_count')} /></strong> | ||||
|               <strong>{shortNumberFormat(account.get('following_count'))}</strong> | ||||
|             </Link> | ||||
| 
 | ||||
|             <Link className='account__action-bar__tab' to={`/accounts/${account.get('id')}/followers`}> | ||||
|               <span><FormattedMessage id='account.followers' defaultMessage='Followers' /></span> | ||||
|               <strong><FormattedNumber value={account.get('followers_count')} /></strong> | ||||
|               <strong>{shortNumberFormat(account.get('followers_count'))}</strong> | ||||
|             </Link> | ||||
|           </div> | ||||
|         </div> | ||||
|  |  | |||
							
								
								
									
										10
									
								
								app/javascript/mastodon/utils/numbers.js
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								app/javascript/mastodon/utils/numbers.js
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | |||
| import React, { Fragment } from 'react'; | ||||
| import { FormattedNumber } from 'react-intl'; | ||||
| 
 | ||||
| export const shortNumberFormat = number => { | ||||
|   if (number < 1000) { | ||||
|     return <FormattedNumber value={number} />; | ||||
|   } else { | ||||
|     return <Fragment><FormattedNumber value={number / 1000} maximumFractionDigits={1} />K</Fragment>; | ||||
|   } | ||||
| }; | ||||
		Reference in a new issue