MyGiftCard.js
3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import Image from "next/image";
import React, { Fragment, useEffect } from "react";
import { Button } from "react-bootstrap";
import { cleanImage, renderImage } from "../../services/imageHandling";
import { useDispatch, useSelector } from "react-redux";
import { getGiftCard } from "../../redux/actions/giftCardAction";
import { Tag } from "antd";
const MyGiftCard = () => {
const dispatch = useDispatch();
const { giftCard } = useSelector(state => state.giftCard);
const { endUser } = useSelector(state => state.endUser);
useEffect(() => {
if (endUser) {
dispatch(getGiftCard(endUser.id));
}
}, [endUser]);
console.log("endUser", endUser);
console.log("giftCard", giftCard);
const getStatus = status => {
let text;
let color;
switch (status) {
case "new":
text = "PENDING";
color = "warning";
break;
case "fulfilled":
text = "APPROVED";
color = "success";
break;
case "rejected":
text = "REJECTED";
color = "error";
break;
default:
break;
}
return <Tag color={color}>{text.toUpperCase()}</Tag>;
};
return (
<Fragment>
<div className="container min-height-40 ">
<div className="row">
<div className="col-12 col-lg-12 form-container content-wraaper">
<h2 className="px-2 px-lg-0">My Gift Card</h2>
<div className="row">
{giftCard?.length > 0 ? (
<>
{giftCard.map((data, index) => (
<div className="col-12 col-lg-4 col-md-6 px-4 px-lg-3" key={`1${index}`}>
<div className="card-booking">
<div className="card-booking-img bgGrey">
<span className="image-container">
<Image src="/images/zango-logo.svg" layout="fill" className="image" />
</span>
</div>
<div className="card-booking-content details-wrapper">
<p className="details">Details</p>
<div className="d-flex flex-column flex-md-row flex-sm-row flex-lg-row align-items-start justify-content-between">
<div className="details-div">
<p>Sender’s Email Id</p>
<p>{data.attributes.senderEmail}</p>
</div>
<div className="details-div">
<p>Receiver’s Email Id</p>
<p>{data.attributes.receiverEmail}</p>
</div>
</div>
<div className="details-div d-flex align-items-end justify-content-between">
<div>
<p>Gift Amount</p>
<p className="m-0">${data.attributes.amount}</p>
</div>
{data.attributes.status !== null && <div>{getStatus(data?.attributes?.status)}</div>}
</div>
</div>
</div>
</div>
))}
</>
) : (
<>
<p className="mb-5">No Item Found</p>
</>
)}
</div>
</div>
</div>
</div>
</Fragment>
);
};
export default MyGiftCard;