File size: 1,442 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import { delay } from 'lodash';
import { ATOMIC_TRANSFER_REQUEST } from 'calypso/state/action-types';
import { fetchAtomicTransfer, setAtomicTransfer } from 'calypso/state/atomic-transfer/actions';
import { transferStates } from 'calypso/state/atomic-transfer/constants';
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 { requestSite } from 'calypso/state/sites/actions';
export const requestTransfer = ( action ) =>
http(
{
method: 'GET',
path: `/sites/${ action.siteId }/transfers/latest`,
apiVersion: '1.2',
},
action
);
export const receiveTransfer =
( { siteId }, transfer ) =>
( dispatch ) => {
dispatch( setAtomicTransfer( siteId, transfer ) );
const status = transfer.status;
if ( status !== transferStates.ERROR && status !== transferStates.COMPLETED ) {
delay( () => dispatch( fetchAtomicTransfer( siteId ) ), 10000 );
}
if ( status === transferStates.COMPLETED ) {
// Update the now-atomic site to ensure plugin page displays correctly.
dispatch( requestSite( siteId ) );
}
};
registerHandlers( 'state/data-layer/wpcom/sites/atomic/transfer/index.js', {
[ ATOMIC_TRANSFER_REQUEST ]: [
dispatchRequest( {
fetch: requestTransfer,
onSuccess: receiveTransfer,
onError: () => {},
} ),
],
} );
|