-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.js
138 lines (128 loc) · 4.54 KB
/
Dashboard.js
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
import { CardElement, useElements, useStripe } from '@stripe/react-stripe-js';
import React, { useContext, useEffect } from 'react';
import { useState } from 'react';
import { AuthContex } from '../../Providers/AuthProvider'
import Swal from 'sweetalert2';
import UseCart from '../../Hooks/UseCart'
const Checkout = ({ price,cartId }) => {
const [clientSecret, setClientSecret] = useState('')
const stripe = useStripe();
const elements = useElements();
const [cardError, setCardError] = useState('')
const { user } = useContext(AuthContex)
const [transaction,setTransaction] = useState('');
const [cart,refetch] = UseCart();
useEffect(() => {
if (price) {
fetch('https://speakup-ivory.vercel.app/create-payment-intent', {
method: 'POST',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify({ price: price?.price })
})
.then(res => res.json())
.then(data => {
console.log(data);
setClientSecret(data.clientSecret)
})
}
}, [price])
const handleSubmit = async (event) => {
event.preventDefault();
if (!stripe || !elements) {
return;
}
const card = elements.getElement(CardElement);
if (card === null) {
return;
}
const { error, paymentMethod } = await stripe.createPaymentMethod({
type: 'card',
card
})
if (error) {
console.log('Card Error: ', error);
setCardError(error.message)
}
else {
setCardError('')
console.log('PaymentMethod: ', paymentMethod);
}
const { paymentIntent, error: confirmError } = await stripe.confirmCardPayment(
clientSecret,
{
payment_method: {
card: card,
billing_details: {
email: user.email || 'Unknown',
name: user.displayName ||'Unknown',
},
},
},
);
if(confirmError){
console.log(confirmError);
setCardError(confirmError.message)
}
console.log(paymentIntent);
if(paymentIntent.status ==='succeeded'){
setTransaction(paymentIntent.id);
const payment = {
email: user?.email,
transaction: paymentIntent.id,
couresId: price?.cartId,
date: new Date().toISOString()
}
console.log(payment);
fetch('https://speakup-ivory.vercel.app/payments', {
method: 'POST',
headers: {
'content-type':'application/json'
},
body: JSON.stringify(payment)
})
.then(res=>res.json())
.then(data=>{
// console.log(data);
if(data.insertedId){
Swal.fire({
position: 'top-end',
icon: 'success',
title: 'Successfully Enrolled The Class!',
showConfirmButton: false,
timer: 2500
})
}
})
}
}
return (
<>
<form onSubmit={handleSubmit}>
<CardElement
options={{
style: {
base: {
fontSize: '16px',
color: '#424770',
'::placeholder': {
color: '#aab7c4',
},
},
invalid: {
color: '#9e2146',
},
},
}}
/>
<button className='btn btn-outline btn-sm mt-4' type="submit" disabled={!stripe || !clientSecret}>
Pay
</button>
</form>
{cardError && <p className='text-red-600'>{cardError}</p>}
{transaction && <p className='text-green-600'>Transaction Completed with Transaction Id : <span className='font-semibold text-1xl'>{transaction}</span></p>}
</>
);
};
export default Checkout;