| import { withStorageKey } from '@automattic/state-utils'; |
| import { |
| COUNTRY_STATES_RECEIVE, |
| COUNTRY_STATES_REQUEST, |
| COUNTRY_STATES_REQUEST_FAILURE, |
| COUNTRY_STATES_REQUEST_SUCCESS, |
| } from 'calypso/state/action-types'; |
| import { combineReducers, withSchemaValidation } from 'calypso/state/utils'; |
| import { itemSchema } from './schema'; |
|
|
| |
| export const items = withSchemaValidation( itemSchema, ( state = {}, action ) => { |
| switch ( action.type ) { |
| case COUNTRY_STATES_RECEIVE: |
| return { |
| ...state, |
| [ action.countryCode ]: action.countryStates, |
| }; |
| } |
|
|
| return state; |
| } ); |
|
|
| |
| export const isFetching = ( state = {}, action ) => { |
| switch ( action.type ) { |
| case COUNTRY_STATES_REQUEST: { |
| const { countryCode } = action; |
|
|
| return { |
| ...state, |
| [ countryCode ]: true, |
| }; |
| } |
| case COUNTRY_STATES_REQUEST_SUCCESS: { |
| const { countryCode } = action; |
|
|
| return { |
| ...state, |
| [ countryCode ]: false, |
| }; |
| } |
| case COUNTRY_STATES_REQUEST_FAILURE: { |
| const { countryCode } = action; |
|
|
| return { |
| ...state, |
| [ countryCode ]: false, |
| }; |
| } |
| } |
|
|
| return state; |
| }; |
|
|
| const combinedReducer = combineReducers( { |
| isFetching, |
| items, |
| } ); |
|
|
| export default withStorageKey( 'countryStates', combinedReducer ); |
|
|