Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Jay Mehta
/
zango-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Registry
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 2f927235
authored
10 months ago
by
jaymehta
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
https://git.logicloop.io/jaymehta/zango-frontend
2 parents
62ab562f
bab1fecc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
27 deletions
components/signup/Signup.js
components/user/MyGiftCard.js
components/signup/Signup.js
View file @
2f92723
...
...
@@ -197,7 +197,7 @@ const Signup = props => {
onChange
=
{
handleChange
}
onBlur
=
{
e
=>
{
handleBlur
(
e
);
setCountryCode
(
e
.
target
.
value
);
//
setCountryCode(e.target.value);
}}
style
=
{{
width
:
"80px"
}}
>
...
...
This diff is collapsed.
Click to expand it.
components/user/MyGiftCard.js
View file @
2f92723
...
...
@@ -4,6 +4,7 @@ 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
();
...
...
@@ -17,7 +18,27 @@ const MyGiftCard = () => {
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"
>
...
...
@@ -26,38 +47,46 @@ const MyGiftCard = () => {
<
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 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 align-items-start justify-content-between"
>
<
div
className
=
"details-div"
>
<
p
>
Sender
’
s
Email
Id
<
/p
>
<
p
>
{
data
.
attributes
.
senderEmail
}
<
/p
>
<>
{
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"
>
<
p
>
Receiver
’
s
Email
Id
<
/p
>
<
p
>
{
data
.
attributes
.
receiverEmail
}
<
/p
>
<
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
className
=
"details-div"
>
<
p
>
Gift
Amount
<
/p
>
<
p
>
$
{
data
.
attributes
.
amount
}
<
/p
>
<
/div
>
<
/div
>
<
/div
>
<
/div
>
))}
<
/
>
))}
<
/
>
:
<>
<
p
className
=
"mb-5"
>
No
Item
Found
<
/p
>
<
p
className
=
"mb-5"
>
No
Item
Found
<
/p
>
<
/>
}
<
/div
>
<
/div
>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment