mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
# Conflicts: # modules/ppcp-settings/resources/js/data/onboarding/hooks.js # modules/ppcp-settings/resources/js/data/onboarding/reducer.js
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
/**
|
|
* Reducer: Defines store structure and state updates for this module.
|
|
*
|
|
* Manages both transient (temporary) and persistent (saved) state.
|
|
* The initial state must define all properties, as dynamic additions are not supported.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
import { createReducer, createSetters } from '../utils';
|
|
import ACTION_TYPES from './action-types';
|
|
|
|
// Store structure.
|
|
|
|
const defaultTransient = Object.freeze( {
|
|
isReady: false,
|
|
|
|
// Read only values, provided by the server.
|
|
flags: Object.freeze( {
|
|
canUseCasualSelling: false,
|
|
canUseVaulting: false,
|
|
canUseCardPayments: false,
|
|
canUseSubscriptions: false,
|
|
} ),
|
|
} );
|
|
|
|
const defaultPersistent = Object.freeze( {
|
|
completed: false,
|
|
step: 0,
|
|
isCasualSeller: null, // null value will uncheck both options in the UI.
|
|
areOptionalPaymentMethodsEnabled: null,
|
|
products: [],
|
|
} );
|
|
|
|
// Reducer logic.
|
|
|
|
const [ setTransient, setPersistent ] = createSetters(
|
|
defaultTransient,
|
|
defaultPersistent
|
|
);
|
|
|
|
const onboardingReducer = createReducer( defaultTransient, defaultPersistent, {
|
|
[ ACTION_TYPES.SET_TRANSIENT ]: ( state, payload ) =>
|
|
setTransient( state, payload ),
|
|
|
|
[ ACTION_TYPES.SET_PERSISTENT ]: ( state, payload ) =>
|
|
setPersistent( state, payload ),
|
|
|
|
[ ACTION_TYPES.RESET ]: ( state ) => {
|
|
const cleanState = setTransient(
|
|
setPersistent( state, defaultPersistent ),
|
|
defaultTransient
|
|
);
|
|
|
|
// Keep "read-only" details and initialization flags.
|
|
cleanState.flags = { ...state.flags };
|
|
cleanState.isReady = true;
|
|
|
|
return cleanState;
|
|
},
|
|
|
|
[ ACTION_TYPES.HYDRATE ]: ( state, payload ) => {
|
|
const newState = setPersistent( state, payload.data );
|
|
|
|
// Flags are not updated by `setPersistent()`.
|
|
if ( payload.flags ) {
|
|
newState.flags = Object.freeze( {
|
|
...newState.flags,
|
|
...payload.flags,
|
|
} );
|
|
}
|
|
|
|
return newState;
|
|
},
|
|
} );
|
|
|
|
export default onboardingReducer;
|