Refactor API for getProduct and getAllProductPaths

Signed-off-by: Loan Laux <loan@outgrow.io>
This commit is contained in:
Loan Laux 2021-07-06 16:11:26 +03:00
parent 23e0d57cf5
commit ad1547a586
No known key found for this signature in database
GPG Key ID: AF9E9BD6548AD52E
2 changed files with 18 additions and 49 deletions

View File

@ -39,12 +39,17 @@ export default function getAllProductPathsOperation({
// RecursivePartial forces the method to check for every prop in the data, which is // RecursivePartial forces the method to check for every prop in the data, which is
// required in case there's a custom `query` // required in case there's a custom `query`
const { data } = await config.fetch<CatalogItem>(query, { const { data } = await config.fetch<CatalogItem>(query, {
variables, variables: {
...variables,
shopIds: [config.shopId],
},
}) })
const products = data.products.items const products = data.catalogItems?.edges
return { return {
products: products.map((p) => ({ path: `/${p.slug}` })), products: products.map(({ node }) => ({
path: `/${node.product?.slug}`,
})),
} }
} }

View File

@ -1,8 +1,9 @@
import { Product } from '@commerce/types/product' import { Product } from '@commerce/types/product'
import { OperationContext } from '@commerce/api/operations' import { OperationContext } from '@commerce/api/operations'
import { Provider, VendureConfig } from '../' import { normalizeProduct } from '@framework/utils'
import { GetProductQuery } from '../../schema' import { Provider, ReactionCommerceConfig } from '../'
import { getProductQuery } from '../../utils/queries/get-product-query' import { CatalogItem } from '../../schema'
import getProductQuery from '../../utils/queries/get-product-query'
export default function getProductOperation({ export default function getProductOperation({
commerce, commerce,
@ -14,55 +15,18 @@ export default function getProductOperation({
}: { }: {
query?: string query?: string
variables: { slug: string } variables: { slug: string }
config?: Partial<VendureConfig> config?: Partial<ReactionCommerceConfig>
preview?: boolean preview?: boolean
}): Promise<Product | {} | any> { }): Promise<Product | {} | any> {
const config = commerce.getConfig(cfg) const config = commerce.getConfig(cfg)
const locale = config.locale const { data } = await config.fetch<CatalogItem>(query, { variables })
const { data } = await config.fetch<GetProductQuery>(query, { variables })
const product = data.product
if (product) { const { catalogItemProduct } = data
const getOptionGroupName = (id: string): string => {
return product.optionGroups.find((og) => og.id === id)!.name if (catalogItemProduct) {
} return { product: normalizeProduct(catalogItemProduct) }
return {
product: {
id: product.id,
name: product.name,
description: product.description,
slug: product.slug,
images: product.assets.map((a) => ({
url: a.preview,
alt: a.name,
})),
variants: product.variants.map((v) => ({
id: v.id,
options: v.options.map((o) => ({
// This __typename property is required in order for the correct
// variant selection to work, see `components/product/helpers.ts`
// `getVariant()` function.
__typename: 'MultipleChoiceOption',
id: o.id,
displayName: getOptionGroupName(o.groupId),
values: [{ label: o.name }],
})),
})),
price: {
value: product.variants[0].priceWithTax / 100,
currencyCode: product.variants[0].currencyCode,
},
options: product.optionGroups.map((og) => ({
id: og.id,
displayName: og.name,
values: og.options.map((o) => ({ label: o.name })),
})),
} as Product,
}
} }
return {}
} }
return getProduct return getProduct