250 lines
9.9 KiB
JavaScript
250 lines
9.9 KiB
JavaScript
"use client";
|
|
|
|
import Image from "next/image";
|
|
import React, { useContext, useEffect, useState } from "react";
|
|
import Footer from "@comp/Footer/page";
|
|
import Navbar from "@comp/Navbar/page";
|
|
import "../BlogComponents/styleBlog.css";
|
|
import TimerDown from "@comp/TimerDown/TimerDown";
|
|
import TimerDownBlog from "@comp/TimerDown/TimerDown";
|
|
import PersianNumber from "plugins/PersianNumber";
|
|
import SliderProductsOffer from "../BlogComponents/SliderProductsOffer/page";
|
|
import AppContext from "@ctx/AppContext";
|
|
import InfiniteScroll from "react-infinite-scroll-component";
|
|
import BottomSheetComment from "plugins/bottomSheet/BottomSheetComment";
|
|
import { toast } from "react-toastify";
|
|
import Chapar from "plugins/Chapar";
|
|
import ArticleContent from "@comp/ArticleContent";
|
|
|
|
const BlogData = ({ params, data }) => {
|
|
const CTX = useContext(AppContext);
|
|
const [review, setReview] = useState([]);
|
|
const [content, setContent] = useState("");
|
|
const [rate, setRate] = useState(4);
|
|
const [page, setPage] = useState(0);
|
|
const [hasMore, setHasMore] = useState(true);
|
|
const specialOfferData = CTX.state.specialOfferData;
|
|
|
|
const fetchReview = async (id, currentPage, afterCreatReview) => {
|
|
try {
|
|
const res = await fetch(
|
|
`${process.env.NEXT_PUBLIC_API_URL}/product/${id}/comment?page=${currentPage}&count=10`
|
|
);
|
|
|
|
if (!res.ok) {
|
|
throw new Error(`HTTP error! status: ${res.status}`);
|
|
}
|
|
|
|
const data = await res.json();
|
|
|
|
// Assuming the API returns an array of reviews and a total count or indication if more data is available
|
|
if (data.length < 10) {
|
|
setHasMore(false);
|
|
}
|
|
|
|
if (afterCreatReview) {
|
|
setReview((prevReview) => [...prevReview, ...data]);
|
|
} else {
|
|
setReview(data);
|
|
}
|
|
} catch (error) {
|
|
setHasMore(false); // Stop further fetches on error
|
|
}
|
|
};
|
|
|
|
const fetchMoreData = () => {
|
|
const nextPage = page + 1;
|
|
fetchReview(params.id[0], nextPage);
|
|
setPage(nextPage);
|
|
};
|
|
|
|
const createProductReview = async () => {
|
|
const body = {
|
|
title: ` نظر کاربر برای {" "}${data.product?.persianName}`,
|
|
content,
|
|
rate: 1,
|
|
blogId: params.id[0],
|
|
rate,
|
|
};
|
|
try {
|
|
const data = await Chapar.post(
|
|
`${process.env.NEXT_PUBLIC_API_URL}/comment`,
|
|
body
|
|
);
|
|
|
|
setContent("");
|
|
|
|
fetchReview(params.id[0], 0);
|
|
} catch ({ error, status }) {
|
|
toast.error(`${error?.response?.data?.message}`, {
|
|
position: "bottom-right",
|
|
closeOnClick: true,
|
|
});
|
|
}
|
|
};
|
|
|
|
const handleCreateReview = () => {
|
|
const token = localStorage.getItem("token");
|
|
|
|
if (token) {
|
|
createProductReview();
|
|
} else {
|
|
router.push("/login");
|
|
}
|
|
};
|
|
|
|
const handleStarClick = (value) => {
|
|
setRate(value);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (specialOfferData.length <= 0) {
|
|
CTX.fetchSpecialOffer();
|
|
}
|
|
fetchReview(params.id[0], 0);
|
|
}, []);
|
|
|
|
return (
|
|
<div>
|
|
<Navbar />
|
|
|
|
<div className="mb-10 xs:px-3 md:px-5 md:container md:mx-auto">
|
|
<div className="grid xs:grid-cols-1 lg:grid-cols-6 gap-7 rtl">
|
|
<div className="mt-10 lg:col-span-4 rtl">
|
|
<div className="mt-10 ">
|
|
<Image
|
|
src={`${process.env.NEXT_PUBLIC_STORAGE_URL}/Images/Med/${data?.mainImage}`}
|
|
width={500}
|
|
height={500}
|
|
className="mb-3 xs:w-full h-[400px] rounded-3xl object-cover"
|
|
/>
|
|
<h1 className=" font-bold text-right xs:text-[20px] lg:text-[40px]">
|
|
{data.title}
|
|
</h1>
|
|
<div></div>
|
|
|
|
{data?.content ? (
|
|
<ArticleContent htmlContent={data?.content} type={"pdp"} />
|
|
) : (
|
|
<p>Loading...</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-10 lg:col-span-2 rtl ">
|
|
<SliderProductsOffer data={specialOfferData} />
|
|
</div>
|
|
</div>
|
|
|
|
<div id="section3 ">
|
|
<div className="flex rtl">
|
|
<h3 className="mb-2 text-sm text-gray-400 mt-7">دیدگاه مخاطبان </h3>
|
|
</div>
|
|
<div className="p-5 border rounded-lg">
|
|
<InfiniteScroll
|
|
dataLength={review.length}
|
|
next={fetchMoreData}
|
|
hasMore={hasMore}
|
|
>
|
|
{review.map((e) => (
|
|
<>
|
|
<div key={e.id} className="mb-10">
|
|
<div className="relative flex">
|
|
<div className="xs:w-[40px] lg:w-[60px] xs:h-[40px] lg:h-[60px] relative bg-white rounded-2xl text-center">
|
|
{/* SVG Icon */}
|
|
<svg
|
|
width="40"
|
|
height="40"
|
|
viewBox="0 0 168 183"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className="mx-auto opacity-30"
|
|
>
|
|
{/* SVG Path */}
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M83.9994 0.666992C130.024 0.666992 167.333 37.9753 167.333 84.0003C167.361 103.233 160.71 121.878 148.516 136.75L148.683 136.934L147.583 137.867C139.767 147.11 130.028 154.535 119.046 159.624C108.064 164.714 96.1035 167.345 83.9994 167.334C59.4161 167.334 37.3328 156.692 22.0828 139.775L20.4161 137.859L19.3161 136.942L19.4828 136.742C7.2903 121.872 0.63933 103.23 0.666096 84.0003C0.666096 37.9753 37.9744 0.666992 83.9994 0.666992ZM83.9994 125.667C68.4994 125.667 54.4911 130.6 44.0578 137.384C55.5793 146.025 69.5975 150.687 83.9994 150.667C98.4014 150.687 112.42 146.025 123.941 137.384C112.019 129.745 98.1588 125.68 83.9994 125.667ZM83.9994 17.3337C71.4538 17.3333 59.1627 20.8729 48.5388 27.5457C37.9149 34.2185 29.3895 43.7536 23.9424 55.0551C18.4954 66.3565 16.3478 78.9656 17.7465 91.433C19.1452 103.9 24.0335 115.72 31.8494 125.534C45.3578 115.842 63.7911 109 83.9994 109C104.208 109 122.641 115.842 136.149 125.534C143.965 115.72 148.854 103.9 150.252 91.433C151.651 78.9656 149.503 66.3565 144.056 55.0551C138.609 43.7536 130.084 34.2185 119.46 27.5457C108.836 20.8729 96.5451 17.3333 83.9994 17.3337ZM83.9994 34.0003C92.84 34.0003 101.318 37.5122 107.57 43.7634C113.821 50.0146 117.333 58.4931 117.333 67.3337C117.333 76.1742 113.821 84.6527 107.57 90.9039C101.318 97.1551 92.84 100.667 83.9994 100.667C75.1589 100.667 66.6804 97.1551 60.4292 90.9039C54.178 84.6527 50.6661 76.1742 50.6661 67.3337C50.6661 58.4931 54.178 50.0146 60.4292 43.7634C66.6804 37.5122 75.1589 34.0003 83.9994 34.0003ZM83.9994 50.667C79.5791 50.667 75.3399 52.4229 72.2143 55.5485C69.0887 58.6742 67.3328 62.9134 67.3328 67.3337C67.3328 71.7539 69.0887 75.9932 72.2143 79.1188C75.3399 82.2444 79.5791 84.0003 83.9994 84.0003C88.4197 84.0003 92.6589 82.2444 95.7845 79.1188C98.9101 75.9932 100.666 71.7539 100.666 67.3337C100.666 62.9134 98.9101 58.6742 95.7845 55.5485C92.6589 52.4229 88.4197 50.667 83.9994 50.667Z"
|
|
fill="black"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
|
|
<div className="w-full mt-1 mr-2">
|
|
<h3 className="font-bold">{e?.userFullName}</h3>
|
|
<p className="mt-1 mb-0 text-sm text-gray-400">
|
|
<PersianNumber
|
|
number={moment(e?.createdAt).format(
|
|
"jYYYY/jMM/jDD"
|
|
)}
|
|
style={"text-sm"}
|
|
/>
|
|
</p>
|
|
|
|
<p className="mb-0 text-sm text-gray-600">
|
|
{e?.content}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{e?.children && e.children?.length > 0 && (
|
|
<div className="mt-5 lg:mr-10">
|
|
<div className="relative flex">
|
|
<div className="xs:w-[50px] lg:w-[60px] xs:h-[50px] lg:h-[60px] relative bg-primary-300 rounded-2xl text-center">
|
|
<div className="w-[35px] mx-auto mt-4 ">
|
|
<Image src={logo} alt="Logo" />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-full mt-1 mr-2">
|
|
<h3 className="font-bold xs:text-sm lg:text-base">
|
|
پشتیبانی فروشگاه وسمه
|
|
</h3>
|
|
<p className="mb-0 text-sm text-gray-400">
|
|
<PersianNumber
|
|
number={moment(e?.children[0]?.createdAt).format(
|
|
"jYYYY/jMM/jDD"
|
|
)}
|
|
style={"!text-[12px]"}
|
|
/>
|
|
</p>
|
|
|
|
<p className="mb-0 text-sm text-gray-600">
|
|
{e?.children[0]?.content}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
))}
|
|
</InfiniteScroll>
|
|
|
|
<div className="flex justify-center py-5">
|
|
<div
|
|
className="p-4 text-sm bg-primary-500 text-white rounded-full shadow w-fit"
|
|
onClick={() => CTX.setBottomSheetCommentOpen(true)}
|
|
>
|
|
افزودن دیدگاه +{" "}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<BottomSheetComment
|
|
handleCreateReview={handleCreateReview}
|
|
name={data?.title}
|
|
content={content}
|
|
setContent={setContent}
|
|
handleStarClick={handleStarClick}
|
|
rate={rate}
|
|
/>
|
|
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BlogData;
|