File size: 5,701 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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import React, { useEffect, useRef } from 'react';
import DocumentHead from 'calypso/components/data/document-head';
import { PerformanceReport } from 'calypso/data/site-profiler/types';
import { useUrlBasicMetricsQuery } from 'calypso/data/site-profiler/use-url-basic-metrics-query';
import { useUrlPerformanceInsightsQuery } from 'calypso/data/site-profiler/use-url-performance-insights';
import {
DeviceTabProvider,
useDeviceTab,
} from 'calypso/hosting/performance/contexts/device-tab-context';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import { PerformanceProfilerDashboardContent } from 'calypso/performance-profiler/components/dashboard-content';
import {
PerformanceProfilerHeader,
type TabType,
TabTypes,
} from 'calypso/performance-profiler/components/header';
import {
MessageDisplay,
ErrorSecondLine,
} from 'calypso/performance-profiler/components/message-display';
import { profilerVersion } from 'calypso/performance-profiler/utils/profiler-version';
import { updateQueryParams } from 'calypso/performance-profiler/utils/query-params';
import { LoadingScreen } from '../loading-screen';
import './style.scss';
type PerformanceProfilerDashboardProps = {
url: string;
tab: TabType;
hash: string;
filter?: string;
};
const PerformanceProfilerDashboard = ( props: PerformanceProfilerDashboardProps ) => {
const translate = useTranslate();
const { url, hash, filter } = props;
const isSavedReport = useRef( !! hash );
const { activeTab, setActiveTab } = useDeviceTab();
const {
data: basicMetrics,
isError: isBasicMetricsError,
isFetched,
} = useUrlBasicMetricsQuery( url, hash, true, translate.localeSlug );
const { final_url: finalUrl, token } = basicMetrics || {};
const { data, isError: isPerformanceInsightsError } = useUrlPerformanceInsightsQuery( url, hash );
const performanceInsights = data?.pagespeed;
const isError =
isBasicMetricsError ||
isPerformanceInsightsError ||
'failed' === performanceInsights?.mobile ||
'failed' === performanceInsights?.desktop;
const desktopLoaded = 'completed' === performanceInsights?.status;
const mobileLoaded = typeof performanceInsights?.mobile === 'object';
const siteUrl = new URL( url );
if ( isFetched && finalUrl ) {
performance.mark( 'test-started' );
recordTracksEvent( 'calypso_performance_profiler_test_started', {
url: finalUrl,
version: profilerVersion(),
} );
}
// Append hash to the URL if it's not there to avoid losing it on page reload
useEffect( () => {
if ( ! hash && token ) {
updateQueryParams( { hash: token, url: finalUrl ?? url }, true );
}
}, [ hash, token, finalUrl, url ] );
const getOnTabChange = ( tab: TabType ) => {
updateQueryParams( { tab: tab } );
recordTracksEvent( 'calypso_performance_profiler_tab_changed', {
url: siteUrl.href,
tab,
} );
setActiveTab( tab );
};
const mobileReport =
typeof performanceInsights?.mobile === 'string' ? undefined : performanceInsights?.mobile;
const desktopReport =
typeof performanceInsights?.desktop === 'string' ? undefined : performanceInsights?.desktop;
const performanceReport =
activeTab === TabTypes.mobile
? ( mobileReport as PerformanceReport )
: ( desktopReport as PerformanceReport );
return (
<div className="peformance-profiler-dashboard-container">
<DocumentHead title={ translate( 'Speed Test' ) } />
{ isError ? (
<MessageDisplay
isErrorMessage
displayBadge
message={
<>
{ translate( 'We couldn‘t test the performance of %s', {
args: [ siteUrl.host ],
} ) }
<br />
<ErrorSecondLine>
{ translate(
'We were unable to reliably load the page you requested. Make sure you are testing the correct URL and that the server is properly responding to all requests. '
) }
</ErrorSecondLine>
</>
}
ctaText={ translate( '← Back to speed test' ) }
ctaHref="/speed-test"
ctaIcon="arrow-left"
/>
) : (
<>
<PerformanceProfilerHeader
url={ url }
timestamp={ performanceReport?.timestamp }
activeTab={ activeTab }
onTabChange={ getOnTabChange }
showWPcomBadge={ performanceReport?.is_wpcom }
showNavigationTabs
shareLink={ performanceReport?.share_link }
/>
<div
className={ clsx( 'loading-container', 'mobile-loading', {
'is-active': activeTab === TabTypes.mobile,
'is-loading': ! mobileLoaded,
} ) }
>
<LoadingScreen isSavedReport={ isSavedReport.current } key="mobile-loading" />
</div>
<div
className={ clsx( 'loading-container', 'desktop-loading', {
'is-active': activeTab === TabTypes.desktop,
'is-loading': ! desktopLoaded,
} ) }
>
<LoadingScreen isSavedReport={ isSavedReport.current } key="desktop-loading" />
</div>
{ ( ( activeTab === TabTypes.mobile && mobileLoaded ) ||
( activeTab === TabTypes.desktop && desktopLoaded ) ) && (
<PerformanceProfilerDashboardContent
performanceReport={ performanceReport }
activeTab={ activeTab }
url={ finalUrl ?? url }
hash={ hash }
filter={ filter }
displayMigrationBanner={ ! performanceReport?.is_wpcom }
onRecommendationsFilterChange={ ( filter ) => updateQueryParams( { filter }, true ) }
/>
) }
</>
) }
</div>
);
};
export const PerformanceProfilerDashboardWrapper = ( props: PerformanceProfilerDashboardProps ) => {
return (
<DeviceTabProvider initialTab={ props.tab }>
<PerformanceProfilerDashboard { ...props } />
</DeviceTabProvider>
);
};
|