mirror of
https://github.com/vercel/commerce.git
synced 2025-05-20 00:16:59 +00:00
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { HookFetcherContext, MutationHookContext } from '@commerce/utils/types'
|
|
import { CommerceError, ValidationError } from '@commerce/utils/errors'
|
|
import useUpdateItem, { UseUpdateItem } from '@commerce/cart/use-update-item'
|
|
import {
|
|
Cart,
|
|
CartItemBody,
|
|
LineItem,
|
|
UpdateCartItemBody,
|
|
} from '@commerce/types'
|
|
import useCart from './use-cart'
|
|
import {
|
|
AdjustOrderLineMutation,
|
|
AdjustOrderLineMutationVariables,
|
|
} from '../schema'
|
|
import { normalizeCart } from '../lib/normalize'
|
|
import { adjustOrderLineMutation } from '../lib/mutations/adjust-order-line-mutation'
|
|
|
|
export default useUpdateItem as UseUpdateItem<typeof handler>
|
|
|
|
export const handler = {
|
|
fetchOptions: {
|
|
query: adjustOrderLineMutation,
|
|
},
|
|
async fetcher(context: HookFetcherContext<UpdateCartItemBody<CartItemBody>>) {
|
|
const { input, options, fetch } = context
|
|
const variables: AdjustOrderLineMutationVariables = {
|
|
quantity: input.item.quantity || 1,
|
|
orderLineId: input.itemId,
|
|
}
|
|
const { adjustOrderLine } = await fetch<AdjustOrderLineMutation>({
|
|
...options,
|
|
variables,
|
|
})
|
|
|
|
if (adjustOrderLine.__typename === 'Order') {
|
|
return normalizeCart(adjustOrderLine)
|
|
}
|
|
throw new CommerceError(adjustOrderLine)
|
|
},
|
|
useHook:
|
|
({
|
|
fetch,
|
|
}: MutationHookContext<Cart | null, UpdateCartItemBody<CartItemBody>>) =>
|
|
(
|
|
ctx: {
|
|
item?: LineItem
|
|
wait?: number
|
|
} = {}
|
|
) => {
|
|
const { item } = ctx
|
|
const { mutate } = useCart()
|
|
|
|
return useCallback(
|
|
async function addItem(input: Partial<CartItemBody>) {
|
|
const itemId = item?.id
|
|
const productId = input.productId ?? item?.productId
|
|
const variantId = input.productId ?? item?.variantId
|
|
if (!itemId || !productId || !variantId) {
|
|
throw new ValidationError({
|
|
message: 'Invalid input used for this operation',
|
|
})
|
|
}
|
|
const data = await fetch({
|
|
input: {
|
|
item: {
|
|
productId,
|
|
variantId,
|
|
quantity: input.quantity,
|
|
},
|
|
itemId,
|
|
},
|
|
})
|
|
await mutate(data, false)
|
|
return data
|
|
},
|
|
[fetch, mutate]
|
|
)
|
|
},
|
|
}
|