mirror of
https://github.com/vercel/commerce.git
synced 2025-06-16 04:11:22 +00:00
109 lines
3.7 KiB
TypeScript
109 lines
3.7 KiB
TypeScript
import { useMemo } from 'react';
|
|
import type { SWRHook } from '@commerce/utils/types';
|
|
import useCart from '@commerce/cart/use-cart';
|
|
import type { UseCart } from '@commerce/cart/use-cart';
|
|
import type { GetCartHook } from '@commerce/types/cart';
|
|
import normalizeCart from '../utils/normalizations/normalize-cart';
|
|
import type { GraphQLFetcherResult } from '@commerce/api';
|
|
import type { IOrder } from '@spree/storefront-api-v2-sdk/types/interfaces/Order';
|
|
import type { IToken } from '@spree/storefront-api-v2-sdk/types/interfaces/Token';
|
|
import { FetcherError } from '@commerce/utils/errors';
|
|
import { setCartToken } from '../utils/tokens/cart-token';
|
|
import ensureIToken from '../utils/tokens/ensure-itoken';
|
|
import isLoggedIn from '../utils/tokens/is-logged-in';
|
|
import createEmptyCart from '../utils/create-empty-cart';
|
|
import { requireConfigValue } from '../isomorphic-config';
|
|
|
|
const imagesSize = requireConfigValue('imagesSize') as string;
|
|
const imagesQuality = requireConfigValue('imagesQuality') as number;
|
|
|
|
export default useCart as UseCart<typeof handler>;
|
|
|
|
// This handler avoids calling /api/cart.
|
|
// There doesn't seem to be a good reason to call it.
|
|
// So far, only @framework/bigcommerce uses it.
|
|
export const handler: SWRHook<GetCartHook> = {
|
|
// Provide fetchOptions for SWR cache key
|
|
fetchOptions: {
|
|
url: 'cart',
|
|
query: 'show'
|
|
},
|
|
async fetcher({ input, options, fetch }) {
|
|
console.info('useCart fetcher called. Configuration: ', 'input: ', input, 'options: ', options);
|
|
|
|
let spreeCartResponse: IOrder | null;
|
|
|
|
const token: IToken | undefined = ensureIToken();
|
|
|
|
if (!token) {
|
|
spreeCartResponse = null;
|
|
} else {
|
|
try {
|
|
const { data: spreeCartShowSuccessResponse } = await fetch<GraphQLFetcherResult<IOrder>>({
|
|
variables: {
|
|
methodPath: 'cart.show',
|
|
arguments: [
|
|
token,
|
|
{
|
|
include: [
|
|
'line_items',
|
|
'line_items.variant',
|
|
'line_items.variant.product',
|
|
'line_items.variant.product.images',
|
|
'line_items.variant.images',
|
|
'line_items.variant.option_values',
|
|
'line_items.variant.product.option_types'
|
|
].join(','),
|
|
image_transformation: {
|
|
quality: imagesQuality,
|
|
size: imagesSize
|
|
}
|
|
}
|
|
]
|
|
}
|
|
});
|
|
|
|
spreeCartResponse = spreeCartShowSuccessResponse;
|
|
} catch (fetchCartError) {
|
|
if (!(fetchCartError instanceof FetcherError) || fetchCartError.status !== 404) {
|
|
throw fetchCartError;
|
|
}
|
|
|
|
spreeCartResponse = null;
|
|
}
|
|
}
|
|
|
|
if (!spreeCartResponse || spreeCartResponse?.data.attributes.completed_at) {
|
|
const { data: spreeCartCreateSuccessResponse } = await createEmptyCart(fetch);
|
|
|
|
spreeCartResponse = spreeCartCreateSuccessResponse;
|
|
|
|
if (!isLoggedIn()) {
|
|
setCartToken(spreeCartResponse.data.attributes.token);
|
|
}
|
|
}
|
|
|
|
return normalizeCart(spreeCartResponse, spreeCartResponse.data);
|
|
},
|
|
useHook: ({ useData }) => {
|
|
const useWrappedHook: ReturnType<SWRHook<GetCartHook>['useHook']> = (input) => {
|
|
const response = useData({
|
|
swrOptions: { revalidateOnFocus: false, ...input?.swrOptions }
|
|
});
|
|
|
|
return useMemo<typeof response & { isEmpty: boolean }>(() => {
|
|
return Object.create(response, {
|
|
isEmpty: {
|
|
get() {
|
|
return (response.data?.lineItems.length ?? 0) === 0;
|
|
},
|
|
enumerable: true
|
|
}
|
|
});
|
|
}, [response]);
|
|
};
|
|
|
|
return useWrappedHook;
|
|
}
|
|
};
|