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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import React from "react";
interface OrderItem {
id: string;
createdAt: string;
status: "delivered" | "on-hold" | "processing" | string;
total: string | number;
// orderTitle?: string;
}
interface OrderDetailsProps {
orderItem: OrderItem;
}
const OrderDetails: React.FC<OrderDetailsProps> = ({ orderItem }) => {
return (
<>
<div className="items-center justify-between py-4.5 px-7.5 hidden md:flex ">
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">Order</p>
</div>
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">Date</p>
</div>
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">Status</p>
</div>
{/* <div className="min-w-[113px]">
<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>
<div className="items-center justify-between border-t border-gray-3 py-5 px-7.5 hidden md:flex">
<div className="min-w-[111px]">
<p className="text-custom-sm text-red">#{orderItem.id.slice(-8)}</p>
</div>
<div className="min-w-[175px]">
<p className="text-custom-sm text-dark">{orderItem.createdAt}</p>
</div>
<div className="min-w-[128px]">
<p
className={`inline-block text-custom-sm py-0.5 px-2.5 rounded-[30px] capitalize ${
orderItem.status === "delivered"
? "text-green bg-green-light-6"
: orderItem.status === "on-hold"
? "text-red bg-red-light-6"
: orderItem.status === "processing"
? "text-yellow bg-yellow-light-4"
: "Unknown Status"
}`}
>
{orderItem.status}
</p>
</div>
{/* <div className="min-w-[213px]">
<p className="text-custom-sm text-dark">{orderItem.orderTitle}</p>
</div> */}
<div className="min-w-[113px]">
<p className="text-custom-sm text-dark">{orderItem.total}</p>
</div>
</div>
<div className="px-7.5 w-full">
<p className="font-bold">Shipping Address:</p>{" "}
<p>123 Main Street, Denver, CO 80110</p>
</div>
</>
);
};
export default OrderDetails;
|