| 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 { TEAMS_REQUEST, TEAMS_RECEIVE } from 'calypso/state/teams/action-types'; | |
| export const handleTeamsRequest = ( action ) => | |
| http( | |
| { | |
| method: 'GET', | |
| path: '/read/teams', | |
| apiVersion: '1.2', | |
| }, | |
| action | |
| ); | |
| export const teamRequestReceived = ( action, apiResponse ) => ( { | |
| type: TEAMS_RECEIVE, | |
| payload: apiResponse, | |
| } ); | |
| export const teamRequestFailure = ( error ) => ( { | |
| type: TEAMS_RECEIVE, | |
| payload: error, | |
| error: true, | |
| } ); | |
| registerHandlers( 'state/data-layer/wpcom/read/teams/index.js', { | |
| [ TEAMS_REQUEST ]: [ | |
| dispatchRequest( { | |
| fetch: handleTeamsRequest, | |
| onSuccess: teamRequestReceived, | |
| onError: teamRequestFailure, | |
| } ), | |
| ], | |
| } ); | |