import { JETPACK_SCAN_THREAT_FIX } from 'calypso/state/action-types'; import { registerHandlers } from 'calypso/state/data-layer/handler-registry'; import * as sitesAlertsFixHandlers from 'calypso/state/data-layer/wpcom/sites/alerts/fix'; import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils'; import { updateThreat, updateThreatCompleted, getFixThreatsStatus, } from 'calypso/state/jetpack-scan/threats/actions'; export const request = ( action ) => { const defaultActions = sitesAlertsFixHandlers.request( action ); return [ updateThreat( action.siteId, action.threatId ), ...defaultActions ]; }; export const success = ( action, rewindState ) => { const defaultActions = sitesAlertsFixHandlers.success( action, rewindState ); return [ ...defaultActions, getFixThreatsStatus( action.siteId, [ action.threatId ] ) ]; }; export const failure = ( action ) => { const defaultAction = sitesAlertsFixHandlers.failure( action ); return [ defaultAction, updateThreatCompleted( action.siteId, action.threatId ) ]; }; registerHandlers( 'state/data-layer/wpcom/sites/scan/threats/fix.js', { [ JETPACK_SCAN_THREAT_FIX ]: [ dispatchRequest( { fetch: request, onSuccess: success, onError: failure, } ), ], } );