Payment.js 14.7 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import axios from 'axios';
Kim, Subin's avatar
Kim, Subin committed
2
import React, { useState, useEffect, useRef } from 'react';
Jiwon Yoon's avatar
Jiwon Yoon committed
3
import DaumPostcode from "react-daum-postcode";
Jiwon Yoon's avatar
Jiwon Yoon committed
4
import { Container, Card, Row, Col, Button, Form, FormGroup } from 'react-bootstrap';
5
import { Redirect, Link, useHistory } from 'react-router-dom';
Jiwon Yoon's avatar
Jiwon Yoon committed
6
7
8
import PaymentCard from '../Components/PaymentCard';
import { isAuthenticated } from '../utils/auth';
import catchErrors from '../utils/catchErrors';
Kim, Subin's avatar
Kim, Subin committed
9

Jiwon Yoon's avatar
Jiwon Yoon committed
10
function Payment({ match, location }) {
Kim, Subin's avatar
Kim, Subin committed
11

Jiwon Yoon's avatar
Jiwon Yoon committed
12
    const [cart, setCart] = useState([])
13
    const [order, setOrder] = useState({ products: [] })
Jiwon Yoon's avatar
Jiwon Yoon committed
14
15
    const [userData, setUserData] = useState({})
    const [error, setError] = useState()
Jiwon Yoon's avatar
Jiwon Yoon committed
16
    const [post, setPost] = useState([])
Jiwon Yoon's avatar
Jiwon Yoon committed
17
18
    const [redirect, setRedirect] = useState(null)
    const [address, setAddress] = useState("")
Jiwon Yoon's avatar
Jiwon Yoon committed
19
    const [finalPrice, setFinalPrice] = useState(0)
Jiwon Yoon's avatar
Jiwon Yoon committed
20
    const [paymentWay, setPaymentWay] = useState([])
Jiwon Yoon's avatar
Jiwon Yoon committed
21
    const [completeState, setCompleteState] = useState(false)
Jiwon Yoon's avatar
Jiwon Yoon committed
22
    const user = isAuthenticated()
23
    let history = useHistory();
Jiwon Yoon's avatar
?    
Jiwon Yoon committed
24
    const preCart = []
Jiwon Yoon's avatar
Jiwon Yoon committed
25
26
27

    useEffect(() => {
        getUser()
Jiwon Yoon's avatar
Jiwon Yoon committed
28
29
30
31
        getCart()
    }, [user])

    useEffect(() => {
Jiwon Yoon's avatar
Jiwon Yoon committed
32
33
34
35
36
        let price = 0
        cart.map((el) => {
            price = Number(el.count) * Number(el.productId.price) + price
        })
        setFinalPrice(price)
Jiwon Yoon's avatar
Jiwon Yoon committed
37
    }, [cart])
Jiwon Yoon's avatar
Jiwon Yoon committed
38
39

    async function getUser() {
40
41
        const name = localStorage.getItem('name')
        const tel = localStorage.getItem('tel')
Jiwon Yoon's avatar
Jiwon Yoon committed
42
        const email = localStorage.getItem('email')
43
        setUserData({ name: name, tel: tel, email: email })
Jiwon Yoon's avatar
Jiwon Yoon committed
44
45
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
46
47
    async function getCart() {
        try {
48
            setError('')
Jiwon Yoon's avatar
Jiwon Yoon committed
49
50
            const response = await axios.get(`/api/cart/showcart/${user}`)
            console.log(response.data)
51
52
            const preCart = response.data.filter((el) => el.checked === true)
            if (preCart.length) {
Jiwon Yoon's avatar
?    
Jiwon Yoon committed
53
                setCart(preCart)
54
                setOrder({ products: preCart })
Jiwon Yoon's avatar
?    
Jiwon Yoon committed
55
            } else {
56
57
                alert("주문하실 상품이 없습니다.")
                history.push("/home")
Jiwon Yoon's avatar
?    
Jiwon Yoon committed
58
            }
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
        } catch (error) {
            catchErrors(error, setError)
        }
    }

    async function deleteOrder(e) {
        try {
            setError('')
            const response = await axios.post('/api/cart/deletecart', {
                userId: user,
                cartId: e.target.name
            })
            console.log(response.data)
            const preCart = response.data.products.filter((el) => el.checked === true)
            setCart(preCart)
74
            setOrder({ products: preCart })
Jiwon Yoon's avatar
Jiwon Yoon committed
75
76
77
78
79
        } catch (error) {
            catchErrors(error, setError)
        }
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
80
81
    function handleReceiverInfo(e) {
        const { name, value } = e.target
Jiwon Yoon's avatar
Jiwon Yoon committed
82
83
        console.log(name, value)
        setOrder({ ...order, receiverInfo: { ...order.receiverInfo, [name]: value } })
Jiwon Yoon's avatar
Jiwon Yoon committed
84
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
85
86
87
88
89
90
91
92

    function postClick() {
        if (post.length !== 0) {
            setPost([])
        }
        else {
            setPost(
                <div>
Jiwon Yoon's avatar
Jiwon Yoon committed
93
                    <DaumPostcode style={postCodeStyle} onComplete={handleComplete} autoClose={true} />
Jiwon Yoon's avatar
Jiwon Yoon committed
94
95
96
97
98
99
100
101
                </div>
            )
        }

    }
    const handleComplete = (data) => {
        let fullAddress = data.address;
        let extraAddress = "";
Jiwon Yoon's avatar
Jiwon Yoon committed
102
        console.log(data)
Jiwon Yoon's avatar
Jiwon Yoon committed
103
104
105
        if (data.addressType === "R") {
            if (data.bname !== "") {
                extraAddress += data.bname;
Jiwon Yoon's avatar
Jiwon Yoon committed
106
                console.log(extraAddress)
Jiwon Yoon's avatar
Jiwon Yoon committed
107
108
109
110
111
112
113
            }
            if (data.buildingName !== "") {
                extraAddress +=
                    extraAddress !== "" ? `, ${data.buildingName}` : data.buildingName;
            }
            fullAddress += extraAddress !== "" ? ` (${extraAddress})` : "";
        }
Jiwon Yoon's avatar
Jiwon Yoon committed
114
        setAddress({ full: fullAddress, code: data.zonecode });
Jiwon Yoon's avatar
Jiwon Yoon committed
115
        setOrder({ ...order, receiverInfo: { ...order.receiverInfo, address: fullAddress, postalCode: data.zonecode } })
Jiwon Yoon's avatar
Jiwon Yoon committed
116
117
118
        console.log(fullAddress);
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
119
    const postCodeStyle = {
Jiwon Yoon's avatar
Jiwon Yoon committed
120
        // display: "block",
Jiwon Yoon's avatar
Jiwon Yoon committed
121
122
123
124
        position: "absolute",
        width: "400px",
        height: "500px",
        padding: "7px",
Jiwon Yoon's avatar
Jiwon Yoon committed
125
        zIndex: "1000"
Jiwon Yoon's avatar
Jiwon Yoon committed
126
    };
127
128
129

    function handleClick() {
        if (paymentWay.length !== 0) {
Jiwon Yoon's avatar
Jiwon Yoon committed
130
            setCompleteState(false)
131
            setPaymentWay([])
Jiwon Yoon's avatar
Jiwon Yoon committed
132
        } else {
133
            const a = (
134
135
                <Row className="justify-content-md-center">
                    <Col md={6} className="border m-5 p-5">
Jiwon Yoon's avatar
Jiwon Yoon committed
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
                        <Form>
                            <Form.Group controlId="exampleForm.ControlSelect1">
                                <Form.Label>입금은행</Form.Label>
                                <Form.Control as="select" placeholder="입금은행을 선택하세요.">
                                    <option>농협 / 352-0559-2528-83 / 김수빈</option>
                                    <option>우리은행 / 0000-000-000000 / 이재연</option>
                                    <option>국민은행 / 111111-11-111111 / 윤대기</option>
                                </Form.Control>
                            </Form.Group>
                            <Form.Group controlId="formName">
                                <Form.Label>입금자</Form.Label>
                                <Form.Control type="email" placeholder="윤지원" />
                            </Form.Group>
                            <Form.Group controlId="formDay">
                                <Form.Label>입금예정일</Form.Label>
                                <Form.Control type="date" />
                            </Form.Group>
                        </Form>
154
                    </Col>
Jiwon Yoon's avatar
Jiwon Yoon committed
155

156
                </Row>)
157
158
159
160
            setPaymentWay(a)
        }
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
161
    async function kakaopay() {
Jiwon Yoon's avatar
Jiwon Yoon committed
162
163
164
165
166
167
168
169
170

        setCompleteState("kakaopay")
        setPaymentWay(
            <div className="text-center">
                <p className=" font-weight-bold" style={{ display: 'inline' }}>'카카오페이'</p><p style={{ display: 'inline' }}>를 선택하셨습니다. </p>
                <p>주문하기를 눌러 결제를 이어가주세요.</p>
            </div>
        )
        // window.location.href = data.redirect_url
Jiwon Yoon's avatar
Jiwon Yoon committed
171
172
        // setRedirect(data.redirect_url)
    }
173

Jiwon Yoon's avatar
Jiwon Yoon committed
174
    async function paymentCompleted() {
Jiwon Yoon's avatar
Jiwon Yoon committed
175
        console.log(order)
176
177
178
179
        const cartIds = []
        order.products.map((el) => {
            cartIds.push(el._id)
        })
Jiwon Yoon's avatar
Jiwon Yoon committed
180
        try {
181
            setError('')
Jiwon Yoon's avatar
Jiwon Yoon committed
182
            const response = await axios.post(`/api/order/addorder`, {
Jiwon Yoon's avatar
Jiwon Yoon committed
183
                userId: user,
Jiwon Yoon's avatar
Jiwon Yoon committed
184
                ...order,
Jiwon Yoon's avatar
Jiwon Yoon committed
185
                total: finalPrice + 2500
Jiwon Yoon's avatar
Jiwon Yoon committed
186
            })
187
188
189
190
191
192
193
            const response2 = await axios.post(`/api/cart/deletecart2`, {
                userId: user,
                cartId: cartIds
            })
            const response3 = await axios.post(`/api/product/pluspurchase`, {
                products: order.products
            })
Jiwon Yoon's avatar
Jiwon Yoon committed
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
            if (completeState === "kakaopay") {
                let itemNames = ""
                if (cart.length > 1) {
                    itemNames = cart[0].productId.pro_name + '' + String(cart.length - 1) + ''
                } else {
                    itemNames = cart[0].productId.pro_name
                }
                const response = await fetch('/api/kakaopay/test/single', {
                    method: "POST",
                    headers: {
                        'Content-type': 'application/json'
                    },
                    body: JSON.stringify({
                        cid: 'TC0ONETIME',
                        partner_order_id: 'partner_order_id',
                        partner_user_id: user,
                        item_name: itemNames,
                        quantity: cart.length,
                        total_amount: finalPrice + 2500,
                        vat_amount: 200,
                        tax_free_amount: 0,
                        approval_url: 'http://localhost:3000/paymentcompleted',
                        fail_url: 'http://localhost:3000/shoppingcart',
                        cancel_url: 'http://localhost:3000/shoppingcart',
                    })
                })
                const data = await response.json()
                window.location.href = data.redirect_url
            } else {
                console.log(response.data)
                console.log(response2.data)
                console.log(response3.data)
                alert("주문이 완료되었습니다.")
                history.push('/paymentcompleted')
            }
Jiwon Yoon's avatar
Jiwon Yoon committed
229
230
        } catch (error) {
            catchErrors(error, setError)
231
            alert("주문에 실패하셨습니다. 다시 확인해주세요.")
232
233
        }
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
234

Kim, Subin's avatar
Kim, Subin committed
235
236
    return (
        <div>
237
            {/* {console.log(completeState)} */}
238
            <Container>
Jiwon Yoon's avatar
Jiwon Yoon committed
239
                <h3 className="my-5 font-weight-bold text-center">주문/결제</h3>
240
                <div>
Jiwon Yoon's avatar
Jiwon Yoon committed
241
                    <h5 className="font-weight-bold py-3 border-top border-bottom text-center" style={{ background: '#F7F3F3' }}>주문자 정보</h5>
242
243
244
245
246
                    <Row className="justify-content-md-center">
                        <Col md={4}>
                            <Form>
                                <Form.Group controlId="formBasicName">
                                    <Form.Label>이름</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
247
                                    <Form.Control type="text" value={userData.name} readOnly />
248
249
250
                                </Form.Group>
                                <Form.Group controlId="formBasicTel">
                                    <Form.Label>휴대전화</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
251
252
253
254
                                    <Form.Control type="tel" value={userData.tel} readOnly />
                                </Form.Group>
                                <Form.Group controlId="formBasicEmail">
                                    <Form.Label>이메일</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
255
                                    <Form.Control type="email" value={userData.email} readOnly />
256
257
258
259
                                </Form.Group>
                            </Form>
                        </Col>
                    </Row>
260
261
262
                </div>

                <div>
Jiwon Yoon's avatar
Jiwon Yoon committed
263
264
265
266
267
268
                    <h5 className="font-weight-bold py-3 border-top border-bottom text-center" style={{ background: '#F7F3F3' }}>받는사람 정보</h5>
                    <Row className="justify-content-center">
                        <Col md={8}>
                            <Form>
                                <Form.Group>
                                    <Form.Label>이름</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
269
270
271
272
273
                                    <Form.Control type="text" name="name" onChange={handleReceiverInfo}></Form.Control>
                                </Form.Group>
                                <Form.Group>
                                    <Form.Label>휴대전화</Form.Label>
                                    <Form.Control type="text" name="tel" onChange={handleReceiverInfo}></Form.Control>
Jiwon Yoon's avatar
Jiwon Yoon committed
274
275
276
277
278
                                </Form.Group>
                                <Form.Group controlId="formBasicAdd">
                                    <Form.Label>주소</Form.Label>
                                    <Form.Row>
                                        <Col xs={4} sm={4}>
Jiwon Yoon's avatar
Jiwon Yoon committed
279
                                            <Form.Control type="text" name="postalCode" id="add" onChange={handleReceiverInfo} value={address.code} disabled={(address.code == null) ? false : true} placeholder="우편번호" required ></Form.Control>
Jiwon Yoon's avatar
Jiwon Yoon committed
280
281
282
283
284
285
286
287
                                        </Col>
                                        <Col >
                                            <Button style={{ background: '#91877F', borderColor: '#91877F' }} className="mx-1" onClick={postClick}>우편번호</Button>
                                            {post}
                                        </Col>
                                    </Form.Row>
                                    <Form.Row>
                                        <Col>
Jiwon Yoon's avatar
Jiwon Yoon committed
288
289
                                            <Form.Control type="text" name="address" id="add1" onChange={handleReceiverInfo} value={address.full} disabled={(address.code == null) ? false : true} placeholder="주소" required></Form.Control>
                                            <Form.Control type="text" name="address2" id="add2" onChange={handleReceiverInfo} placeholder="상세주소" required></Form.Control>
Jiwon Yoon's avatar
Jiwon Yoon committed
290
291
292
293
294
                                            <Form.Control.Feedback type="invalid" > 상세 주소를 입력하세요. </Form.Control.Feedback>
                                        </Col>
                                    </Form.Row>
                                </Form.Group>
                            </Form>
Jiwon Yoon's avatar
Jiwon Yoon committed
295
296
                        </Col>
                    </Row>
297
298
                </div>
                <div>
Jiwon Yoon's avatar
Jiwon Yoon committed
299
                    <h5 className="font-weight-bold py-3 border-top border-bottom text-center" style={{ background: '#F7F3F3' }}>주문상품정보</h5>
300
                    <PaymentCard cart={cart} deleteOrder={deleteOrder} />
301
302
                </div>

Jiwon Yoon's avatar
Jiwon Yoon committed
303
                <div className="p-5 m-3" style={{ background: '#F7F3F3' }}>
304
305
306
                    <ul className="pl-0" style={{ listStyle: 'none' }}>
                        <li>
                            <span className="text-secondary"> 상품금액</span>
Jiwon Yoon's avatar
Jiwon Yoon committed
307
                            <span className="text-secondary float-right">{finalPrice}</span>
308
309
310
                        </li>
                        <li>
                            <span className="text-secondary">배송비</span>
Jiwon Yoon's avatar
Jiwon Yoon committed
311
                            <span className="text-secondary float-right">2500</span>
312
313
314
                        </li>
                    </ul>
                    <div className="my-1 pt-2 border-top font-weight-bold">
Jiwon Yoon's avatar
Jiwon Yoon committed
315
                        결제금액<span className="float-right">{finalPrice + 2500}</span>
316
317
318
                    </div>
                </div>
                <div>
Jiwon Yoon's avatar
Jiwon Yoon committed
319
                    <h5 className="font-weight-bold py-3 border-top border-bottom text-center" style={{ background: '#F7F3F3' }}>결제수단</h5>
320
                    <div className="text-center m-3">
Jiwon Yoon's avatar
Jiwon Yoon committed
321
322
                        <Button className="align-top m-1" variant="success" onClick={handleClick} style={{ height: '42px' }}>무통장입금</Button>
                        <Button className="align-top m-1 p-0" style={{ borderColor: "#ffeb00" }} type="button" onClick={kakaopay} alt="카카오페이"><img src="icon/payment_icon_yellow_small2.png" /></Button>
323
324
                    </div>
                    {paymentWay}
Jiwon Yoon's avatar
Jiwon Yoon committed
325
326
                </div>
                <div className="text-center">
Jiwon Yoon's avatar
Jiwon Yoon committed
327
                    <Button type="button" onClick={paymentCompleted} className="px-5" style={{ background: "#91877F", borderColor: '#91877F' }} block>결제완료</Button>
328
329
                </div>
            </Container>
Kim, Subin's avatar
Kim, Subin committed
330
331
332
333
334
        </div>
    )
}

export default Payment