update 12 files

front
Reza_ashrafi 2 years ago
parent a00871dcfd
commit 3a92b55db1
  1. 6
      src/views/ChatRoom/Header/index.js
  2. 8
      src/views/Checkout/Discount/index.js
  3. 30
      src/views/Checkout/Factor/index.js
  4. 9
      src/views/Checkout/Table/index.js
  5. 4
      src/views/Download/BreadCrumb/index.js
  6. 7
      src/views/Download/index.js
  7. 2
      src/views/Faq/index.js
  8. 4
      src/views/Home/HomeScroll/Product/index.js
  9. 2
      src/views/Home/HomeSearch/index.js
  10. 12
      src/views/Home/Navbar/Mobile/NavbarDrawer/NavbarDrawer.js
  11. 2
      src/views/Home/Navbar/Mobile/index.js
  12. 6
      src/views/NewProfile/index.js

@ -83,19 +83,19 @@ class Header extends Component {
className="fontLight menu" className="fontLight menu"
onClick={() => this.handleClose()} onClick={() => this.handleClose()}
> >
پروفایل")} {window.t("پروفایل")}
</MenuItem> </MenuItem>
<MenuItem <MenuItem
className="fontLight menu" className="fontLight menu"
onClick={() => this.handleClose()} onClick={() => this.handleClose()}
> >
حساب کاربری")}{" "} {window.t("حساب کاربری")}{" "}
</MenuItem> </MenuItem>
<MenuItem <MenuItem
className="fontLight menu" className="fontLight menu"
onClick={() => this.handleClose()} onClick={() => this.handleClose()}
> >
خروج")}{" "} {window.t("خروج")}{" "}
</MenuItem> </MenuItem>
</Menu> </Menu>
</div> </div>

@ -34,7 +34,7 @@ const DiscoutCode = ({ codeId, setCodeId, userId, factorId }) => {
{window.t("کد تخفیف")} {window.t("کد تخفیف")}
</h2> </h2>
<p style={{ fontSize: fontSize.desktop.p }}> <p style={{ fontSize: fontSize.desktop.p }}>
اگر کد تخفیفی دارید آن را در کادر زیر وارد نمائید")}{" "} {window.t("اگر کد تخفیفی دارید آن را در کادر زیر وارد نمائید")}{" "}
</p> </p>
<div className="discount-code__box d-flex align-items-center"> <div className="discount-code__box d-flex align-items-center">
<input <input
@ -47,7 +47,7 @@ const DiscoutCode = ({ codeId, setCodeId, userId, factorId }) => {
style={{ fontSize: fontSize.desktop.button }} style={{ fontSize: fontSize.desktop.button }}
onClick={setOff} onClick={setOff}
> >
ثبت کد")}{" "} {window.t("ثبت کد")}{" "}
</button> </button>
</div> </div>
</div> </div>
@ -58,7 +58,7 @@ const DiscoutCode = ({ codeId, setCodeId, userId, factorId }) => {
{window.t("کد تخفیف")} {window.t("کد تخفیف")}
</h2> </h2>
<p style={{ fontSize: fontSize.mobile.p }}> <p style={{ fontSize: fontSize.mobile.p }}>
اگر کد تخفیفی دارید آن را در کادر زیر وارد نمائید{" "} {window.t("اگر کد تخفیفی دارید آن را در کادر زیر وارد نمائید")}{" "}
</p> </p>
<div className="mobile-discount-code__box d-flex align-items-center"> <div className="mobile-discount-code__box d-flex align-items-center">
<input <input
@ -70,7 +70,7 @@ const DiscoutCode = ({ codeId, setCodeId, userId, factorId }) => {
style={{ fontSize: fontSize.mobile.button }} style={{ fontSize: fontSize.mobile.button }}
onClick={setOff} onClick={setOff}
> >
ثبت کد")}{" "} {window.t("ثبت کد")}{" "}
</button> </button>
</div> </div>
</div> </div>

@ -33,22 +33,28 @@ const Factor = (props) => {
<div className="mobile-factor d-flex flex-column"> <div className="mobile-factor d-flex flex-column">
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong>{window.t("مبلغ سبد خرید")}</strong> <strong>{window.t("مبلغ سبد خرید")}</strong>
<span>{factorInfo.sumPrice} تومان")}</span> <span>
{factorInfo.sumPrice} {window.t("تومان")}
</span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong>{window.t("هزینه ارسال")}</strong> <strong>{window.t("هزینه ارسال")}</strong>
<span> <span>
{factorInfo.transportPrice} {factorInfo.transportPrice}
تومان")} {window.t("تومان")}
</span> </span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong>{window.t("میزان تخفیف")}</strong> <strong>{window.t("میزان تخفیف")}</strong>
<span>{factorInfo.offPrice} تومان")}</span> <span>
{factorInfo.offPrice} {window.t("تومان")}
</span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong>{window.t("مالیات بر ارزش افزوده")}</strong> <strong>{window.t("مالیات بر ارزش افزوده")}</strong>
<span>{factorInfo.vatPrice} تومان")}</span> <span>
{factorInfo.vatPrice} {window.t("تومان")}
</span>
</div> </div>
</div> </div>
) : null} ) : null}
@ -56,35 +62,35 @@ const Factor = (props) => {
<div className="factor d-flex flex-column"> <div className="factor d-flex flex-column">
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong style={{ fontSize: fontSize.desktop.strong }}> <strong style={{ fontSize: fontSize.desktop.strong }}>
مبلغ سبد خرید")}{" "} {window.t("مبلغ سبد خرید")}{" "}
</strong> </strong>
<span style={{ fontSize: fontSize.desktop.span }}> <span style={{ fontSize: fontSize.desktop.span }}>
{factorInfo.sumPrice} تومان")} {factorInfo.sumPrice} {window.t("تومان")}
</span> </span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong style={{ fontSize: fontSize.desktop.strong }}> <strong style={{ fontSize: fontSize.desktop.strong }}>
هزینه ارسال")} {window.t("هزینه ارسال")}
</strong> </strong>
<span style={{ fontSize: fontSize.desktop.span }}> <span style={{ fontSize: fontSize.desktop.span }}>
{factorInfo.transportPrice} {factorInfo.transportPrice}
تومان")} {window.t("تومان")}
</span> </span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong style={{ fontSize: fontSize.desktop.strong }}> <strong style={{ fontSize: fontSize.desktop.strong }}>
میزان تخفیف")} {window.t("میزان تخفیف")}
</strong> </strong>
<span style={{ fontSize: fontSize.desktop.span }}> <span style={{ fontSize: fontSize.desktop.span }}>
{factorInfo.offPrice} تومان")} {factorInfo.offPrice} {window.t("تومان")}
</span> </span>
</div> </div>
<div className="d-flex justify-content-between"> <div className="d-flex justify-content-between">
<strong style={{ fontSize: fontSize.desktop.strong }}> <strong style={{ fontSize: fontSize.desktop.strong }}>
مالیات بر ارزش افزوده")}{" "} {window.t("مالیات بر ارزش افزوده")}{" "}
</strong> </strong>
<span style={{ fontSize: fontSize.desktop.span }}> <span style={{ fontSize: fontSize.desktop.span }}>
{factorInfo.vatPrice} تومان")} {factorInfo.vatPrice} {window.t("تومان")}
</span> </span>
</div> </div>
</div> </div>

@ -178,12 +178,15 @@ const Item = (props) => {
<div className="mobile-cart-table-price d-flex flex-column align-items-center"> <div className="mobile-cart-table-price d-flex flex-column align-items-center">
<div className="mobile-cart-table-price__price d-flex flex-column justify-content-center align-items-center"> <div className="mobile-cart-table-price__price d-flex flex-column justify-content-center align-items-center">
<strong style={{ fontSize: 14 }}> <strong style={{ fontSize: 14 }}>
{data.product.price * data.count || "1000"} تومان")} {data.product.price * data.count || "1000"}{" "}
{window.t("تومان")}
</strong> </strong>
</div> </div>
{route === "cart" ? ( {route === "cart" ? (
<div className="mobile-cart-table-price__counter d-flex justify-content-around align-items-center"> <div className="mobile-cart-table-price__counter d-flex justify-content-around align-items-center">
<span style={{ fontSize: 12 }}>{data.count} عدد")}</span> <span style={{ fontSize: 12 }}>
{data.count} {window.t("عدد")}
</span>
</div> </div>
) : null} ) : null}
</div> </div>
@ -191,7 +194,7 @@ const Item = (props) => {
{route === "callback" ? ( {route === "callback" ? (
<TableCell> <TableCell>
<strong className="d-flex justify-content-center align-items-center"> <strong className="d-flex justify-content-center align-items-center">
{data.count} عدد")}{" "} {data.count} {window.t("عدد")}{" "}
</strong> </strong>
</TableCell> </TableCell>
) : null} ) : null}

@ -21,7 +21,7 @@ export default function ActiveLastBreadcrumb(props) {
}} }}
to={"/"} to={"/"}
> >
صفحه اصلی")}{" "} {window.t("صفحه اصلی")}{" "}
</Link> </Link>
<Link <Link
style={{ style={{
@ -31,7 +31,7 @@ export default function ActiveLastBreadcrumb(props) {
}} }}
to={"/download"} to={"/download"}
> >
دریافت افزونه واقعیت افزوده")}{" "} {window.t("دریافت افزونه واقعیت افزوده")}{" "}
</Link> </Link>
</Breadcrumbs> </Breadcrumbs>
); );

@ -59,8 +59,9 @@ class AR extends Component {
: fontSize.mobile.p, : fontSize.mobile.p,
}} }}
> >
برای استفاده از بخش واقعیت افزوده می بایست افزونه آن را نصب {window.t(
نمایید")}{" "} "برای استفاده از بخش واقعیت افزوده می بایست افزونه آن را نصب نمایید"
)}{" "}
</p> </p>
<a <a
href="https://dnvn.ir/ar.apk" href="https://dnvn.ir/ar.apk"
@ -74,7 +75,7 @@ class AR extends Component {
textAlign: "center", textAlign: "center",
}} }}
> >
دریافت افزونه")}{" "} {window.t("دریافت افزونه")}{" "}
</a> </a>
</div> </div>
</div> </div>

@ -146,7 +146,7 @@ class Faq extends Component {
<Navbar page={"mobile-faq"} /> <Navbar page={"mobile-faq"} />
<header className="mobile-faq__header d-flex flex-column align-items-center"> <header className="mobile-faq__header d-flex flex-column align-items-center">
<h1 style={{ fontSize: fontSize.mobile.h1 }}> <h1 style={{ fontSize: fontSize.mobile.h1 }}>
سلام چطوری میتونم کمکتون کنم؟ {window.t("سلام چطوری میتونم کمکتون کنم؟")}
</h1> </h1>
<input <input
type="search" type="search"

@ -19,13 +19,13 @@ export default class Product extends Component {
{data.oldPrice ? ( {data.oldPrice ? (
<div> <div>
<div className="scroll-product__price--old d-flex"> <div className="scroll-product__price--old d-flex">
{data.oldPrice} تومان")} {data.oldPrice} {window.t("تومان")}
<span></span> <span></span>
</div> </div>
</div> </div>
) : null} ) : null}
<div className="scroll-product__price--price"> <div className="scroll-product__price--price">
{data.price} تومان")} {data.price} {window.t("تومان")}
</div> </div>
</div> </div>
) : ( ) : (

@ -78,7 +78,7 @@ class HomeSearch extends Component {
}); });
}} }}
> >
جستجو")} {window.t("جستجو")}
</button> </button>
</div> </div>
</> </>

@ -193,7 +193,11 @@ class NavbarDrawer extends Component {
className="navbar-drawer__header--dropdown" className="navbar-drawer__header--dropdown"
onClick={() => this.setState({ dropdown: false })} onClick={() => this.setState({ dropdown: false })}
> >
{score ? <span>{score} امتیاز</span> : null} {score ? (
<span>
{score} {window.t("امتیاز")}
</span>
) : null}
<KeyboardArrowUpIcon style={{ color: "grey", fontSize: 30 }} /> <KeyboardArrowUpIcon style={{ color: "grey", fontSize: 30 }} />
</div> </div>
) : ( ) : (
@ -201,7 +205,11 @@ class NavbarDrawer extends Component {
className="navbar-drawer__header--dropdown" className="navbar-drawer__header--dropdown"
onClick={() => this.setState({ dropdown: true })} onClick={() => this.setState({ dropdown: true })}
> >
{score ? <span>{score} امتیاز</span> : null}{" "} {score ? (
<span>
{score} {window.t("امتیاز")}
</span>
) : null}{" "}
<KeyboardArrowDownIcon <KeyboardArrowDownIcon
style={{ color: "grey", fontSize: 30 }} style={{ color: "grey", fontSize: 30 }}
/> />

@ -94,7 +94,7 @@ export default function MobileNavbar(props) {
to={"/auth"} to={"/auth"}
className="mobile-navbar__signup" className="mobile-navbar__signup"
> >
ورود یا ثبتنام")} {window.t("ورود یا ثبتنام")}
</Link> </Link>
{page !== "home" ? <BackButton /> : null} {page !== "home" ? <BackButton /> : null}
</div> </div>

@ -210,7 +210,7 @@ class NewProfile extends Component {
{window.t("حساب کاربری")} {window.t("حساب کاربری")}
</h1> </h1>
<p style={{ fontSize: fontSize.desktop.p }}> <p style={{ fontSize: fontSize.desktop.p }}>
لطفا مشخصات خود را به صورت کامل نمایید. {window.t("لطفا مشخصات خود را به صورت کامل نمایید.")}
</p> </p>
<form <form
className="auth-profile__box--form d-flex" className="auth-profile__box--form d-flex"
@ -393,7 +393,9 @@ class NewProfile extends Component {
{window.innerWidth < 1000 ? ( {window.innerWidth < 1000 ? (
<div className="mobile-auth-profile d-flex flex-column"> <div className="mobile-auth-profile d-flex flex-column">
<img src={logo} alt={window.t("دانوین")} /> <img src={logo} alt={window.t("دانوین")} />
<h1 style={{ fontSize: fontSize.mobile.h1 }}>افزودن کاربر جدید</h1> <h1 style={{ fontSize: fontSize.mobile.h1 }}>
{window.t("افزودن کاربر جدید")}
</h1>
<p style={{ fontSize: fontSize.mobile.p }}> <p style={{ fontSize: fontSize.mobile.p }}>
{window.t("لطفا مشحصات خود را به صورت کامل وارد نمایید")}{" "} {window.t("لطفا مشحصات خود را به صورت کامل وارد نمایید")}{" "}
</p> </p>

Loading…
Cancel
Save