|
|
import { SiteMediaStorage } from '@automattic/data-stores'; |
|
|
import { ProgressBar } from '@wordpress/components'; |
|
|
import clsx from 'clsx'; |
|
|
import filesize from 'filesize'; |
|
|
import { useTranslate } from 'i18n-calypso'; |
|
|
import { FC, PropsWithChildren } from 'react'; |
|
|
|
|
|
interface Props { |
|
|
mediaStorage: SiteMediaStorage; |
|
|
} |
|
|
const MINIMUM_DISPLAYED_USAGE = 2.5; |
|
|
const ALERT_PERCENT = 80; |
|
|
|
|
|
const PlanStorageBar: FC< PropsWithChildren< Props > > = ( { children, mediaStorage } ) => { |
|
|
const translate = useTranslate(); |
|
|
const { storageUsedBytes, maxStorageBytes } = mediaStorage; |
|
|
|
|
|
let usagePercent = Math.round( ( ( storageUsedBytes / maxStorageBytes ) * 1000 ) / 10 ); |
|
|
|
|
|
usagePercent = Math.max( MINIMUM_DISPLAYED_USAGE, usagePercent ); |
|
|
|
|
|
usagePercent = Math.min( usagePercent, 100 ); |
|
|
|
|
|
const used = filesize( storageUsedBytes, { round: 0 } ); |
|
|
const max = filesize( maxStorageBytes, { round: 0 } ); |
|
|
|
|
|
const classes = clsx( 'plan-storage__bar', { |
|
|
'is-alert': usagePercent > ALERT_PERCENT, |
|
|
} ); |
|
|
|
|
|
return ( |
|
|
<> |
|
|
<div className="plan-storage-title-wrapper"> |
|
|
<div className="plan-storage-title">{ translate( 'Storage' ) }</div> |
|
|
<span className="plan-storage-value"> |
|
|
{ translate( 'Using %(usedStorage)s of %(maxStorage)s', { |
|
|
args: { |
|
|
usedStorage: used, |
|
|
maxStorage: max, |
|
|
}, |
|
|
comment: |
|
|
'Describes used vs available storage amounts (e.g., Using 20 GB of 30GB, Using 12 MB of 20GB)', |
|
|
} ) } |
|
|
</span> |
|
|
</div> |
|
|
|
|
|
<ProgressBar className={ classes } value={ usagePercent } /> |
|
|
|
|
|
{ children } |
|
|
</> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default PlanStorageBar; |
|
|
|