mirror of
https://github.com/vercel/commerce.git
synced 2025-06-29 18:01:21 +00:00
Abstract cart screen logic into its own hook
This commit is contained in:
parent
b0137736d1
commit
a726f51edd
32
lib/hooks/use-cart.ts
Normal file
32
lib/hooks/use-cart.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import useBigCommerceCart from '@bigcommerce/storefront-data-hooks/cart/use-cart'
|
||||||
|
import useBigCommercePrice from '@bigcommerce/storefront-data-hooks/use-price'
|
||||||
|
|
||||||
|
export const useCart = () => {
|
||||||
|
const { data, error, isEmpty } = useBigCommerceCart()
|
||||||
|
const isLoading = data === undefined
|
||||||
|
|
||||||
|
const { price: subtotal } = useBigCommercePrice(
|
||||||
|
data && {
|
||||||
|
amount: data.base_amount,
|
||||||
|
currencyCode: data.currency.code,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
const { price: total } = useBigCommercePrice(
|
||||||
|
data && {
|
||||||
|
amount: data.cart_amount,
|
||||||
|
currencyCode: data.currency.code,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const items = data?.line_items.physical_items ?? []
|
||||||
|
|
||||||
|
return {
|
||||||
|
items: data?.line_items.physical_items ?? [],
|
||||||
|
isLoading: data === undefined,
|
||||||
|
isError: error,
|
||||||
|
isEmpty,
|
||||||
|
subtotal,
|
||||||
|
total,
|
||||||
|
currency: data?.currency,
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +1,7 @@
|
|||||||
import type { GetStaticPropsContext } from 'next'
|
import type { GetStaticPropsContext } from 'next'
|
||||||
import { getConfig } from '@bigcommerce/storefront-data-hooks/api'
|
import { getConfig } from '@bigcommerce/storefront-data-hooks/api'
|
||||||
import getAllPages from '@bigcommerce/storefront-data-hooks/api/operations/get-all-pages'
|
import getAllPages from '@bigcommerce/storefront-data-hooks/api/operations/get-all-pages'
|
||||||
import useCart from '@bigcommerce/storefront-data-hooks/cart/use-cart'
|
import { useCart } from '@lib/hooks/use-cart'
|
||||||
import usePrice from '@bigcommerce/storefront-data-hooks/use-price'
|
|
||||||
import { Layout } from '@components/core'
|
import { Layout } from '@components/core'
|
||||||
import { Button } from '@components/ui'
|
import { Button } from '@components/ui'
|
||||||
import { Bag, Cross, Check } from '@components/icons'
|
import { Bag, Cross, Check } from '@components/icons'
|
||||||
@ -21,28 +20,20 @@ export async function getStaticProps({
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default function Cart() {
|
export default function Cart() {
|
||||||
const { data, error, isEmpty } = useCart()
|
const {
|
||||||
const isLoading = data === undefined
|
items,
|
||||||
|
isLoading,
|
||||||
const { price: subTotal } = usePrice(
|
isError,
|
||||||
data && {
|
isEmpty,
|
||||||
amount: data.base_amount,
|
subtotal,
|
||||||
currencyCode: data.currency.code,
|
total,
|
||||||
}
|
currency,
|
||||||
)
|
} = useCart()
|
||||||
const { price: total } = usePrice(
|
|
||||||
data && {
|
|
||||||
amount: data.cart_amount,
|
|
||||||
currencyCode: data.currency.code,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
const items = data?.line_items.physical_items ?? []
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="px-4 pt-2 sm:px-6 flex-1">
|
<div className="px-4 pt-2 sm:px-6 flex-1">
|
||||||
<Text variant="pageHeading">My Cart</Text>
|
<Text variant="pageHeading">My Cart</Text>
|
||||||
{error && <div className="mt-2">Failed to load</div>}
|
{isError && <div className="mt-2">Failed to load</div>}
|
||||||
{isLoading && <div>Loading...</div>}
|
{isLoading && <div>Loading...</div>}
|
||||||
{isEmpty ? (
|
{isEmpty ? (
|
||||||
<div className="flex-1 px-12 py-24 flex flex-col justify-center items-center ">
|
<div className="flex-1 px-12 py-24 flex flex-col justify-center items-center ">
|
||||||
@ -66,11 +57,22 @@ export default function Cart() {
|
|||||||
<CartItem
|
<CartItem
|
||||||
key={item.id}
|
key={item.id}
|
||||||
item={item}
|
item={item}
|
||||||
currencyCode={data?.currency.code!}
|
currencyCode={currency?.code!}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-8 text-gray-700">
|
||||||
|
<div>
|
||||||
|
Before you leave, take a look at these items. We picked them
|
||||||
|
just for you:
|
||||||
|
</div>
|
||||||
|
<div className="flex py-6 space-x-6">
|
||||||
|
{[1, 2, 3, 4, 5, 6].map((x) => (
|
||||||
|
<div className="border border-accents-3 w-full h-24 bg-accents-2 bg-opacity-50 transform cursor-pointer hover:scale-110 duration-75" />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="lg:col-span-4">
|
<div className="lg:col-span-4">
|
||||||
<div className="flex-shrink-0 pt-10 sm:pl-16">
|
<div className="flex-shrink-0 pt-10 sm:pl-16">
|
||||||
@ -78,7 +80,7 @@ export default function Cart() {
|
|||||||
<ul className="pt-5 pb-7">
|
<ul className="pt-5 pb-7">
|
||||||
<li className="flex justify-between">
|
<li className="flex justify-between">
|
||||||
<span>Subtotal</span>
|
<span>Subtotal</span>
|
||||||
<span>{subTotal}</span>
|
<span>{subtotal}</span>
|
||||||
</li>
|
</li>
|
||||||
<li className="flex justify-between mt-3">
|
<li className="flex justify-between mt-3">
|
||||||
<span>Taxes</span>
|
<span>Taxes</span>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user