File size: 1,188 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 |
import { withStorageKey } from '@automattic/state-utils';
import {
ACCOUNT_CLOSE,
ACCOUNT_CLOSE_SUCCESS,
ACCOUNT_RESTORE,
ACCOUNT_RESTORE_FAILED,
ACCOUNT_RESTORE_SUCCESS,
} from 'calypso/state/action-types';
import { combineReducers } from 'calypso/state/utils';
export const isDeleting = ( state = false, action ) => {
switch ( action.type ) {
case ACCOUNT_CLOSE:
return true;
case ACCOUNT_CLOSE_SUCCESS:
return false;
}
return state;
};
export const isClosed = ( state = false, action ) => {
switch ( action.type ) {
case ACCOUNT_CLOSE_SUCCESS: {
return true;
}
}
return state;
};
export const restoreToken = ( state = null, action ) => {
switch ( action.type ) {
case ACCOUNT_CLOSE_SUCCESS: {
return action.payload.token;
}
}
return state;
};
export const isRestoring = ( state = false, action ) => {
switch ( action.type ) {
case ACCOUNT_RESTORE: {
return true;
}
case ACCOUNT_RESTORE_SUCCESS:
case ACCOUNT_RESTORE_FAILED: {
return false;
}
}
return state;
};
const combinedReducer = combineReducers( { isDeleting, isClosed, restoreToken, isRestoring } );
export default withStorageKey( 'account', combinedReducer );
|