commerce/framework/shopify/cart/utils/checkout-to-cart.ts
2021-02-08 09:15:20 +02:00

29 lines
764 B
TypeScript

import { Cart } from '@commerce/types'
import { CommerceError, ValidationError } from '@commerce/utils/errors'
import { normalizeCart } from '@framework/lib/normalize'
import { Checkout, Maybe, UserError } from '@framework/schema'
const checkoutToCart = (checkoutResponse?: {
checkout: Checkout
userErrors?: UserError[]
}): Maybe<Cart> => {
const checkout = checkoutResponse?.checkout
const userErrors = checkoutResponse?.userErrors
if (userErrors && userErrors.length) {
throw new ValidationError({
message: userErrors[0].message,
})
}
if (!checkout) {
throw new CommerceError({
message: 'Missing checkout details from response cart Response',
})
}
return normalizeCart(checkout)
}
export default checkoutToCart