File size: 4,765 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
import { FEATURE_SFTP } from '@automattic/calypso-products';
import { LoadingPlaceholder } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { convertBytes } from 'calypso/my-sites/backup/backup-contents-page/file-browser/util';
import { useSiteMetricsQuery } from 'calypso/sites/monitoring/hooks/use-metrics-query';
import { useSelector, useDispatch } from 'calypso/state';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { canCurrentUser } from 'calypso/state/selectors/can-current-user';
import isAtomicSite from 'calypso/state/selectors/is-site-automated-transfer';
import siteHasFeature from 'calypso/state/selectors/site-has-feature';
import { getSiteSlug } from 'calypso/state/sites/selectors';
import { getSelectedSite } from 'calypso/state/ui/selectors';
type PlanBandwidthProps = React.PropsWithChildren< {
siteId: number;
} >;
const getCurrentMonthRangeTimestamps = () => {
const now = new Date();
const firstDayOfMonth = new Date( now.getFullYear(), now.getMonth(), 1 );
const startInSeconds = Math.floor( firstDayOfMonth.getTime() / 1000 );
const today = new Date();
// We track the end of the current hour to avoid excessive data fetching
today.setMinutes( 59 );
today.setSeconds( 59 );
const endInSeconds = Math.floor( today.getTime() / 1000 );
return {
startInSeconds,
endInSeconds,
};
};
export function PlanBandwidth( { siteId }: PlanBandwidthProps ) {
const dispatch = useDispatch();
const selectedSiteData = useSelector( getSelectedSite );
const siteSlug = useSelector( ( state ) => getSiteSlug( state, siteId ) );
const isAtomic = useSelector( ( state ) => isAtomicSite( state, siteId ) );
const canViewStat = useSelector( ( state ) => canCurrentUser( state, siteId, 'publish_posts' ) );
const hasSftpFeature = useSelector( ( state ) => siteHasFeature( state, siteId, FEATURE_SFTP ) );
const isEligibleForAtomic = ! isAtomic && hasSftpFeature;
const selectedSiteDomain = selectedSiteData?.domain;
const translate = useTranslate();
const { startInSeconds, endInSeconds } = getCurrentMonthRangeTimestamps();
const { data } = useSiteMetricsQuery(
siteId,
{
start: startInSeconds,
end: endInSeconds,
metric: 'response_bytes_persec',
},
!! isAtomic
);
if ( ! canViewStat ) {
return;
}
const getBandwidthContent = () => {
if ( ! isAtomic || ! selectedSiteDomain ) {
return translate( 'Not available', {
comment:
'A message that indicates that the bandwidth data is not available for sites that are not atomic',
} );
}
if ( ! data ) {
return <LoadingPlaceholder className="plan-bandwidth-placeholder" />;
}
const valueInBytes = data.data.periods.reduce(
( acc, curr ) => acc + ( curr.dimension[ selectedSiteDomain ] || 0 ),
0
);
const { unitAmount, unit } = convertBytes( valueInBytes );
return translate( '%(value)s %(measure)s used', {
args: { value: unitAmount, measure: unit },
comment:
'The amount of data that has been used by the site in the current month in KB/MB/GB/TB',
} );
};
const getBandwidthFooterLink = () => {
if ( isAtomic ) {
return (
<a
href={ `/site-monitoring/${ siteSlug }` }
onClick={ () => {
dispatch(
recordTracksEvent( 'calypso_hosting_overview_monitor_site_performance_click' )
);
} }
>
{ translate( 'Monitor site performance', {
comment: 'A link to the "Monitoring" tab of the Hosting Overview',
} ) }
</a>
);
}
if ( isEligibleForAtomic ) {
return (
<a
href={ `/hosting-features/${ siteSlug }` }
onClick={ () => {
dispatch(
recordTracksEvent( 'calypso_hosting_overview_activate_hosting_features_click' )
);
} }
>
{ translate( 'Activate hosting features', {
comment: 'A link to the Hosting Features page to click an activation button',
} ) }
</a>
);
}
return (
<a
href={ `/hosting-features/${ siteSlug }` }
onClick={ () => {
dispatch( recordTracksEvent( 'calypso_hosting_overview_hosting_features_click' ) );
} }
>
{ translate( 'Upgrade to monitor site', {
comment: 'A link to the Hosting Features page to click an upgrade button',
} ) }
</a>
);
};
return (
<div className="plan-bandwidth">
<div className="plan-bandwidth-title-wrapper">
<div className="plan-bandwidth-title">
{ translate( 'Bandwidth', {
comment: 'The title of the bandwidth section of site stats',
} ) }
</div>
<div>
{ translate( 'Unlimited', { comment: 'An indicator that bandwidth is unlimited' } ) }
</div>
</div>
<div className="plan-bandwidth-content">{ getBandwidthContent() }</div>
{ getBandwidthFooterLink() }
</div>
);
}
|