import { registerHandlers } from 'calypso/state/data-layer/handler-registry'; import { http } from 'calypso/state/data-layer/wpcom-http/actions'; import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils'; import { READER_SITE_BLOCKS_RECEIVE, READER_SITE_BLOCKS_REQUEST, } from 'calypso/state/reader/action-types'; export const handleSiteBlocksRequest = ( action ) => http( { apiNamespace: 'wpcom/v2', method: 'GET', path: '/me/blocks/sites', query: { page: ( action.payload && action.payload.page ) || 1, per_page: ( action.payload && action.perPage ) || 20, }, }, action ); export const siteBlocksRequestReceived = ( action, payload ) => ( { type: READER_SITE_BLOCKS_RECEIVE, payload, } ); export const siteBlocksRequestFailure = ( error ) => ( { type: READER_SITE_BLOCKS_RECEIVE, payload: error, error: true, } ); registerHandlers( 'state/data-layer/wpcom/me/blocks/sites/index.js', { [ READER_SITE_BLOCKS_REQUEST ]: [ dispatchRequest( { fetch: handleSiteBlocksRequest, onSuccess: siteBlocksRequestReceived, onError: siteBlocksRequestFailure, } ), ], } ); export default {};