Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useQuery } from '@tanstack/react-query';
import wpcom from 'calypso/lib/wp';
import getDefaultQueryParams from 'calypso/my-sites/stats/hooks/default-query-params';
import { getApiNamespace } from '../lib/get-api';
type Module = 'akismet' | 'protect' | 'vaultpress' | 'monitor' | 'stats' | 'verification-tools';
type ModuleData = number | string | boolean;
interface ErrorResponse {
code: string;
message: string | undefined;
}
function queryModuleData( module: Module ): Promise< ModuleData > {
// More information about the endpoint: https://github.com/Automattic/jetpack/blob/32acf7023bb76332947f4929863d212fdf3b890a/projects/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php#L1393
return wpcom.req
.get( {
method: 'GET',
// Ensure you add the apiNamespace to be able to access Jetpack's `jetpack/v4` endpoints, otherwise it's all defaulted to `jetpack/v4/stats-app`.
apiNamespace: getApiNamespace(),
path: `/module/${ module }/data`,
} )
.catch( ( error: Error & ErrorResponse ) => {
if ( error?.code === 'not_active' ) {
// Convert protect 404 error to normal not_active error.
throw new Error( error.code );
}
throw error;
} )
.then( ( response: ModuleData ) => {
// Proetect return false if the module is enabled but number of blocked attempts is 0.
if ( response === 'false' || response === false ) {
return 0;
}
if ( ! isNaN( parseInt( response as string ) ) ) {
return parseInt( response as string );
}
throw new Error( response as string );
} );
}
export default function useModuleDataQuery( module: Module ) {
return useQuery( {
...getDefaultQueryParams(),
queryKey: [ 'stats-widget', 'module-data', module ],
queryFn: () => queryModuleData( module ),
staleTime: 5 * 60 * 1000,
// If the module is not active, we don't want to retry the query.
retry: false,
} );
}