web/components/Cards/CardSurprise/page.jsx

116 lines
4.0 KiB
React
Raw Normal View History

2024-02-22 20:45:50 +03:30
"use client";
import { useContext } from "react";
import logo from "../../../public/images/logo.png";
import AppContext from "@ctx/AppContext";
2024-01-10 11:04:28 +03:30
import Image from "next/image";
2024-02-22 20:45:50 +03:30
import Link from "next/link";
2024-01-10 11:04:28 +03:30
import PersianNumber from "plugins/PersianNumber";
2024-02-16 19:53:36 +03:30
import AddToCart from "../Components/AddToCart/page";
2024-01-10 11:04:28 +03:30
2024-03-03 22:43:04 +03:30
const CardSurprise = ({ data, priority }) => {
2024-02-22 20:45:50 +03:30
const CTX = useContext(AppContext);
const cart = CTX.state.cart;
2024-01-10 11:04:28 +03:30
return (
2024-02-22 20:45:50 +03:30
<>
{" "}
2024-01-10 11:04:28 +03:30
<>
2024-02-27 21:23:20 +03:30
<Link href={`/products/${data.id}/${data.persianName}`}>
2024-02-22 20:45:50 +03:30
<div
className={` tr03 py-2 overflow-hidden xs:h-[200px] lg:h-[230px] border border-gray-100 ${
1 == 1 ? "bg-white rounded-xl" : " opacity-70"
}`}
// key={index}
// onClick={() => handleRoutineShiftPlanWithDay(index)}
>
{data.hasDiscount && (
<div className="absolute m-3 ">
<div className="w-fit rounded-lg bg-red-600 overflow-hidden px-1 ">
<p className="mb-0 text-[10px] text-white pt-[3px] ">
<PersianNumber
number={data.discountPercent}
style={"!text-[10px]"}
/>
<small className="text-[10px] ml-1">%</small>
</p>
</div>
</div>
)}
<div className="w-full h-fit flex justify-center ">
{!!data.mainImage ? (
<Image
src={`${process.env.NEXT_PUBLIC_STORAGE_URL}/${data.mainImage}`}
width={100}
height={100}
className="xs:!w-[110px] lg:!w-[130px] mx-auto !object-cover"
2024-02-29 11:59:52 +03:30
alt={`${data.persianName} - ${data.englishName}`}
2024-03-03 22:43:04 +03:30
priority={!!priority}
2024-02-22 20:45:50 +03:30
/>
) : (
<div className="xs:!w-[85px] lg:!w-[85px] h-[90px] mt-10 ">
<Image
src={logo}
className="xs:!w-[70px] lg:!w-[70px] mx-auto !object-cover opacity-25 mt-5"
2024-02-29 11:59:52 +03:30
alt="وسمه"
2024-02-22 20:45:50 +03:30
/>
</div>
)}
</div>
<div className="p-3 text-right">
<p className="mb-0 text-[14px] max-h-[44px] overflow-hidden ">
{data.persianName}{" "}
2024-01-10 11:04:28 +03:30
</p>
2024-02-22 20:45:50 +03:30
{data.stock <= 3 && data.stock !== 0 && (
<p className="mb-0 text-[11px] text-red-600 font-medium">
{data.stock} عدد موجود انبار
</p>
)}
2024-01-10 11:04:28 +03:30
</div>
</div>
2024-02-22 20:45:50 +03:30
</Link>
2024-01-10 11:04:28 +03:30
</>
2024-02-22 20:45:50 +03:30
<div className="bg-gray-50 rounded-lg flex ltr p-1 mt-2 border border-gray-100">
<div className="flex w-full">
<AddToCart data={data} theme={1} />
</div>
2024-01-10 11:04:28 +03:30
2024-02-22 20:45:50 +03:30
<div className="w-full text-right rounded-full pr-2">
{data?.hasDiscount ? (
2024-01-10 11:04:28 +03:30
<>
<p className="mb-0 font-bold text-sm absolute right-3 opacity-30 mt-[-5px] text-red-600">
<del>
2024-02-22 20:45:50 +03:30
<PersianNumber
number={(data?.cost / 10).toLocaleString()}
style="!text-[11px]"
/>
2024-01-10 11:04:28 +03:30
</del>
</p>
<div className="flex rtl mt-[8px]">
{" "}
<p className="mb-0 font-bold">
2024-02-22 20:45:50 +03:30
<PersianNumber
number={(data?.costWithDiscount / 10).toLocaleString()}
/>
2024-01-10 11:04:28 +03:30
</p>
<small className="mr-1 mt-[3px]">تومان</small>
</div>
</>
) : (
<div className="flex rtl mt-[3px]">
{" "}
<p className="mb-0 font-bold text-lg">
2024-02-22 20:45:50 +03:30
<PersianNumber number={(data?.cost / 10).toLocaleString()} />
2024-01-10 11:04:28 +03:30
</p>
<small className="mr-1 mt-[6px]">تومان</small>
</div>
)}
</div>
</div>
2024-02-22 20:45:50 +03:30
</>
2024-01-10 11:04:28 +03:30
);
};
export default CardSurprise;