commerce/app/checkout/page.tsx
2025-04-08 19:47:55 +02:00

182 lines
6.7 KiB
TypeScript

'use client';
import { Accordion, AccordionItem, Checkbox, Radio, RadioGroup } from '@nextui-org/react';
import { useCart } from 'components/cart/cart-context';
import CartItemView from 'components/cart/cart-item';
import { useCheckout } from 'components/checkout/checkout-provider';
import ShippingForm from 'components/checkout/form';
import Price from 'components/price';
import { Billing } from 'lib/woocomerce/models/billing';
import { PaymentGateways } from 'lib/woocomerce/models/payment';
import { Shipping } from 'lib/woocomerce/models/shipping';
import { useTranslations } from 'next-intl';
import { useRouter } from 'next/navigation';
import { useEffect, useState } from 'react';
import { z } from 'zod';
const shippingSchema = z.object({
first_name: z.string().min(3),
last_name: z.string().min(3),
address_1: z.string().min(3),
address_2: z.string().optional(),
city: z.string().min(3),
postcode: z.string().min(3),
country: z.string().min(2).max(2),
company: z.string().optional()
});
export default function CheckoutPage() {
const t = useTranslations('Checkout');
const { cart } = useCart();
const router = useRouter();
const { checkout, setShipping, setBilling, setPayment } = useCheckout();
const [error, setError] = useState<Shipping | Billing | undefined>(undefined);
const [sameBilling, setSameBilling] = useState(true);
const [paymentGateways, setPaymentGateways] = useState<PaymentGateways[]>([]);
useEffect(() => {
const fetchPaymentGateways = async () => {
const paymentGateways = await (await fetch('/api/payments')).json();
setPaymentGateways(paymentGateways);
};
fetchPaymentGateways();
}, []);
const onSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
console.log('submit');
e.preventDefault();
try {
if (sameBilling) {
setBilling({ ...checkout?.billing, ...checkout?.shipping } as Billing);
}
if (!checkout) {
return;
}
shippingSchema.parse(checkout.shipping);
router.push('/checkout/review');
} catch (error) {
console.log(error);
if (error instanceof z.ZodError) {
const errorObj: Record<string, string> = {};
error.errors.forEach((err) => {
const key = err.path[0] as string;
errorObj[key] = err.message;
});
console.log(errorObj);
setError(errorObj as Shipping);
}
}
};
return (
<section className="mx-auto grid h-full gap-4 px-4 pb-4">
<p>{t('title')}</p>
<form
onSubmit={onSubmit}
className="rounded-lg border border-neutral-200 bg-white p-4 dark:border-neutral-800 dark:bg-black"
>
<div className="flex flex-col gap-4 md:flex-row">
<div className="order-1 md:order-2 md:w-1/3">
{cart && (
<div className="ms-4 flex flex-col justify-between overflow-hidden">
<ul className="flex-grow overflow-auto">
{cart.items?.length &&
cart.items
.sort((a, b) => a.name.localeCompare(b.name))
.map((item, i) => {
return (
<li
key={i}
className="flex w-full flex-col border-b border-neutral-300 dark:border-neutral-700"
>
<CartItemView item={item} />
</li>
);
})}
</ul>
<div className="mb-3 flex items-center justify-between pb-4 pt-4 dark:border-neutral-700">
<p>{t('total')}</p>
<Price
className="text-right text-base text-black dark:text-white"
amount={cart?.totals?.total_price}
needSplit
currencyCode={cart?.totals.currency_code}
/>
</div>
</div>
)}
</div>
<div className="order-2 md:order-1 md:w-2/3">
<Accordion
defaultExpandedKeys={['1']}
disabledKeys={sameBilling ? ['2'] : []}
selectionMode="multiple"
className="text-white sm:w-full md:w-2/3"
>
<AccordionItem key="1" title={t('shipping')} className="text-white">
<ShippingForm
onChangeInput={(e) => {
const updatedShipping = {
...checkout?.shipping,
[e.target.name]: e.target.value
} as Shipping;
setShipping(updatedShipping as Shipping);
setError(undefined);
}}
error={error}
/>
<Checkbox defaultSelected onValueChange={(v) => setSameBilling(v)} className="mt-2">
{t('billingCheckbox')}
</Checkbox>
</AccordionItem>
<AccordionItem key="2" title={t('billing')} className="text-white">
<ShippingForm
onChangeInput={(e) => {
const updatedBilling = {
...checkout?.shipping,
[e.target.name]: e.target.value
} as Billing;
setBilling(updatedBilling);
setError(undefined);
}}
/>
</AccordionItem>
<AccordionItem key="3" title={t('payment')} className="text-white">
<div className="flex flex-col justify-between overflow-hidden">
<div className="flex flex-col gap-4">
<RadioGroup
defaultValue={paymentGateways?.[0]?.id}
className="flex flex-col gap-4"
>
{paymentGateways.map((gateway: any) => (
<Radio
key={gateway.id}
value={gateway.id}
onChange={(e) => {
setPayment(e.target.value, gateway.title);
}}
>
{gateway.title}
</Radio>
))}
</RadioGroup>
</div>
</div>
</AccordionItem>
</Accordion>
</div>
</div>
<div className="flex justify-center gap-4">
<button className="rounded-md bg-indigo-500 p-2 text-white" onClick={() => router.back()}>
Back
</button>
<button type="submit" className="rounded-md bg-indigo-500 p-2 text-white">
Next
</button>
</div>
</form>
</section>
);
}