You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

425 lines
15 KiB

import React, { Component } from "react";
import { toast } from "react-toastify";
import proxy from "~/Redux/proxy";
import { Link, useHistory } from "react-router-dom";
import { connect } from "react-redux";
import { book } from "~/Redux/actions";
import { userProduct } from "~/Redux/actions";
import Footer from "../Home/Footer/index";
import Navbar from "../Home/Navbar/index";
import Comment from "./Comment/index";
import Breadcrumbs from "./BreadCrumb/index";
import Gallery from "./Gallery/index";
import Info from "./Info/index";
import AddToCart from "./AddToCart/index";
import HomeScroll from "../Home/HomeScroll/index";
import HomeSlider from "../Home/HomeSlider/index";
import Loader from "~/components/Loader/index";
import MaterialModal from "./MaterialModal/index";
import product_shipping from "~/assets/icons/product-shipping.png";
import product_cash_back from "~/assets/icons/product-cash-back.png";
import product_support from "~/assets/icons/product-support.png";
import send_comment from "~/assets/icons/send-comment.png";
import "./index.scss";
const maxDesktopSize = 1250;
const maxMobileSize = 550;
const grades = [
window.t("پیش دبستان"),
window.t("اول"),
window.t("دوم"),
window.t("سوم"),
window.t("چهارم"),
window.t("پنجم"),
window.t("ششم"),
window.t("هفتم"),
window.t("هشتم"),
window.t("نهم"),
window.t("دهم"),
window.t("یازدهم"),
window.t("دوازدهم"),
];
const fontSize = {
desktop: {
h1: window.innerWidth > maxDesktopSize ? 20 : window.innerWidth / 70,
},
mobile: {
h1: window.innerWidth > maxMobileSize ? 20 : window.innerWidth / 18,
h2: window.innerWidth > maxMobileSize ? 14 : window.innerWidth / 24,
h3: window.innerWidth > maxMobileSize ? 16 : window.innerWidth / 26,
a: window.innerWidth > maxMobileSize ? 16 : window.innerWidth / 26,
p: window.innerWidth > maxMobileSize ? 13 : window.innerWidth / 30,
li: window.innerWidth > maxMobileSize ? 14 : window.innerWidth / 29,
},
};
function Addbutton({ page, info, pushToCart, userId }) {
let history = useHistory();
function Navigate({ path }) {
history.push(path);
}
let productId = localStorage.getItem("pushToCart");
if (productId) {
toast.info(window.t("جهت ادامه فرآیند خرید وارد حساب خود شوید"));
localStorage.removeItem("pushToCart");
pushToCart({
productId,
userId,
count: 1,
});
setTimeout(() => history.push("/cart"), 2000);
}
return (
<button
onClick={() => {
if (proxy.status())
pushToCart({
productId:
page === "digital" ? info.product[0].id : info.product[0].id,
userId,
count: 1,
});
else {
toast.info(window.t("جهت ادامه فرآیند خرید وارد حساب خود شوید"));
localStorage.setItem("afterLogin", window.location.pathname);
localStorage.setItem(
"pushToCart",
page === "digital" ? info.product[0].id : info.product[0].id
);
Navigate({ path: "/auth" });
}
}}
className="mobile-product__header--sampleButton"
style={{ fontSize: fontSize.mobile.a }}
>
{window.t("افزودن به سبد خرید")}{" "}
</button>
);
}
class Product extends Component {
state = {
openComment: false,
};
handleOpenComment = () => [
this.setState({
openComment: !this.state.openComment,
}),
];
componentDidMount() {
window.scrollTo(0, 0);
this.props.getInfo({
id: window.location.pathname.slice(
window.location.pathname.lastIndexOf("/") + 1,
window.location.pathname.length
),
});
this.props.getList();
}
render() {
const { supportItems, info, page } = this.props;
return (
<>
{window.innerWidth > 1000 ? (
info ? (
<>
<div className="product d-flex flex-column">
<Navbar />
<Breadcrumbs
page={page}
name={
page === "digital"
? info.product[0].name
: info.product[0].name
}
/>
<header className="product__header d-flex mt-4">
<Gallery gallery={info.files} />
<Info
subTitle={`پایه ${grades[info.gradeId]}`}
title={`${info.name} ${grades[info.gradeId]}`}
description={
info.description || window.t("توضیحات محصول خالیست")
}
/>
<AddToCart
info={info}
sampleFileId={info.sampleFileId}
supportItems={supportItems}
price={
page === "digital"
? info.product[0].price
: info.product[0].price
}
// off={product.off}
page={page}
productType={page === "digital" ? 0 : 1}
/>
</header>
<div className="product__comments d-flex flex-column">
<div className="d-flex justify-content-between">
<h3 style={{ fontSize: fontSize.desktop.h1 }}>
{window.t("نظرات خریداران")}
</h3>
<button onClick={() => this.handleOpenComment()}>
{window.t("ارسال نظر")}
<img src={send_comment} alt={window.t("ارسال نظر")} />
</button>
</div>
<div className="product__comments--list d-flex flex-column">
{info.comment.length > 0 ? (
info.comment.map((item, i) => (
<Comment comment={item} key={i} />
))
) : (
<div className="nocomments">
{window.t(
"از اینکه با نظرات خود ما را در ارتقای کیفیت محصولاتمان"
)}
{window.t("یاری کنید ، سپاسگزاریم")}
</div>
)}
</div>
</div>
{0 ? <Identifier item={[]} /> : null}
</div>
<Footer />
<MaterialModal
openComment={this.state.openComment}
handleOpenComment={this.handleOpenComment}
/>
</>
) : (
<div
className="d-flex justify-content-center align-items-center"
style={{ height: "100vh", width: "100vw" }}
>
<Loader />
</div>
)
) : null}
{window.innerWidth < 1000 ? (
info ? (
<>
<div className="mobile-product d-flex flex-column">
<Navbar />
<header className="mobile-product__header d-flex flex-column align-items-center">
<img
src={`https://dnvn.ir/api/v1/file/${info.fileIds}`}
alt={info.name}
/>
<h1 style={{ fontSize: fontSize.mobile.h1 }}>{`${
info.name
} پایه ${grades[info.gradeId]}`}</h1>
<h2 style={{ fontSize: fontSize.mobile.h2 }}>
{page !== "digital"
? window.t("نسخه چاپی")
: window.t("نسخه الکترونیک")}
</h2>
<h3 style={{ fontSize: fontSize.mobile.h1 }}>
{page === "digital"
? info.product[0].price
: info.product[0].price}{" "}
{window.t("تومان")}
</h3>
<div className="d-flex flex-column mt-3">
<div className="d-flex">
<Link
// to={`/products/${
// page === "digital"
// ? `physical/${window.location.pathname.slice(
// window.location.pathname.lastIndexOf("/") + 1,
// window.location.pathname.length
// )}`
// : `digital/${window.location.pathname.slice(
// window.location.pathname.lastIndexOf("/") + 1,
// window.location.pathname.length
// )}`
// }`}
className="mobile-product__header--digitalButton"
style={{ fontSize: fontSize.mobile.a, opacity: 0.3 }}
>
{page === "digital"
? window.t("نسخه چاپی")
: window.t("نسخه الکترونیک")}
</Link>
<Link
to={
info.sampleFileId ? `/pdf/${info.sampleFileId}` : "#"
}
onClick={() =>
!info.sampleFileId
? toast.info(
window.t("برای این کتاب نمونهای درج نشده است.")
)
: null
}
className="mobile-product__header--purchase"
style={{ fontSize: fontSize.mobile.a }}
>
{window.t("مطالعه نمونه کتاب")}{" "}
</Link>
</div>
<Addbutton
page={page}
info={info}
userId={this.props.id}
pushToCart={this.props.pushToCart}
/>
</div>
</header>
<div className="mobile-product__abstraction d-flex flex-column">
<h3 style={{ fontSize: fontSize.mobile.h3 }}>
{window.t("معرفی کتاب")}
</h3>
<p style={{ fontSize: fontSize.mobile.p }}>
{info.description || window.t("توضیحات محصول خالیست")}
</p>
</div>
<div className="mobile-product__modules d-flex flex-column">
<h3 style={{ fontSize: fontSize.mobile.h3 }}>
{window.t("این کتاب شامل چه مواردی است؟")}
</h3>
<ul>
{/* {product.modules.map((item, i) => (
<React.Fragment key={i}>
<Item item={item} />
</React.Fragment>
))} */}
</ul>
</div>
<div className="mobile-product__description d-flex">
<p style={{ fontSize: fontSize.mobile.p }}>
{info.description}
</p>
</div>
<div className="mobile-product__comments d-flex flex-column">
<div className="d-flex justify-content-between align-items-center mb-3">
<h3 style={{ fontSize: fontSize.mobile.h3 }}>
{window.t("نظرات خریداران")}
</h3>
<button onClick={() => this.handleOpenComment()}>
{window.t("ارسال نظر")}
<img src={send_comment} alt={window.t("ارسال نظر")} />
</button>
</div>
<div className="mobile-product__comments--list d-flex">
{info.comment.length > 0 ? (
info.comment.map((item, i) => (
<Comment comment={item} key={i} />
))
) : (
<div className="nocomments">
{window.t(
"از اینکه با نظرات خود ما را در ارتقای کیفیت محصولاتمان"
)}
{window.t("یاری کنید ، سپاسگزاریم")}
</div>
)}
</div>
</div>
</div>
<div
className="d-flex"
style={{
// position: "fixed",
// bottom: 1,
width: "100%",
height: "40px",
left: "0px",
}}
>
<Link
to={"/cart"}
style={{
position: "fixed",
bottom: "0",
width: "calc(100% - 10px)",
color: "white",
backgroundColor: "#00cc69",
cursor: "pointer",
borderRadius: 8,
textDecoration: "none",
padding: "5px 10px",
margin: "5px 5px 5px",
textAlign: "center",
}}
>
{window.t("سبد خرید")}{" "}
</Link>
</div>
<MaterialModal
openComment={this.state.openComment}
handleOpenComment={this.handleOpenComment}
/>
</>
) : (
<div
className="d-flex justify-content-center align-items-center"
style={{ height: "100vh", width: "100vw" }}
>
<Loader />
</div>
)
) : null}
</>
);
}
}
export default connect(
(state) => ({
info: state.book.info,
// status: state.user.status,
loading: state.book.loading,
list: state.book.list,
id: state.user.status.id,
}),
{ getInfo: book.info, getList: book.list, pushToCart: userProduct.add }
)(Product);
Product.defaultProps = {
supportItems: [
{ title: window.t("ارسال سریع"), icon: product_shipping },
{ title: window.t("پشتیبانی 24 ساعته"), icon: product_support },
{ title: window.t("ضمانت بازگشت"), icon: product_cash_back },
],
};
const Identifier = (props) => {
return (
<>
{window.innerWidth < 1000 ? (
<HomeScroll
number={2.5}
// height={props.item.height}
title={"محصولات مشابه"}
data={props.item}
designType={"product"}
moreText={"ّبیشتر"}
/>
) : null}
{window.innerWidth > 1000 ? (
<HomeSlider
designType={"simple"}
number={"4"}
// height={props.item.height}
title={"محصولات مشابه"}
data={props.item}
/>
) : null}
</>
);
};