mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
update get product hook
This commit is contained in:
@@ -1,31 +1,33 @@
|
||||
import { HookFetcherFn } from '@commerce/utils/types'
|
||||
import { Cart } from '@commerce/types'
|
||||
import { checkoutCreate, checkoutToCart } from '.'
|
||||
// import { checkoutCreate, checkoutToCart } from '.'
|
||||
import { FetchCartInput } from '@commerce/cart/use-cart'
|
||||
import { data } from 'autoprefixer'
|
||||
import { normalizeCart } from '../../utils'
|
||||
|
||||
const fetcher: HookFetcherFn<Cart | null, FetchCartInput> = async ({
|
||||
options,
|
||||
input: { cartId: checkoutId },
|
||||
// input: { cartId: checkoutId },
|
||||
fetch,
|
||||
}) => {
|
||||
let checkout
|
||||
|
||||
if (checkoutId) {
|
||||
const data = await fetch({
|
||||
...options,
|
||||
variables: {
|
||||
checkoutId,
|
||||
},
|
||||
})
|
||||
checkout = data.node
|
||||
}
|
||||
// if (checkoutId) {
|
||||
const data = await fetch({
|
||||
query: 'cart',
|
||||
method: 'get',
|
||||
// variables: { category: categoryId },
|
||||
})
|
||||
// checkout = data.node
|
||||
// }
|
||||
|
||||
if (checkout?.completedAt || !checkoutId) {
|
||||
checkout = await checkoutCreate(fetch)
|
||||
}
|
||||
// if (checkout?.completedAt || !checkoutId) {
|
||||
// checkout = await checkoutCreate(fetch)
|
||||
// }
|
||||
|
||||
// TODO: Fix this type
|
||||
return checkoutToCart({ checkout } as any)
|
||||
// return checkoutToCart({ checkout } as any)
|
||||
return normalizeCart(data)
|
||||
}
|
||||
|
||||
export default fetcher
|
||||
|
Reference in New Issue
Block a user