PaymentCompletePage.js 3.13 KB
Newer Older
1
2
import axios from 'axios'
import { useEffect, useState } from 'react'
Kim, Subin's avatar
Kim, Subin committed
3
import { useAuth } from '../context/auth_context'
4
import catchErrors from '../utils/catchErrors'
한규민's avatar
한규민 committed
5
import reservationApi from '../apis/reservation.api'
6
7
8
9

const PaymentCompletePage = () => {
    const { user } = useAuth()
    const [error, setError] = useState()
Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
    const [success, setSuccess] = useState(false)
    const [paymentData, setPaymentData] = useState()
Jiwon Yoon's avatar
Jiwon Yoon committed
12

13
    useEffect(() => {
Jiwon Yoon's avatar
Jiwon Yoon committed
14
        if (user.id > 0) {
Jiwon Yoon's avatar
Jiwon Yoon committed
15
16
            const tid = localStorage.getItem('tid')
            approveKakaopay(tid)
Jiwon Yoon's avatar
Jiwon Yoon committed
17
18
19
20
21
            if (user.role === "member") {
                saveUserReservation()
            } else {
                saveGuestReservation()
            }
22
23
24
        }
    }, [user])

Jiwon Yoon's avatar
Jiwon Yoon committed
25
    async function saveGuestReservation() {
26
        try {
Jiwon Yoon's avatar
Jiwon Yoon committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
            const response = await axios.get(`/api/auth/guestinfo/${user.id}`);
            // const response2 = await reservationApi.save({
            //     userType: "guest",
            //     user: user.id,
            //     ...paymentData,
            //     timetableId: 1
            // })
            // if (response.data) {
            //     const responseEmail = await axios.post('/api/email/send', {
            //         reservationData: [...response2.data],
            //         userData: { ...response.data },
            //         cinema: "Butter Studio 조치원",
            //         title: "더 수어사이드 스쿼드",
            //         theater: "1",
            //         time: "2021/07/21 10:00"
            //     })
            //     console.log(responseEmail.data)
            // }
            console.log(response.data)
46
47
48
49
50
        } catch (error) {
            catchErrors(error, setError)
        }
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
51
    async function saveUserReservation() {
52
53
54
55
        try {
            const response = await axios.post(`/api/auth/getuserinfo`, {
                id: user.id
            })
Jiwon Yoon's avatar
Jiwon Yoon committed
56

Jiwon Yoon's avatar
Jiwon Yoon committed
57
58
59
60
61
62
63
64
            // if (response.data) {
            //     const responseEmail = await axios.post('/api/email/send', {
            //         ...response2.data,
            //         ...response.data,

            //     })
            //     console.log(responseEmail.data)
            // }
65
66
67
68
69
        } catch (error) {
            catchErrors(error, setError)
        }
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
70
71
    async function approveKakaopay(tid) {
        try {
Jiwon Yoon's avatar
Jiwon Yoon committed
72
73
74
75
76
77
78
79
80
81
            const urlParams = new URLSearchParams(window.location.search);
            const pg_token = urlParams.get('pg_token');
            const response = await axios.post(`/api/kakaopay/success`, {
                'tid': tid,
                cid: 'TC0ONETIME',
                partner_order_id: 'butter_studio',
                partner_user_id: '000000' + user.id,
                pg_token: pg_token
            })
            setPaymentData(response.data)
Jiwon Yoon's avatar
Jiwon Yoon committed
82
83
84
85
86
        } catch (error) {
            catchErrors(error, setError)
        }
    }

87
88
89
90
    return (
        <div className="text-center">
            <h3>예매가 정상적으로 완료되었습니다.</h3>
            <button>홈으로</button>
Kim, Subin's avatar
Kim, Subin committed
91
            {user.role === "member" ? <button>마이페이지</button> : <></>}
92
93
94
95
96
        </div>
    )
}

export default PaymentCompletePage