import { planHasFeature, FEATURE_UNLIMITED_STORAGE } from '@automattic/calypso-products'; import { ProgressBar } from '@automattic/components'; import clsx from 'clsx'; import filesize from 'filesize'; import { localize } from 'i18n-calypso'; import PropTypes from 'prop-types'; import { Component } from 'react'; const ALERT_PERCENT = 80; const WARN_PERCENT = 60; export class PlanStorageBar extends Component { static propTypes = { className: PropTypes.string, mediaStorage: PropTypes.object, displayUpgradeLink: PropTypes.bool, sitePlanSlug: PropTypes.string.isRequired, }; render() { const { className, displayUpgradeLink, mediaStorage, sitePlanSlug, translate } = this.props; if ( planHasFeature( sitePlanSlug, FEATURE_UNLIMITED_STORAGE ) ) { return null; } if ( ! mediaStorage || mediaStorage.maxStorageBytes === -1 ) { return null; } let percent = ( mediaStorage.storageUsedBytes / mediaStorage.maxStorageBytes ) * 100; // Round percentage to 2dp for values under 1%, and whole numbers otherwise. percent = percent < 1 ? percent.toFixed( 2 ) : Math.round( percent ); const classes = clsx( className, 'plan-storage__bar', { 'is-alert': percent > ALERT_PERCENT, 'is-warn': percent > WARN_PERCENT && percent <= ALERT_PERCENT, } ); const max = filesize( mediaStorage.maxStorageBytes, { round: 0 } ); return (