Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | "use client";
import React, { useEffect, useState } from "react";
import SingleOrder from "./SingleOrder";
import LoadingSpinner from "@/components/ui/LoadingSpinner";
import ErrorMessage from "@/components/ui/ErrorMessage";
import { clientLogger } from "@/lib/logging/clientLogger";
interface APIOrder {
id: number;
status: string;
total: number;
createdAt: string;
items: Array<{
id: number;
product: { title: string };
quantity: number;
price: number;
}>;
}
interface OrderItem {
id: string;
orderId: string;
createdAt: string;
status: "delivered" | "on-hold" | "processing" | string;
title: string;
total: string | number;
}
const Orders = () => {
const [orders, setOrders] = useState<OrderItem[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
useEffect(() => {
const fetchOrders = async () => {
try {
setLoading(true);
setError(null);
const response = await fetch("/api/orders");
if (!response.ok) {
throw new Error("Failed to fetch orders");
}
const result = await response.json();
// Extract data from API response wrapper
const data: APIOrder[] = result?.data ?? result;
const transformedOrders = (Array.isArray(data) ? data : []).map((order) => ({
id: order.id.toString(),
orderId: order.id.toString(),
createdAt: new Date(order.createdAt).toLocaleDateString(),
status: order.status.toLowerCase() as "delivered" | "on-hold" | "processing" | string,
title: order.items.map((item) => item.product.title).join(", "),
total: order.total}));
setOrders(transformedOrders);
} catch (err) {
setError(err instanceof Error ? err.message : "Failed to fetch orders");
clientLogger.error("Error fetching orders", err instanceof Error ? err : new Error("Unknown error"));
} finally {
setLoading(false);
}
};
fetchOrders();
}, []);
if (loading) {
return <LoadingSpinner message="Loading your orders..." />;
}
if (error) {
return (
<ErrorMessage
title="Error Loading Orders"
message={error}
onRetry={() => window.location.reload()}
/>
);
}
return (
<>
<div className="w-full overflow-x-auto">
<div className="min-w-[770px]">
{/* <!-- order item --> */}
{orders.length > 0 && (
<div className="items-center justify-between py-4.5 px-7.5 hidden md:flex ">
<div className="min-w-[111px]">
<p className="text-custom-sm text-dark">Order</p>
</div>
<div className="min-w-[175px]">
<p className="text-custom-sm text-dark">Date</p>
</div>
<div className="min-w-[128px]">
<p className="text-custom-sm text-dark">Status</p>
</div>
<div className="min-w-[213px]">
<p className="text-custom-sm text-dark">Title</p>
</div>
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">Total</p>
</div>
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">Action</p>
</div>
</div>
)}
{orders.length > 0 ? (
orders.map((orderItem, key) => (
<SingleOrder key={key} orderItem={orderItem} smallView={false} />
))
) : (
<p className="py-9.5 px-4 sm:px-7.5 xl:px-10">
You don't have any orders!
</p>
)}
</div>
{orders.length > 0 &&
orders.map((orderItem, key) => (
<SingleOrder key={key} orderItem={orderItem} smallView={true} />
))}
</div>
</>
);
};
export default Orders;
|