2021-01-11 13:55:45 -03:00

33 lines
735 B
TypeScript

import { Product as BCProduct } from '@framework/schema'
export function normalizeProduct(productNode: BCProduct): Product {
const {
entityId: id,
images,
variants,
productOptions,
prices,
path,
...rest
} = productNode
return {
path,
slug: path?.slice(1, -1),
images: images?.edges?.map(
({ node: { urlOriginal, altText, ...rest } }: any) => ({
url: urlOriginal,
alt: altText,
...rest,
})
),
variants: variants?.edges?.map(({ node }: any) => node),
productOptions: productOptions?.edges?.map(({ node }: any) => node),
price: {
value: prices?.price.value,
currencyCode: prices?.price.currencyCode,
},
...rest,
}
}