mirror of
https://github.com/vercel/commerce.git
synced 2025-07-18 18:31:24 +00:00
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import type {
|
|
OperationContext,
|
|
OperationOptions,
|
|
} from '@commerce/api/operations'
|
|
import { GetProductOperation } from '../../types/product'
|
|
import { normalizeProduct, getProductQuery } from '../../utils'
|
|
import type { ShopifyConfig, Provider } from '..'
|
|
import { GetProductBySlugQuery, Product as ShopifyProduct } from '../../schema'
|
|
|
|
export default function getProductOperation({
|
|
commerce,
|
|
}: OperationContext<Provider>) {
|
|
async function getProduct<T extends GetProductOperation>(opts: {
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']>
|
|
|
|
async function getProduct<T extends GetProductOperation>(
|
|
opts: {
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
} & OperationOptions
|
|
): Promise<T['data']>
|
|
|
|
async function getProduct<T extends GetProductOperation>({
|
|
query = getProductQuery,
|
|
variables,
|
|
config: cfg,
|
|
}: {
|
|
query?: string
|
|
variables: T['variables']
|
|
config?: Partial<ShopifyConfig>
|
|
preview?: boolean
|
|
}): Promise<T['data']> {
|
|
const { fetch, locale } = commerce.getConfig(cfg)
|
|
|
|
const {
|
|
data: { productByHandle },
|
|
} = await fetch<GetProductBySlugQuery>(
|
|
query,
|
|
{
|
|
variables,
|
|
},
|
|
{
|
|
...(locale && {
|
|
headers: {
|
|
'Accept-Language': locale,
|
|
},
|
|
}),
|
|
}
|
|
)
|
|
|
|
return {
|
|
...(productByHandle && {
|
|
product: normalizeProduct(productByHandle as ShopifyProduct),
|
|
}),
|
|
}
|
|
}
|
|
|
|
return getProduct
|
|
}
|