|
|
import { withStorageKey } from '@automattic/state-utils'; |
|
|
import { |
|
|
PURCHASE_CANCELLATION_OFFER_REQUEST, |
|
|
PURCHASE_CANCELLATION_OFFER_RECEIVE, |
|
|
PURCHASE_CANCELLATION_OFFER_REQUEST_FAILURE, |
|
|
PURCHASE_CANCELLATION_OFFER_APPLY, |
|
|
PURCHASE_CANCELLATION_OFFER_APPLY_FAILURE, |
|
|
PURCHASE_CANCELLATION_OFFER_APPLY_SUCCESS, |
|
|
} from 'calypso/state/action-types'; |
|
|
import { |
|
|
CancellationOffer, |
|
|
CancellationOfferAPIResponse, |
|
|
} from 'calypso/state/cancellation-offers/types'; |
|
|
import { combineReducers, keyedReducer } from 'calypso/state/utils'; |
|
|
import type { AnyAction } from 'redux'; |
|
|
|
|
|
|
|
|
const mapResponseObject = ( { |
|
|
currency_code, |
|
|
discount_percentage, |
|
|
discounted_periods, |
|
|
formatted_price, |
|
|
original_price, |
|
|
raw_price, |
|
|
}: CancellationOfferAPIResponse ): CancellationOffer => ( { |
|
|
currencyCode: currency_code, |
|
|
discountPercentage: discount_percentage, |
|
|
discountedPeriods: discounted_periods, |
|
|
formattedPrice: formatted_price, |
|
|
originalPrice: original_price, |
|
|
rawPrice: raw_price, |
|
|
} ); |
|
|
|
|
|
const createCancellationOfferMap = ( payload: CancellationOfferAPIResponse[] ) => { |
|
|
return payload.map( mapResponseObject ); |
|
|
}; |
|
|
|
|
|
const isFetching = ( state = null, action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_REQUEST: |
|
|
return true; |
|
|
case PURCHASE_CANCELLATION_OFFER_RECEIVE: |
|
|
case PURCHASE_CANCELLATION_OFFER_REQUEST_FAILURE: |
|
|
return false; |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
const error = ( state = {}, action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_REQUEST_FAILURE: |
|
|
return action.error; |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
export const offers = ( state = [], action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_RECEIVE: |
|
|
return createCancellationOfferMap( action.offers ); |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
export const isApplying = ( state = false, action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_APPLY: |
|
|
return true; |
|
|
case PURCHASE_CANCELLATION_OFFER_APPLY_FAILURE: |
|
|
case PURCHASE_CANCELLATION_OFFER_APPLY_SUCCESS: |
|
|
return false; |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
export const applyError = ( state = null, action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_APPLY_FAILURE: |
|
|
return action.error; |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
export const applySuccess = ( state = false, action: AnyAction ) => { |
|
|
switch ( action.type ) { |
|
|
case PURCHASE_CANCELLATION_OFFER_APPLY_SUCCESS: |
|
|
return action.success; |
|
|
} |
|
|
|
|
|
return state; |
|
|
}; |
|
|
|
|
|
const cancellationOffersReducer = combineReducers( { |
|
|
isFetching, |
|
|
error, |
|
|
offers, |
|
|
isApplying, |
|
|
applyError, |
|
|
applySuccess, |
|
|
} ); |
|
|
|
|
|
const reducer = keyedReducer( 'purchaseId', cancellationOffersReducer ); |
|
|
export default withStorageKey( 'cancellationOffers', reducer ); |
|
|
|