File size: 1,364 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
import {
REWIND_RESTORE,
REWIND_RESTORE_DISMISS,
REWIND_RESTORE_DISMISS_PROGRESS,
REWIND_RESTORE_REQUEST,
REWIND_RESTORE_UPDATE_PROGRESS,
} from 'calypso/state/action-types';
import { keyedReducer } from 'calypso/state/utils';
const startProgress = ( state, { timestamp } ) => ( {
errorCode: '',
failureReason: '',
message: '',
percent: 0,
status: 'queued',
timestamp,
rewindId: '',
} );
const updateProgress = (
state,
{
errorCode,
failureReason,
message,
percent,
restoreId,
status,
timestamp,
rewindId,
context,
currentEntry,
}
) => ( {
errorCode,
failureReason,
message,
percent,
restoreId,
status,
timestamp,
rewindId,
context,
currentEntry,
} );
export const restoreProgress = keyedReducer( 'siteId', ( state = {}, action ) => {
switch ( action.type ) {
case REWIND_RESTORE:
return startProgress( state, action );
case REWIND_RESTORE_DISMISS_PROGRESS:
return null;
case REWIND_RESTORE_UPDATE_PROGRESS:
return updateProgress( state, action );
case REWIND_RESTORE_DISMISS:
return null;
}
return state;
} );
export const restoreRequest = keyedReducer( 'siteId', ( state = null, action ) => {
switch ( action.type ) {
case REWIND_RESTORE:
return null;
case REWIND_RESTORE_DISMISS:
return null;
case REWIND_RESTORE_REQUEST:
return action.activityId;
}
return state;
} );
|