File size: 867 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 |
import { useQuery } from '@tanstack/react-query';
import wp from 'calypso/lib/wp';
import { UrlPerformanceInsightsQueryResponse } from './types';
export const useUrlPerformanceInsightsQuery = ( url?: string, hash?: string ) => {
return useQuery< UrlPerformanceInsightsQueryResponse >( {
queryKey: [ 'url', 'performance', url, hash ],
queryFn: () =>
wp.req.get(
{
path: '/site-profiler/metrics/advanced/insights',
apiNamespace: 'wpcom/v2',
},
{ url, hash }
),
meta: {
persist: false,
},
enabled: !! url && !! hash,
retry: false,
refetchOnWindowFocus: false,
refetchInterval: ( query ) =>
query.state.data?.pagespeed?.status === 'completed' &&
( query.state.data?.wpscan?.status === 'completed' ||
Object.keys( query.state.data?.wpscan?.errors ?? {} ).length > 0 )
? false
: 5000, // 5 second
} );
};
|