|
|
import { |
|
|
useQuery, |
|
|
useMutation, |
|
|
UseMutationOptions, |
|
|
useQueryClient, |
|
|
DefaultError, |
|
|
} from '@tanstack/react-query'; |
|
|
import { useI18n } from '@wordpress/react-i18n'; |
|
|
import { useTranslate } from 'i18n-calypso'; |
|
|
import { useCallback, useEffect } from 'react'; |
|
|
import wp from 'calypso/lib/wp'; |
|
|
import { useDispatch } from 'calypso/state'; |
|
|
import { successNotice, errorNotice, infoNotice } from 'calypso/state/notices/actions'; |
|
|
|
|
|
export const EDGE_CACHE_ENABLE_DISABLE_NOTICE_ID = 'edge-cache-enable-disable-notice'; |
|
|
export const USE_EDGE_CACHE_QUERY_KEY = 'edge-cache-key'; |
|
|
export const TOGGLE_EDGE_CACHE_MUTATION_KEY = 'set-edge-site-mutation-key'; |
|
|
export const CLEAR_EDGE_CACHE_MUTATION_KEY = 'clear-edge-site-mutation-key'; |
|
|
export const EDGE_CACHE_DEFENSIVE_MODE_QUERY_KEY = 'edge-cache-defensive-mode-key'; |
|
|
|
|
|
interface SetEdgeCacheMutationVariables { |
|
|
siteId: number | null; |
|
|
active: boolean; |
|
|
} |
|
|
|
|
|
interface MutationResponse { |
|
|
message: string; |
|
|
} |
|
|
|
|
|
interface MutationError { |
|
|
code: string; |
|
|
message: string; |
|
|
} |
|
|
|
|
|
export const getEdgeCacheStatus = async ( siteId: number | null ) => { |
|
|
return await wp.req.get( { |
|
|
path: `/sites/${ siteId }/hosting/edge-cache/active`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ); |
|
|
}; |
|
|
|
|
|
export const purgeEdgeCache = async ( siteId: number | null ) => { |
|
|
return await wp.req.post( { |
|
|
path: `/sites/${ siteId }/hosting/edge-cache/purge`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ); |
|
|
}; |
|
|
|
|
|
export const useEdgeCacheQuery = ( siteId: number | null ) => { |
|
|
return useQuery< boolean >( { |
|
|
queryKey: [ USE_EDGE_CACHE_QUERY_KEY, siteId ], |
|
|
queryFn: () => getEdgeCacheStatus( siteId as number ), |
|
|
enabled: !! siteId, |
|
|
meta: { |
|
|
persist: false, |
|
|
}, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
export const useSetEdgeCacheMutation = ( |
|
|
options: UseMutationOptions< boolean, MutationError, SetEdgeCacheMutationVariables > = {} |
|
|
) => { |
|
|
const { __ } = useI18n(); |
|
|
const dispatch = useDispatch(); |
|
|
const queryClient = useQueryClient(); |
|
|
const mutation = useMutation< boolean, MutationError, SetEdgeCacheMutationVariables >( { |
|
|
...options, |
|
|
mutationFn: async ( { active, siteId } ) => { |
|
|
return await wp.req.post( { |
|
|
path: `/sites/${ siteId }/hosting/edge-cache/active`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
body: { |
|
|
active, |
|
|
}, |
|
|
} ); |
|
|
}, |
|
|
mutationKey: [ TOGGLE_EDGE_CACHE_MUTATION_KEY ], |
|
|
onMutate: async ( { active, siteId } ) => { |
|
|
await queryClient.cancelQueries( { |
|
|
queryKey: [ USE_EDGE_CACHE_QUERY_KEY, siteId ], |
|
|
} ); |
|
|
const previousData = queryClient.getQueryData( [ USE_EDGE_CACHE_QUERY_KEY, siteId ] ); |
|
|
queryClient.setQueryData( [ USE_EDGE_CACHE_QUERY_KEY, siteId ], active ); |
|
|
return previousData; |
|
|
}, |
|
|
onSuccess( data, variables, context ) { |
|
|
const defensiveModeKey = getEdgeCacheDefensiveModeQueryKey( variables.siteId ); |
|
|
queryClient.invalidateQueries( { queryKey: defensiveModeKey } ); |
|
|
|
|
|
dispatch( |
|
|
successNotice( |
|
|
variables.active ? __( 'Edge cache enabled.' ) : __( 'Edge cache disabled.' ), |
|
|
{ |
|
|
duration: 5000, |
|
|
id: EDGE_CACHE_ENABLE_DISABLE_NOTICE_ID, |
|
|
} |
|
|
) |
|
|
); |
|
|
options?.onSuccess?.( data, variables, context ); |
|
|
}, |
|
|
onError( error, variables, prevValue ) { |
|
|
|
|
|
queryClient.setQueryData( |
|
|
[ USE_EDGE_CACHE_QUERY_KEY, variables.siteId ], |
|
|
Boolean( prevValue ) |
|
|
); |
|
|
|
|
|
dispatch( |
|
|
errorNotice( |
|
|
variables.active |
|
|
? __( 'Failed to enable edge cache.' ) |
|
|
: __( 'Failed to disable edge cache.' ), |
|
|
{ duration: 5000, id: EDGE_CACHE_ENABLE_DISABLE_NOTICE_ID } |
|
|
) |
|
|
); |
|
|
|
|
|
options?.onError?.( error, variables, prevValue ); |
|
|
}, |
|
|
onSettled( data, error, variables, context ) { |
|
|
|
|
|
queryClient.invalidateQueries( { |
|
|
queryKey: [ USE_EDGE_CACHE_QUERY_KEY, variables.siteId ], |
|
|
} ); |
|
|
options?.onSettled?.( data, error, variables, context ); |
|
|
}, |
|
|
} ); |
|
|
|
|
|
const { mutate, ...rest } = mutation; |
|
|
|
|
|
const setEdgeCache = useCallback( |
|
|
( siteId: number | null, active: boolean ) => { |
|
|
dispatch( |
|
|
infoNotice( active ? __( 'Enabling edge cache…' ) : __( 'Disabling edge cache…' ), { |
|
|
duration: 5000, |
|
|
id: EDGE_CACHE_ENABLE_DISABLE_NOTICE_ID, |
|
|
isLoading: true, |
|
|
icon: 'ellipsis', |
|
|
} ) |
|
|
); |
|
|
|
|
|
mutate( { siteId, active } ); |
|
|
}, |
|
|
[ dispatch, mutate, __ ] |
|
|
); |
|
|
|
|
|
return { setEdgeCache, ...rest }; |
|
|
}; |
|
|
|
|
|
export const clearEdgeCacheSuccessNoticeId = 'hosting-clear-edge-cache'; |
|
|
|
|
|
export const useClearEdgeCacheMutation = ( |
|
|
siteId: number | null, |
|
|
options: UseMutationOptions< MutationResponse, MutationError > = {} |
|
|
) => { |
|
|
const translate = useTranslate(); |
|
|
const dispatch = useDispatch(); |
|
|
|
|
|
return useMutation( { |
|
|
mutationFn: () => purgeEdgeCache( siteId ), |
|
|
mutationKey: [ CLEAR_EDGE_CACHE_MUTATION_KEY, siteId ], |
|
|
...options, |
|
|
onSuccess( data, variables, context ) { |
|
|
dispatch( |
|
|
successNotice( translate( 'Successfully cleared edge cache.' ), { |
|
|
id: clearEdgeCacheSuccessNoticeId, |
|
|
duration: 5000, |
|
|
} ) |
|
|
); |
|
|
options?.onSuccess?.( data, variables, context ); |
|
|
}, |
|
|
onError( error, variables, context ) { |
|
|
dispatch( errorNotice( translate( 'Failed to clear edge cache.' ) ) ); |
|
|
options?.onError?.( error, variables, context ); |
|
|
}, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
function getEdgeCacheDefensiveModeQueryKey( siteId: number | null ) { |
|
|
return [ EDGE_CACHE_DEFENSIVE_MODE_QUERY_KEY, siteId ]; |
|
|
} |
|
|
|
|
|
type EdgeCacheDefensiveModeQueryData = { |
|
|
enabled: boolean; |
|
|
enabled_until: number; |
|
|
enabled_by_a11n: boolean; |
|
|
}; |
|
|
|
|
|
export function useEdgeCacheDefensiveModeQuery( siteId: number | null ) { |
|
|
const query = useQuery< EdgeCacheDefensiveModeQueryData >( { |
|
|
queryKey: getEdgeCacheDefensiveModeQueryKey( siteId ), |
|
|
queryFn: () => |
|
|
wp.req.get( { |
|
|
path: `/sites/${ siteId }/hosting/edge-cache/defensive-mode`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
} ), |
|
|
enabled: siteId !== null, |
|
|
} ); |
|
|
|
|
|
const { data, refetch } = query; |
|
|
const enabled = data?.enabled ?? false; |
|
|
const enabledUntil = data?.enabled_until ?? 0; |
|
|
|
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
if ( ! enabled ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
const delayUntilDefensiveModeEnds = enabledUntil * 1000 - Date.now(); |
|
|
const delayUntilRefetch = Math.max( 0, delayUntilDefensiveModeEnds ) + 10000; |
|
|
const timeoutId = setTimeout( () => refetch(), delayUntilRefetch ); |
|
|
|
|
|
return () => { |
|
|
clearTimeout( timeoutId ); |
|
|
}; |
|
|
}, [ enabled, enabledUntil, refetch ] ); |
|
|
|
|
|
return query; |
|
|
} |
|
|
|
|
|
type EdgeCacheDefensiveModeMutationVariables = { active: true; ttl: number } | { active: false }; |
|
|
|
|
|
export function useEdgeCacheDefensiveModeMutation( siteId: number | null ) { |
|
|
const queryClient = useQueryClient(); |
|
|
const queryKey = getEdgeCacheDefensiveModeQueryKey( siteId ); |
|
|
const dispatch = useDispatch(); |
|
|
const translate = useTranslate(); |
|
|
|
|
|
return useMutation< |
|
|
EdgeCacheDefensiveModeQueryData, |
|
|
DefaultError, |
|
|
EdgeCacheDefensiveModeMutationVariables |
|
|
>( { |
|
|
mutationFn( variables ) { |
|
|
return wp.req.post( { |
|
|
path: `/sites/${ siteId }/hosting/edge-cache/defensive-mode`, |
|
|
apiNamespace: 'wpcom/v2', |
|
|
body: variables, |
|
|
} ); |
|
|
}, |
|
|
onSuccess( data ) { |
|
|
queryClient.setQueryData( queryKey, data ); |
|
|
|
|
|
const toastMessage = data.enabled |
|
|
? translate( 'Successfully enabled defensive mode.' ) |
|
|
: translate( 'Successfully disabled defensive mode.' ); |
|
|
dispatch( successNotice( toastMessage, { duration: 5000 } ) ); |
|
|
}, |
|
|
onError( error, variables ) { |
|
|
const toastMessage = variables.active |
|
|
? translate( 'Failed to enable defensive mode.' ) |
|
|
: translate( 'Failed to disable defensive mode.' ); |
|
|
dispatch( errorNotice( toastMessage, { duration: 5000 } ) ); |
|
|
}, |
|
|
} ); |
|
|
} |
|
|
|