mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
103 lines
3.2 KiB
TypeScript
103 lines
3.2 KiB
TypeScript
import Link from 'next/link'
|
|
import { FC } from 'react'
|
|
import CartItem from '@components/cart/CartItem'
|
|
import { Button, Text } from '@components/ui'
|
|
import { initialState as initialUIState, useUI } from '@components/ui/context'
|
|
import useCart from '@framework/cart/use-cart'
|
|
import usePrice from '@framework/product/use-price'
|
|
import ShippingWidget from '../ShippingWidget'
|
|
import PaymentWidget from '../PaymentWidget'
|
|
import SidebarLayout from '@components/common/SidebarLayout'
|
|
import s from './CheckoutSidebarView.module.css'
|
|
|
|
const CheckoutSidebarView: FC = () => {
|
|
const { paymentMethodDetails, setPaymentMethodDetails, setSidebarView } = useUI()
|
|
const { data } = useCart()
|
|
|
|
const { price: subTotal } = usePrice(
|
|
data && {
|
|
amount: Number(data.subtotalPrice),
|
|
currencyCode: data.currency.code,
|
|
}
|
|
)
|
|
const { price: total } = usePrice(
|
|
data && {
|
|
amount: Number(data.totalPrice),
|
|
currencyCode: data.currency.code,
|
|
}
|
|
)
|
|
const { price: taxes } = usePrice(
|
|
data && {
|
|
amount: Number(data.taxes),
|
|
currencyCode: data.currency.code,
|
|
}
|
|
)
|
|
|
|
return (
|
|
<SidebarLayout
|
|
className={s.root}
|
|
handleBack={() => setSidebarView('CART_VIEW')}
|
|
>
|
|
<div className="px-4 sm:px-6 flex-1">
|
|
<Link href="/cart">
|
|
<Text variant="sectionHeading">Checkout</Text>
|
|
</Link>
|
|
|
|
<PaymentWidget
|
|
onClick={() => {
|
|
if (paymentMethodDetails.paymentMethod) {
|
|
setPaymentMethodDetails(initialUIState.paymentMethodDetails)
|
|
} else {
|
|
setSidebarView('PAYMENT_VIEW')
|
|
}
|
|
}}
|
|
/>
|
|
<ShippingWidget onClick={() => setSidebarView('SHIPPING_VIEW')} />
|
|
|
|
<ul className={s.lineItemsList}>
|
|
{data!.lineItems?.map((item: any) => (
|
|
<CartItem
|
|
key={item.id}
|
|
item={item}
|
|
currencyCode={data!.currency.code}
|
|
variant="display"
|
|
/>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
|
|
<div className="flex-shrink-0 px-6 py-6 sm:px-6 sticky z-20 bottom-0 w-full right-0 left-0 bg-accent-0 border-t text-sm">
|
|
<ul className="pb-2">
|
|
<li className="flex justify-between py-1">
|
|
<span>Subtotal</span>
|
|
<span>{subTotal}</span>
|
|
</li>
|
|
<li className="flex justify-between py-1">
|
|
<span>Taxes</span>
|
|
<span>{data.taxes ? taxes : 'Calculated at checkout'}</span>
|
|
</li>
|
|
<li className="flex justify-between py-1">
|
|
<span>Shipping</span>
|
|
<span className="font-bold tracking-wide">FREE</span>
|
|
</li>
|
|
</ul>
|
|
<div className="flex justify-between border-t border-accent-2 py-3 font-bold mb-2">
|
|
<span>Total</span>
|
|
<span>{total}</span>
|
|
</div>
|
|
<div>
|
|
{/* Once data is correcly filled */}
|
|
{/* <Button Component="a" width="100%">
|
|
Confirm Purchase
|
|
</Button> */}
|
|
<Button Component="a" width="100%" variant="ghost" disabled>
|
|
Continue
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</SidebarLayout>
|
|
)
|
|
}
|
|
|
|
export default CheckoutSidebarView
|