mirror of
https://github.com/vercel/commerce.git
synced 2025-03-31 01:05:53 +00:00
This reverts commit 23c8ed7c2d48d30e74ad94216f9910650fadf30c, reversing changes made to bf50965a39ef0b1b956461ebe62070809fbe1d63.
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
import type { HookFetcher } from '@commerce/utils/types'
|
|
import type { SwrOptions } from '@commerce/utils/use-data'
|
|
import useResponse from '@commerce/utils/use-response'
|
|
import useCommerceCart, { CartInput } from '@commerce/cart/use-cart'
|
|
import { normalizeCart } from '../lib/normalize'
|
|
import type { Cart, BigcommerceCart } from '../types'
|
|
|
|
const defaultOpts = {
|
|
url: '/api/bigcommerce/cart',
|
|
method: 'GET',
|
|
}
|
|
|
|
export const fetcher: HookFetcher<Cart | null, CartInput> = async (
|
|
options,
|
|
{ cartId },
|
|
fetch
|
|
) => {
|
|
const data = cartId
|
|
? await fetch<BigcommerceCart>({ ...defaultOpts, ...options })
|
|
: null
|
|
return data && normalizeCart(data)
|
|
}
|
|
|
|
export function extendHook(
|
|
customFetcher: typeof fetcher,
|
|
swrOptions?: SwrOptions<Cart | null, CartInput>
|
|
) {
|
|
const useCart = () => {
|
|
const response = useCommerceCart(defaultOpts, [], customFetcher, {
|
|
revalidateOnFocus: false,
|
|
...swrOptions,
|
|
})
|
|
const res = useResponse(response, {
|
|
descriptors: {
|
|
isEmpty: {
|
|
get() {
|
|
return (response.data?.lineItems.length ?? 0) <= 0
|
|
},
|
|
enumerable: true,
|
|
},
|
|
},
|
|
})
|
|
|
|
return res
|
|
}
|
|
|
|
useCart.extend = extendHook
|
|
|
|
return useCart
|
|
}
|
|
|
|
export default extendHook(fetcher)
|