mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
Added initial version of useAddItem
This commit is contained in:
parent
7f0c1eb66c
commit
89cc3d0608
@ -1,66 +1,60 @@
|
||||
import { useCallback } from 'react'
|
||||
import type { MutationHandler } from '@commerce/utils/types'
|
||||
import { CommerceError } from '@commerce/utils/errors'
|
||||
import useAddItem, { UseAddItem } from '@commerce/cart/use-add-item'
|
||||
import useCart from './use-cart'
|
||||
|
||||
import useCartAddItem, {
|
||||
AddItemInput as UseAddItemInput,
|
||||
} from '@commerce/cart/use-add-item'
|
||||
|
||||
import type { HookFetcher } from '@commerce/utils/types'
|
||||
import type { Cart } from '@commerce/types'
|
||||
|
||||
import { checkoutLineItemAddMutation, getCheckoutId } from '@framework/utils'
|
||||
import { ShopifyProvider } from '..'
|
||||
import { AddCartItemBody, CartItemBody } from '@commerce/types'
|
||||
import { Cart } from '@framework/types'
|
||||
import {
|
||||
checkoutLineItemAddMutation,
|
||||
getCheckoutId,
|
||||
getCheckoutQuery,
|
||||
} from '@framework/utils'
|
||||
import { checkoutToCart } from './utils'
|
||||
|
||||
import { AddCartItemBody, CartItemBody } from '@framework/types'
|
||||
import { MutationCheckoutLineItemsAddArgs } from '@framework/schema'
|
||||
|
||||
const defaultOpts = {
|
||||
query: checkoutLineItemAddMutation,
|
||||
}
|
||||
|
||||
export type AddItemInput = UseAddItemInput<CartItemBody>
|
||||
export default useAddItem as UseAddItem<ShopifyProvider, CartItemBody>
|
||||
|
||||
export const fetcher: HookFetcher<
|
||||
Cart,
|
||||
MutationCheckoutLineItemsAddArgs
|
||||
> = async (options, { checkoutId, lineItems }, fetch) => {
|
||||
const data = await fetch<any, AddCartItemBody>({
|
||||
...options,
|
||||
variables: {
|
||||
checkoutId,
|
||||
lineItems,
|
||||
},
|
||||
})
|
||||
export const handler: MutationHandler<Cart, {}, AddCartItemBody> = {
|
||||
fetchOptions: {
|
||||
query: checkoutLineItemAddMutation,
|
||||
},
|
||||
async fetcher({ input, options, fetch }) {
|
||||
const item = input.item ?? input
|
||||
if (
|
||||
item.quantity &&
|
||||
(!Number.isInteger(item.quantity) || item.quantity! < 1)
|
||||
) {
|
||||
throw new CommerceError({
|
||||
message: 'The item quantity has to be a valid integer greater than 0',
|
||||
})
|
||||
}
|
||||
|
||||
return checkoutToCart(data?.checkoutLineItemsAdd)
|
||||
}
|
||||
|
||||
export function extendHook(customFetcher: typeof fetcher) {
|
||||
const useAddItem = () => {
|
||||
const { mutate, data: cart } = useCart()
|
||||
const fn = useCartAddItem(defaultOpts, customFetcher)
|
||||
|
||||
return useCallback(
|
||||
async function addItem(input: AddItemInput) {
|
||||
const data = await fn({
|
||||
lineItems: [
|
||||
{
|
||||
variantId: input.variantId,
|
||||
quantity: input.quantity ?? 1,
|
||||
},
|
||||
],
|
||||
checkoutId: getCheckoutId(cart?.id)!,
|
||||
})
|
||||
await mutate(data, false)
|
||||
return data
|
||||
const data = await fetch<any, any>({
|
||||
...defaultOpts,
|
||||
...options,
|
||||
variables: {
|
||||
lineItems: [
|
||||
{
|
||||
variantId: item.variantId,
|
||||
quantity: item.quantity ?? 1,
|
||||
},
|
||||
],
|
||||
checkoutId: getCheckoutId(),
|
||||
},
|
||||
[fn, mutate]
|
||||
)
|
||||
}
|
||||
})
|
||||
|
||||
useAddItem.extend = extendHook
|
||||
|
||||
return useAddItem
|
||||
return checkoutToCart(data.checkoutLineItemsAdd)
|
||||
},
|
||||
useHook() {
|
||||
const { mutate } = useCart()
|
||||
return async function addItem({ input, fetch }) {
|
||||
const data = await fetch({ input })
|
||||
await mutate(data, false)
|
||||
return data
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
export default extendHook(fetcher)
|
||||
|
@ -34,7 +34,7 @@ export const fetcher: HookFetcher<Cart | null, any> = async (
|
||||
...options,
|
||||
variables: { lineItemIds: [itemId], checkoutId },
|
||||
})
|
||||
return checkoutToCart(data?.checkoutLineItemsRemove)
|
||||
return checkoutToCart(data.checkoutLineItemsRemove)
|
||||
}
|
||||
|
||||
export function extendHook(customFetcher: typeof fetcher) {
|
||||
|
@ -44,7 +44,7 @@ export const fetcher: HookFetcher<Cart | null, any> = async (
|
||||
variables: { checkoutId, lineItems: [item] },
|
||||
})
|
||||
|
||||
return checkoutToCart(data?.checkoutLineItemsUpdate)
|
||||
return checkoutToCart(data.checkoutLineItemsUpdate)
|
||||
}
|
||||
|
||||
function extendHook(customFetcher: typeof fetcher, cfg?: { wait?: number }) {
|
||||
|
@ -1,12 +1,12 @@
|
||||
import { Cart } from '@commerce/types'
|
||||
import { CommerceError, ValidationError } from '@commerce/utils/errors'
|
||||
import { ValidationError } from '@commerce/utils/errors'
|
||||
import { normalizeCart } from '@framework/utils/normalize'
|
||||
import { Checkout, Maybe, UserError } from '@framework/schema'
|
||||
import { Checkout, UserError } from '@framework/schema'
|
||||
|
||||
const checkoutToCart = (checkoutResponse?: {
|
||||
const checkoutToCart = (checkoutResponse: {
|
||||
checkout: Checkout
|
||||
userErrors?: UserError[]
|
||||
}): Maybe<Cart> => {
|
||||
}): Cart => {
|
||||
const checkout = checkoutResponse?.checkout
|
||||
const userErrors = checkoutResponse?.userErrors
|
||||
|
||||
@ -16,12 +16,6 @@ const checkoutToCart = (checkoutResponse?: {
|
||||
})
|
||||
}
|
||||
|
||||
if (!checkout) {
|
||||
throw new CommerceError({
|
||||
message: 'Missing checkout details from response cart Response',
|
||||
})
|
||||
}
|
||||
|
||||
return normalizeCart(checkout)
|
||||
}
|
||||
|
||||
|
@ -5,22 +5,22 @@ import { FetchCartInput } from '@commerce/cart/use-cart'
|
||||
|
||||
const fetcher: HookFetcherFn<Cart | null, FetchCartInput> = async ({
|
||||
options,
|
||||
input: { cartId },
|
||||
input: { cartId: checkoutId },
|
||||
fetch,
|
||||
}) => {
|
||||
let checkout
|
||||
|
||||
if (cartId) {
|
||||
if (checkoutId) {
|
||||
const data = await fetch({
|
||||
...options,
|
||||
variables: {
|
||||
cartId,
|
||||
checkoutId,
|
||||
},
|
||||
})
|
||||
checkout = data?.node
|
||||
}
|
||||
|
||||
if (checkout?.completedAt || !cartId) {
|
||||
if (checkout?.completedAt || !checkoutId) {
|
||||
checkout = await checkoutCreate(fetch)
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
import { SHOPIFY_CHECKOUT_ID_COOKIE, STORE_DOMAIN } from './const'
|
||||
|
||||
import { handler as useCart } from '@framework/cart/use-cart'
|
||||
import { handler as useSearch } from '@framework/product/use-search'
|
||||
import { handler as useCustomer } from '@framework/customer/use-customer'
|
||||
import { handler as useCart } from './cart/use-cart'
|
||||
import { handler as useAddItem } from './cart/use-add-item'
|
||||
import { handler as useSearch } from './product/use-search'
|
||||
import { handler as useCustomer } from './customer/use-customer'
|
||||
import fetcher from './fetcher'
|
||||
|
||||
export const shopifyProvider = {
|
||||
@ -10,7 +11,7 @@ export const shopifyProvider = {
|
||||
cartCookie: SHOPIFY_CHECKOUT_ID_COOKIE,
|
||||
storeDomain: STORE_DOMAIN,
|
||||
fetcher,
|
||||
cart: { useCart },
|
||||
cart: { useCart, useAddItem },
|
||||
customer: { useCustomer },
|
||||
products: { useSearch },
|
||||
}
|
||||
|
@ -8,6 +8,7 @@ export type ShopifyCheckout = {
|
||||
}
|
||||
|
||||
export interface Cart extends Core.Cart {
|
||||
id: string
|
||||
lineItems: LineItem[]
|
||||
}
|
||||
|
||||
|
@ -107,7 +107,7 @@ function normalizeLineItem({
|
||||
variantId: String(variant?.id),
|
||||
productId: String(variant?.id),
|
||||
name: `${title} - ${variant?.title}`,
|
||||
quantity: quantity,
|
||||
quantity,
|
||||
variant: {
|
||||
id: String(variant?.id),
|
||||
sku: variant?.sku ?? '',
|
||||
|
Loading…
x
Reference in New Issue
Block a user