-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaymentTable.component.js
More file actions
154 lines (108 loc) · 4.55 KB
/
PaymentTable.component.js
File metadata and controls
154 lines (108 loc) · 4.55 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import React from 'react'
import axios from "axios";
class PaymentTable extends React.Component{
constructor(props) {
super (props)
this.state ={
paymentDetails:'',
userPaymentDetails:''
}
this.changeHandler = this.changeHandler.bind(this);
this.submitHandler = this.submitHandler.bind(this);
}
changeHandler = e => {
this.setState({[e.target.name]: e.target.value})
}
submitHandler = e => {
e.preventDefault()
}
componentDidMount() {
let auth = localStorage.getItem('accessTokenLogin');
console.log(auth)
console.log(typeof (auth))
axios.post('protected', null, {
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
'Authorization': "Bearer" + " " + auth,
}
})
.then(responce => {
console.log(responce)
var user_email = (responce.data.user_email).toString()
console.log(user_email)
console.log(typeof (user_email))
axios.post('user-payment-details', {
email: user_email,
})
.then(responce => {
console.log(responce)
this.setState({userPaymentDetails: responce.data.result})
console.log(this.state.userPaymentDetails)
})
})
}
render() {
const{userPaymentDetails} = this.state
console.log(userPaymentDetails)
console.log(typeof (userPaymentDetails))
var resultArray = Object.keys(userPaymentDetails).map((key) => [Number(key), userPaymentDetails[key]])
return(
<div>
<div style={{display: "flex", justifyContent: "center", alignItems: "center"}}>
<table className="ui table">
<thead>
<tr>
<th className="center aligned"> Payment ID</th>
<th className="center aligned">Payment Type</th>
<th className="center aligned">Amount</th>
<th className="center aligned">User Email</th>
<th className="center aligned">User Name</th>
</tr>
</thead>
<tbody>
<tr className ="ui celled fixed single line table ">
<th className="center aligned">
{resultArray.map((data,index)=>(
<li key={index}>
{data[1][0]}
</li>
))}
</th>
<td className="left aligned">
{resultArray.map((data,index)=>(
<li key={index}>
{data[1][1]}
</li>
))}
</td>
<td className="left aligned">
{resultArray.map((data,index)=>(
<li key={index}>
{data[1][2]}
</li>
))}
</td>
<td className="left aligned">
{resultArray.map((data,index)=>(
<li key={index}>
{data[1][3]}
</li>
))}
</td>
<td className="left aligned">
{resultArray.map((data,index)=>(
<li key={index}>
{data[1][4]}
</li>
))}
</td>
</tr>
</tbody>
</table>
</div>
</div>
)
}
}
export default PaymentTable