commerce/app/profile/layout.tsx
2025-01-03 03:05:01 +01:00

67 lines
2.3 KiB
TypeScript

'use client';
import { Avatar } from '@nextui-org/react';
import LogoutButton from 'components/button/logout';
import { Customer } from 'lib/woocomerce/models/customer';
import { Shipping } from 'lib/woocomerce/models/shipping';
import Link from 'next/link';
import { useEffect, useState } from 'react';
export default function ProfileLayout({ children }: { children: React.ReactNode }) {
const [customer, setCustomer] = useState<Customer | undefined>(undefined);
const [shippingAddress, setShippingAddress] = useState<Shipping | undefined>(undefined);
useEffect(() => {
const fetchCustomer = async () => {
const data = (await (
await fetch('/api/customer', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
})
).json()) as Customer;
setCustomer(data);
};
fetchCustomer();
}, []);
return (
<section className="mx-auto mt-4 flex max-w-screen-2xl flex-row gap-4 px-4 pb-4">
<div className="flex flex-col rounded-lg border border-neutral-200 bg-white p-4 dark:border-neutral-800 dark:bg-black md:w-1/3">
<h2 className="mb-2 text-2xl font-bold">Profile</h2>
{customer && (
<div>
<Avatar src={customer.avatar_url} alt="avatar" className="h-11 w-11" />
<div>
<span className="text-lg font-bold">{customer.first_name}</span>
<span className="text-lg font-bold">{customer.last_name}</span>
</div>
<div className="flex-start mt-3 flex">
<Link href={`/profile/area`}>
<button type="button" className="w-full rounded-md py-3">
Personal area
</button>
</Link>
</div>
<div className="flex-start mt-3 flex">
<Link href={`/profile/orders`}>
<button type="button" className="w-full rounded-md py-3">
Orders
</button>
</Link>
</div>
<div className="mt-3">
<LogoutButton />
</div>
</div>
)}
</div>
<div className="flex rounded-lg border border-neutral-200 bg-white p-4 dark:border-neutral-800 dark:bg-black md:w-2/3">
{children}
</div>
</section>
);
}