forked from crowetic/commerce
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { useCallback } from 'react'
|
|
import type {
|
|
MutationHookContext,
|
|
HookFetcherContext,
|
|
} from '@commerce/utils/types'
|
|
|
|
import useRemoveItem, { UseRemoveItem } from '@commerce/cart/use-remove-item'
|
|
import type { Cart, LineItem, RemoveItemHook } from '@commerce/types/cart'
|
|
import useCart from './use-cart'
|
|
import { checkoutToCart } from './utils'
|
|
|
|
export type RemoveItemFn<T = any> = T extends LineItem
|
|
? (input?: RemoveItemActionInput<T>) => Promise<Cart | null | undefined>
|
|
: (input: RemoveItemActionInput<T>) => Promise<Cart | null>
|
|
|
|
export type RemoveItemActionInput<T = any> = T extends LineItem
|
|
? Partial<RemoveItemHook['actionInput']>
|
|
: RemoveItemHook['actionInput']
|
|
|
|
export default useRemoveItem as UseRemoveItem<typeof handler>
|
|
|
|
export const handler = {
|
|
fetchOptions: {
|
|
query: 'cart',
|
|
method: 'removeItem',
|
|
},
|
|
async fetcher({
|
|
input: { itemId },
|
|
options,
|
|
fetch,
|
|
}: HookFetcherContext<RemoveItemHook>) {
|
|
const response = await fetch({ ...options, variables: [itemId] })
|
|
|
|
return checkoutToCart(response)
|
|
},
|
|
useHook:
|
|
({ fetch }: MutationHookContext<RemoveItemHook>) =>
|
|
() => {
|
|
const { mutate } = useCart()
|
|
|
|
return useCallback(
|
|
async function removeItem(input) {
|
|
const data = await fetch({ input: { itemId: input.id } })
|
|
await mutate(data, false)
|
|
|
|
return data
|
|
},
|
|
[fetch, mutate]
|
|
)
|
|
},
|
|
}
|