File size: 2,160 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 | import clsx from 'clsx';
import { STATS_TYPE_DEVICE_STATS } from 'calypso/my-sites/stats/constants';
import { useShouldGateStats } from 'calypso/my-sites/stats/hooks/use-should-gate-stats';
import { default as usePlanUsageQuery } from '../../../hooks/use-plan-usage-query';
import useStatsPurchases from '../../../hooks/use-stats-purchases';
import useStatsStrings from '../../../hooks/use-stats-strings';
import StatsCardSkeleton from '../shared/stats-card-skeleton';
import StatsModuleDevices from './stats-module-devices';
import StatsModuleUpgradeOverlay from './stats-module-upgrade-overlay';
import type { StatsAdvancedModuleWrapperProps } from '../types';
const DEVICES_CLASS_NAME = 'stats-module-devices';
const StatsModuleDevicesWrapper: React.FC< StatsAdvancedModuleWrapperProps > = ( {
siteId,
period,
postId,
query,
className,
} ) => {
const { devices: devicesStrings } = useStatsStrings();
const shouldGateStats = useShouldGateStats( STATS_TYPE_DEVICE_STATS );
// Check if blog is internal.
const { isPending: isFetchingUsage, data: usageData } = usePlanUsageQuery( siteId );
const { isLoading: isLoadingFeatureCheck } = useStatsPurchases( siteId );
const isSiteInternal = ! isFetchingUsage && usageData?.is_internal;
const isFetching = isFetchingUsage || isLoadingFeatureCheck; // This is not fetching Devices data.
const isAdvancedFeatureEnabled = isSiteInternal || ! shouldGateStats;
// Hide the module if the specific post is the Home page.
if ( postId === 0 ) {
return null;
}
return (
<>
{ isFetching && (
<StatsCardSkeleton
isLoading={ isFetching }
className={ className }
title={ devicesStrings?.title }
type={ 1 }
/>
) }
{ ! isFetching && ! isAdvancedFeatureEnabled && (
<StatsModuleUpgradeOverlay className={ className } siteId={ siteId } />
) }
{ ! isFetching && isAdvancedFeatureEnabled && (
<StatsModuleDevices
path="devices"
className={ clsx( className, DEVICES_CLASS_NAME ) }
period={ period }
query={ query }
isLoading={ isFetching }
postId={ postId }
/>
) }
</>
);
};
export default StatsModuleDevicesWrapper;
|