parent
d6c3c29232
commit
6809694c20
5 changed files with 14669 additions and 12244 deletions
File diff suppressed because it is too large
Load Diff
@ -1,197 +1,139 @@ |
|||||||
import { useState } from "react"; |
import React, { Component } from "react"; |
||||||
import { userFactor } from "../../Redux/actions"; |
|
||||||
import { connect } from "react-redux"; |
import { connect } from "react-redux"; |
||||||
import Navbar from "../Home/Navbar"; |
import Navbar from "../Home/Navbar"; |
||||||
|
import { userFactor } from "~/Redux/actions"; |
||||||
|
import "./index.css"; |
||||||
import './index.css'; |
import moment from "jalali-moment"; |
||||||
|
const grades = [ |
||||||
const Orders=(props)=>{ |
"پیش دبستان", |
||||||
// const [data, set_data] = useState([
|
"اول", |
||||||
// {
|
"دوم", |
||||||
// id: "12345",
|
"سوم", |
||||||
// transactionId: "43448y35",
|
"چهارم", |
||||||
// payedAt: "1400/06/24",
|
"پنجم", |
||||||
// condition: 1,
|
"ششم", |
||||||
// payPrice: 2500000,
|
"هفتم", |
||||||
// offPrice: 10000,
|
"هشتم", |
||||||
// description: "",
|
"نهم", |
||||||
// products: [
|
"دهم", |
||||||
// {
|
"یازدهم", |
||||||
// id: 1,
|
"دوازدهم", |
||||||
// ARId: "",
|
]; |
||||||
// book: {
|
class Orders extends Component { |
||||||
// name: "",
|
componentDidMount() { |
||||||
// fileId: "",
|
console.log(this.props); |
||||||
// },
|
if (!this.props.list) this.props.getList(); |
||||||
// },
|
} |
||||||
// {
|
render() { |
||||||
// id: 2,
|
// props.getList();
|
||||||
// ARId: "",
|
let data = this.props.list; |
||||||
// book: {
|
console.log(data); |
||||||
// name: "",
|
return ( |
||||||
// fileId: "",
|
<div className="order"> |
||||||
// },
|
<Navbar /> |
||||||
// },
|
<div className="order-title" align="center"> |
||||||
// ],
|
سفارشات من |
||||||
// },
|
</div> |
||||||
// {
|
<div className="order-data-container"> |
||||||
// id: "45679f",
|
{data != null && |
||||||
// transactionId: "43448y35",
|
data.map((item, i) => ( |
||||||
// payedAt: "1400/06/24",
|
<div key={i} className="order-data-container-item"> |
||||||
// condition: 2,
|
<div className="order-data-container-item-row1"> |
||||||
// payPrice: 2500000,
|
<div className="order-data-container-item-row1-order-id"> |
||||||
// offPrice: 0,
|
شناسه سفارش: <span>{item.id}</span> |
||||||
// description: "",
|
</div> |
||||||
// products: [
|
<div className="order-data-container-item-row1-order-status"> |
||||||
// {
|
<div |
||||||
// id: '1',
|
style={{ |
||||||
// ARId: "",
|
backgroundColor: [0, "#11FA2F", "#11FADB", "#FA3011"][ |
||||||
// book: {
|
item.condition |
||||||
// name: "",
|
], |
||||||
// fileId: "",
|
}} |
||||||
// },
|
className="order-data-container-item-row1-order-status-circle" |
||||||
// },
|
></div> |
||||||
// {
|
<div |
||||||
// id: 2,
|
style={ |
||||||
// ARId: "",
|
item.condition == 1 |
||||||
// book: {
|
? { backgroundColor: "#B0F8B5", color: "#0F9420" } |
||||||
// name: "",
|
: item.condition == 2 |
||||||
// fileId: "",
|
? { backgroundColor: "#B5FFFD", color: "#30C2BD" } |
||||||
// },
|
: item.condition == 3 |
||||||
// },
|
? { backgroundColor: "#FDC9B6", color: "#FA4C0D" } |
||||||
// ],
|
: null |
||||||
// },
|
} |
||||||
// {
|
className="order-data-container-item-row1-order-status-text" |
||||||
// id: "509685f",
|
> |
||||||
// transactionId: "43448y35",
|
{item.condition == 1 && "در حال پردازش"} |
||||||
// payedAt: "1400/06/24",
|
{item.condition == 2 && "ارسال شد"} |
||||||
// condition: 3,
|
{item.condition == 3 && "لغو شد"} |
||||||
// payPrice: 2500000,
|
</div> |
||||||
// offPrice: 10000,
|
|
||||||
// description: "",
|
|
||||||
// products: [
|
|
||||||
// {
|
|
||||||
// id: 1,
|
|
||||||
// ARId: "",
|
|
||||||
// book: {
|
|
||||||
// name: "",
|
|
||||||
// fileId: "",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// id: 2,
|
|
||||||
// ARId: "",
|
|
||||||
// book: {
|
|
||||||
// name: "",
|
|
||||||
// fileId: "",
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
// ]);
|
|
||||||
props.getList(); |
|
||||||
let data = props.list; |
|
||||||
return ( |
|
||||||
<div className="order"> |
|
||||||
<Navbar /> |
|
||||||
<div className="order-title">سفارشات من</div> |
|
||||||
<div className="order-data-container"> |
|
||||||
{data != null && |
|
||||||
data.map((item) => ( |
|
||||||
<div className="order-data-container-item"> |
|
||||||
<div className="order-data-container-item-row1"> |
|
||||||
<div className="order-data-container-item-row1-order-id"> |
|
||||||
شناسه سفارش: <span>{item.id}</span> |
|
||||||
</div> |
|
||||||
<div className="order-data-container-item-row1-order-status"> |
|
||||||
<div |
|
||||||
style={ |
|
||||||
item.condition == 1 |
|
||||||
? { backgroundColor: "#11FA2F" } |
|
||||||
: item.condition == 2 |
|
||||||
? { backgroundColor: "#11FADB" } |
|
||||||
: item.condition == 3 |
|
||||||
? { backgroundColor: "#FA3011" } |
|
||||||
: null |
|
||||||
} |
|
||||||
className="order-data-container-item-row1-order-status-circle" |
|
||||||
></div> |
|
||||||
<div |
|
||||||
style={ |
|
||||||
item.condition == 1 |
|
||||||
? { backgroundColor: "#B0F8B5", color: "#0F9420" } |
|
||||||
: item.condition == 2 |
|
||||||
? { backgroundColor: "#B5FFFD", color: "#30C2BD" } |
|
||||||
: item.condition == 3 |
|
||||||
? { backgroundColor: "#FDC9B6", color: "#FA4C0D" } |
|
||||||
: null |
|
||||||
} |
|
||||||
className="order-data-container-item-row1-order-status-text" |
|
||||||
> |
|
||||||
{item.condition == 1 && "در حال پردازش"} |
|
||||||
{item.condition == 2 && "ارسال شد"} |
|
||||||
{item.condition == 3 && "لغو شد"} |
|
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</div> |
<div className="order-data-container-item-row2"> |
||||||
<div className="order-data-container-item-row2"> |
<div className="order-data-container-item-row2-transactionId"> |
||||||
<div className="order-data-container-item-row2-transactionId"> |
شناسه پرداخت : <span>{item.transactionId}</span> |
||||||
شناسه پرداخت : <span>{item.transactionId}</span> |
</div> |
||||||
</div> |
<div className="order-data-container-item-row2-order-date"> |
||||||
<div className="order-data-container-item-row2-order-date"> |
<span> |
||||||
تاریخ سفارش : <span>{item.payedAt}</span> |
{moment(item.payedAt).format("jYYYY/jMM/jDD hh:mm")} |
||||||
</div> |
</span> |
||||||
</div> |
</div> |
||||||
<div className="order-data-container-item-row3"> |
|
||||||
<div className="order-data-container-item-row3-order-price"> |
|
||||||
مبلغ : <span>{item.payPrice}</span>{" "} |
|
||||||
<span className="odcir2op-unit">تومان</span> |
|
||||||
</div> |
</div> |
||||||
{item.offCodePrice != 0 && ( |
|
||||||
<div className="order-data-container-item-row3-order-offcodeprice"> |
<div className="order-data-container-item-row3 d-flex"> |
||||||
میزان تخفیف : <span>{item.offPrice}</span>{" "} |
<div className="order-data-container-item-row3-order-price "> |
||||||
<span className="odcir2oo-unit">تومان</span> |
مبلغ : <span>{item.payPrice}</span>{" "} |
||||||
|
<span className="odcir2op-unit">تومان</span> |
||||||
</div> |
</div> |
||||||
)} |
{item.offCodePrice != 0 && ( |
||||||
</div> |
<div className="order-data-container-item-row3-order-offcodeprice"> |
||||||
<div className="order-data-container-item-row4"> |
تخفیف : <span>{item.offPrice}</span>{" "} |
||||||
<div className="order-data-container-item-row4-imgs"> |
<span className="odcir2oo-unit">تومان</span> |
||||||
{item.products.map((item) => ( |
|
||||||
<div className="order-data-container-item-row4-imgs-container"> |
|
||||||
<img |
|
||||||
className="order-data-container-item-row4-imgs-img" |
|
||||||
src={`https://dnvn.ir/api/v1/file/${item.book.fileIds.split(",")[0]}`} |
|
||||||
alt="order-img" |
|
||||||
/> |
|
||||||
</div> |
</div> |
||||||
))} |
)} |
||||||
|
</div> |
||||||
|
<div className="order-data-container-item-row4"> |
||||||
|
<div className="order-data-container-item-row4-imgs"> |
||||||
|
{item.products.map((item, i) => ( |
||||||
|
<div |
||||||
|
key={i} |
||||||
|
className="order-data-container-item-row4-imgs-container" |
||||||
|
> |
||||||
|
<img |
||||||
|
className="order-data-container-item-row4-imgs-img" |
||||||
|
src={`https://dnvn.ir/api/v1/file/${ |
||||||
|
item.book.fileIds.split(",")[0] |
||||||
|
}`}
|
||||||
|
alt="" |
||||||
|
/> |
||||||
|
<div style={{ height: 0 }}> |
||||||
|
<div className="order-data-container-item-row4-imgs-img-count"> |
||||||
|
{item.count}{" "} |
||||||
|
<span style={{ fontSize: "12px" }}>×</span> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div style={{ fontSize: "10px" }} align="center"> |
||||||
|
{`${item.book.name} ${grades[item.book.gradeId]}`} |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
))} |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</div> |
))} |
||||||
))} |
{data == null && ( |
||||||
{data == null && ( |
<div className="order-message">سفارشی برای نماش وجود ندارد</div> |
||||||
<div className="order-message">سفارشی برای نماش وجود ندارد</div> |
)} |
||||||
)} |
</div> |
||||||
</div> |
</div> |
||||||
</div> |
); |
||||||
); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
const mapStateToPropS = state =>{ |
|
||||||
return{ |
|
||||||
list:state.list |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
export default connect( |
||||||
const mapDispatchToProps = dispatch =>{ |
(state) => ({ |
||||||
return{ |
list: state.userFactor.list, |
||||||
getList:()=> dispatch(userFactor.list()) |
}), |
||||||
|
{ |
||||||
|
getList: userFactor.list, |
||||||
} |
} |
||||||
} |
)(Orders); |
||||||
|
|
||||||
export default connect(mapStateToPropS, mapDispatchToProps)(Orders); |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in new issue