mirror of
https://github.com/vercel/commerce.git
synced 2025-04-04 10:45:54 +00:00
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { HookFetcher } from '@commerce/utils/types'
|
|
import useCartRemoveItem from '@commerce/cart/use-remove-item'
|
|
import { normalizeCart } from '../lib/normalize'
|
|
import type { RemoveItemBody, Cart as BigcommerceCart } from '../api/cart'
|
|
import useCart from './use-cart'
|
|
|
|
const defaultOpts = {
|
|
url: '/api/bigcommerce/cart',
|
|
method: 'DELETE',
|
|
}
|
|
|
|
export type RemoveItemInput = {
|
|
id: string
|
|
}
|
|
|
|
export const fetcher: HookFetcher<Cart | null, RemoveItemBody> = async (
|
|
options,
|
|
{ itemId },
|
|
fetch
|
|
) => {
|
|
const data = await fetch<BigcommerceCart>({
|
|
...defaultOpts,
|
|
...options,
|
|
body: { itemId },
|
|
})
|
|
return normalizeCart(data)
|
|
}
|
|
|
|
export function extendHook(customFetcher: typeof fetcher) {
|
|
const useRemoveItem = (item?: any) => {
|
|
const { mutate } = useCart()
|
|
const fn = useCartRemoveItem<Cart | null, RemoveItemBody>(
|
|
defaultOpts,
|
|
customFetcher
|
|
)
|
|
|
|
return useCallback(
|
|
async function removeItem(input: RemoveItemInput) {
|
|
const data = await fn({ itemId: input.id ?? item?.id })
|
|
await mutate(data, false)
|
|
return data
|
|
},
|
|
[fn, mutate]
|
|
)
|
|
}
|
|
|
|
useRemoveItem.extend = extendHook
|
|
|
|
return useRemoveItem
|
|
}
|
|
|
|
export default extendHook(fetcher)
|