Product.js 13.6 KB
Newer Older
kusang96's avatar
kusang96 committed
1
import React, { useState, useEffect, useRef } from 'react';
Jiwon Yoon's avatar
Jiwon Yoon committed
2
import { Redirect, useHistory } from 'react-router-dom';
3
import axios from 'axios';
4
import catchErrors from '../utils/catchErrors';
5
import { Row, Col, Form, Card, Button, Modal, Image } from 'react-bootstrap';
kusang96's avatar
kusang96 committed
6
7


8
function Product({ match, location }) {
kusang96's avatar
0115    
kusang96 committed
9
    const [product, setProduct] = useState(location.state)
Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
12
    const [color, setColor] = useState("")
    const [size, setSize] = useState("")
    const [cart, setCart] = useState([])
13
    const [error, setError] = useState('')
14
    const [selected, setSelected] = useState({ sizes: false, colors: false })
Jiwon Yoon's avatar
Jiwon Yoon committed
15
    const [count, setCount] = useState(1)
Jiwon Yoon's avatar
0113    
Jiwon Yoon committed
16
    const [price, setPrice] = useState(0)
Jiwon Yoon's avatar
Jiwon Yoon committed
17
18
19
20
    const [show, setShow] = useState(false);
    let history = useHistory();
    const handleClose = () => setShow(false);
    const handleShow = () => setShow(true);
박상호's avatar
css    
박상호 committed
21

Jiwon Yoon's avatar
Jiwon Yoon committed
22

23
    useEffect(() => {
Jiwon Yoon's avatar
Jiwon Yoon committed
24
        if (size && color) {
25
            pushOptions()
Jiwon Yoon's avatar
Jiwon Yoon committed
26
            // console.log(cart)
Jiwon Yoon's avatar
Jiwon Yoon committed
27
        }
Jiwon Yoon's avatar
Jiwon Yoon committed
28
    }, [size, color])
kusang96's avatar
kusang96 committed
29
30
31
32
33
34

    function handleClick(e) {
        const box = e.target.parentNode.parentNode
        box.style.display = "none"
    }

35
    function pushOptions() {
Jiwon Yoon's avatar
Jiwon Yoon committed
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
        // console.log(cart)
        const a = cart.map(el => {
            const rObj = {}
            rObj["color"] = el.color;
            rObj["size"] = el.size;
            return rObj
        })
        const isDuplicated = a.some(el => el.color === color && el.size === size)
        if (isDuplicated) {
            selected.sizes = false
            selected.colors = false
            setColor("")
            setSize("")
            alert("이미 선택한 옵션입니다.")
        } else {
            selected.sizes = false
            selected.colors = false
53
            setCart([...cart, { color, size, productId: product.id, count: 1, checked: false }])
Jiwon Yoon's avatar
Jiwon Yoon committed
54
55
56
57
58
            setColor("")
            setSize("")
            setPrice(product.price + price)
        }

59
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
60

kusang96's avatar
kusang96 committed
61
62
    function handleChange(e) {
        const { name, value } = e.target
Jiwon Yoon's avatar
Jiwon Yoon committed
63
64
        if (name === "sizes") {
            setSize(value)
65
            selected.sizes = true
Jiwon Yoon's avatar
Jiwon Yoon committed
66
67
        } else if (name === "colors") {
            setColor(value)
68
69
            selected.colors = true
        }
kusang96's avatar
kusang96 committed
70
71
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
72
    function deleteOption(e) {
kusang96's avatar
kusang96 committed
73
        e.preventDefault()
74
        let preprice = 0
Jiwon Yoon's avatar
Jiwon Yoon committed
75
        const asd = cart.filter((el) => el.color !== e.target.id || el.size !== e.target.name)
박상호's avatar
박상호 committed
76
77
        asd.map((el) => {
            preprice = preprice + el.count * product.price
78
        })
Jiwon Yoon's avatar
Jiwon Yoon committed
79
        setCart(asd)
80
        setPrice(Number(preprice))
kusang96's avatar
kusang96 committed
81
82
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
83
    function handleCount(e) {
84
85
86
        const addCount = cart.map((el) => {
            if (el.color !== e.target.id || el.size !== e.target.name) {
                return { ...el }
Jiwon Yoon's avatar
Jiwon Yoon committed
87
            } else {
88
                return { ...el, count: e.target.value }
Jiwon Yoon's avatar
Jiwon Yoon committed
89
90
            }
        })
91
        let preprice = 0
박상호's avatar
박상호 committed
92
93
        addCount.map((el) => {
            preprice = preprice + el.count * product.price
94
95
        })
        setPrice(Number(preprice))
Jiwon Yoon's avatar
Jiwon Yoon committed
96
        setCart(addCount)
Jiwon Yoon's avatar
Jiwon Yoon committed
97
        setCount(e.value)
kusang96's avatar
kusang96 committed
98
99
    }

Jiwon Yoon's avatar
Jiwon Yoon committed
100
    async function addCart(event) {
Jiwon Yoon's avatar
Jiwon Yoon committed
101
        console.log(cart)
Jiwon Yoon's avatar
Jiwon Yoon committed
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
        if (cart.length < 1) {
            alert("옵션을 선택해주세요")
        }
        else if (localStorage.getItem('id')) {
            if (event.target.name === "shoppingcart") {
                // preCart(color, size, count), productId(productlist에서 props), userId(로컬) 를 보내줌
                try {
                    setError('')
                    const response = await axios.put('/api/cart/addcart', {
                        userId: localStorage.getItem('id'),
                        products: cart
                    })
                    console.log(response.data)
                    setShow(true)
                } catch (error) {
                    catchErrors(error, setError)
                }
            } else {
                try {
                    setError('')
122
                    cart.map((el) => {
123
124
                        el.checked = true
                    })
Jiwon Yoon's avatar
Jiwon Yoon committed
125
126
127
128
129
130
131
132
133
                    const response = await axios.put('/api/cart/addcart', {
                        userId: localStorage.getItem('id'),
                        products: cart
                    })
                    console.log(response.data)
                    history.push("/payment")
                } catch (error) {
                    catchErrors(error, setError)
                }
Jiwon Yoon's avatar
Jiwon Yoon committed
134
            }
Jiwon Yoon's avatar
Jiwon Yoon committed
135

Jiwon Yoon's avatar
Jiwon Yoon committed
136
137
138
        } else {
            alert("로그인을 해주세요.")
            return <Redirect to='/login' />
139
140
141
        }
    }

kusang96's avatar
kusang96 committed
142
143
144
145
146

    return (
        <div>
            <style type="text/css">
                {`
박상호's avatar
css    
박상호 committed
147
148
149
150
151
152
153
154
155
                @font-face {
                    font-family: 'Jal_Onuel';
                    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/Jal_Onuel.woff') format('woff');
                    font-weight: normal;
                    font-style: normal;
                }
                body{font-family:'Jal_Onuel'}

                
kusang96's avatar
kusang96 committed
156
157
158
159
160
161
162
163
164
                .btn {
                    background-color: #CDC5C2;
                    border-color: #CDC5C2;
                }

                .btn:hover, .btn:active, .btn:focus {
                    background-color: #91877F;
                    border-color: #91877F;
                }
박상호's avatar
css    
박상호 committed
165
               
kusang96's avatar
kusang96 committed
166
167
                `}
            </style>
168
169
170
171
172
173
174
175
176
177
            <Modal show={show} onHide={handleClose}>
                <Modal.Header closeButton>
                    <Modal.Title>장바구니에 상품담기</Modal.Title>
                </Modal.Header>
                <Modal.Body>정상적으로 장바구니에 상품을 담았습니다.</Modal.Body>
                <Modal.Footer>
                    <Button variant="secondary" onClick={handleClose}>쇼핑계속하기</Button>
                    <Button variant="primary" href='/shoppingcart'>장바구니로 이동</Button>
                </Modal.Footer>
            </Modal>
kusang96's avatar
kusang96 committed
178
179
            <Row className="justify-content-center mt-5 mx-0">
                <Col sm={11} md={4}>
박상호's avatar
css    
박상호 committed
180
                    <img src={`/images/${product.main_img}`} style={{ objectFit: "contain", maxWidth: "100%", height: 'auto' }} />
kusang96's avatar
kusang96 committed
181
182
                </Col>
                <Col sm={11} md={4} className="align-middle mt-4">
kusang96's avatar
0115    
kusang96 committed
183
184
                    <h3 className="mb-4">{product.name}</h3>
                    <h5 className="mb-4">가격 : {product.price}</h5>
kusang96's avatar
kusang96 committed
185
186
187
                    <Form style={{ borderBottom: "1px solid" }}>
                        <Form.Group style={{ borderBottom: "1px solid", paddingBottom: "2rem" }}>
                            <Form.Label>색상</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
188
                            <Form.Control as="select" className="mb-2" name="colors" value={color} defaultValue="옵션 선택" onChange={handleChange}>
kusang96's avatar
kusang96 committed
189
                                <option>옵션선택</option>
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
190
191
192
                                {product.colors.map((e) => (
                                    <option>{e}</option>
                                ))}
kusang96's avatar
kusang96 committed
193
194
                            </Form.Control>
                            <Form.Label>사이즈</Form.Label>
Jiwon Yoon's avatar
Jiwon Yoon committed
195
                            <Form.Control as="select" className="mb-2" name="sizes" value={size} defaultValue="옵션 선택" onChange={handleChange}>
kusang96's avatar
kusang96 committed
196
                                <option>옵션선택</option>
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
197
198
199
                                {product.sizes.map((e) => (
                                    <option>{e}</option>
                                ))}
kusang96's avatar
kusang96 committed
200
201
                            </Form.Control>
                        </Form.Group>
Jiwon Yoon's avatar
Jiwon Yoon committed
202
                        {cart.map((e) => (
203
204
205
                            <Row className="mx-1">
                                <Col xs={6}>{e.color}/{e.size}</Col>
                                <Col xs={4} className="text-right" >
Jiwon Yoon's avatar
Jiwon Yoon committed
206
                                    <input type='number' id={e.color} name={e.size} onChange={handleCount} value={count} style={{ width: '3rem' }} className="text-center" />
207
208
209
210
211
                                </Col>
                                <Col xs={2} className="text-right">
                                    <input onClick={deleteOption} id={e.color} name={e.size} type="image" alt="삭제버튼" src="https://img.icons8.com/fluent-systems-regular/24/000000/close-window.png" className="align-middle" />
                                </Col>
                            </Row>
Jiwon Yoon's avatar
Jiwon Yoon committed
212

213
                        ))}
kusang96's avatar
kusang96 committed
214
215
                        <Row className="justify-content-between mx-0 my-3" style={{ width: "100%" }}>
                            <Col> 금액</Col>
Jiwon Yoon's avatar
0113    
Jiwon Yoon committed
216
                            <Col className="text-right">{price}</Col>
kusang96's avatar
kusang96 committed
217
218
                        </Row>
                        <Row className="justify-content-between mx-0 my-3" style={{ width: "100%" }}>
Jiwon Yoon's avatar
Jiwon Yoon committed
219
220
                            <Button type='button' name="shoppingcart" onClick={addCart} style={{ width: "49%" }}>장바구니</Button>
                            <Button type='button' name="payment" onClick={addCart} style={{ width: "49%" }}>구매하기</Button>
kusang96's avatar
kusang96 committed
221
222
223
224
225
226
                        </Row>
                    </Form>
                </Col>
            </Row>
            <Row className="justify-content-center mt-5 mx-0">
                <Col sm={11} md={8}>
박상호's avatar
박상호 committed
227
228
229
                    <h3 style={{ borderBottom: "1px solid #91877F", paddingBottom: "5px", marginBottom: "1em" }} className="p-3">
                        설명
                        </h3>
박상호's avatar
css    
박상호 committed
230
231
                    <Col className='text-center'>
                        <div className='p-2 text-center border' style={{ background: '#CDC5C2', width: '60%', margin: 'auto', fontSize: '3.5vmin' }} >
박상호's avatar
0126    
박상호 committed
232
233
                            {product.name}
                        </div>
박상호's avatar
css    
박상호 committed
234
                        <Image src={`/images/${product.main_img}`} className='d-flex justify-content-center p-4' style={{ objectFit: "contain", maxWidth: "100%", height: 'auto', margin: 'auto' }} />
박상호's avatar
0126    
박상호 committed
235

박상호's avatar
박상호 committed
236
                        <Card style={{ width: '80%', margin: 'auto' }} className='my-4' >
박상호's avatar
0126    
박상호 committed
237
238
239
                            <Card.Header className='text-center' style={{ background: '#CDC5C2' }}>
                                <h5 className='m-0' style={{ whiteSpace: 'nowrap' }}> [ Description ]</h5>
                            </Card.Header>
박상호's avatar
css    
박상호 committed
240
241
                            <Card.Body className='text-center m-2' style={{ whiteSpace: "pre-line", background: '#F7F3F3', fontSize: '1.2vw' }}>
                                {product.description}
박상호's avatar
0126    
박상호 committed
242
243
244
                            </Card.Body>
                        </Card>
                        <Col className='p-5'>
박상호's avatar
css    
박상호 committed
245
246
                            <div className='border p-2' style={{ maxWidth: "100%", height: 'auto', margin: 'auto', fontSize: '3.5vmin' }}>[ Detail Images ]</div>
                            <Image src={`/images/${product.detail_imgs}`} style={{ objectFit: "contain", maxWidth: "100%", height: 'auto', margin: 'auto' }} className='p-4 d-flex justify-content-center' />
박상호's avatar
0126    
박상호 committed
247
248

                        </Col>
박상호's avatar
박상호 committed
249
                    </Col>
kusang96's avatar
kusang96 committed
250
251
252
253
254
                </Col>
            </Row>
            <Row className="justify-content-center mx-0 pt-3 px-2" style={{ position: "fixed", bottom: "0", width: "100%", backgroundColor: "#fff" }}>
                <Col sm={12} md={9}>
                    <h6 style={{ borderBottom: "1px solid", paddingBottom: "5px", marginBottom: "1em" }}>회원님이 선호할만한 상품 추천
박상호's avatar
0120    
박상호 committed
255
                        <a className="close float-right" onClick={(e) => handleClick(e)} style={{ fontSize: "1rem", cursor: "pointer" }}>X</a>
kusang96's avatar
kusang96 committed
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
                    </h6>
                    <Row className="justify-content-space mx-0" style={{ flexWrap: "nowrap", width: "100%", overflowX: "auto" }}>
                        <Col as={Card} style={{ minWidth: "10rem", marginRight: "1rem" }}>
                            <Card.Img variant="top" src="https://img.sonyunara.com/files/goods/67504/1607328307_0.jpg" style={{ objectFit: "contain" }} />
                            <Card.Body className="px-0">
                                <Card.Title>클로타탄원피스</Card.Title>
                                <Card.Text>구매자 : 30</Card.Text>
                            </Card.Body>
                        </Col>
                        <Col as={Card} style={{ minWidth: "10rem", marginRight: "1rem" }}>
                            <Card.Img variant="top" src="https://img.sonyunara.com/files/goods/67504/1607328307_0.jpg" style={{ objectFit: "contain" }} />
                            <Card.Body className="px-0">
                                <Card.Title>클로타탄원피스</Card.Title>
                                <Card.Text>구매자 : 30</Card.Text>
                            </Card.Body>
                        </Col>
                        <Col as={Card} style={{ minWidth: "10rem", marginRight: "1rem" }}>
                            <Card.Img variant="top" src="https://img.sonyunara.com/files/goods/67504/1607328307_0.jpg" style={{ objectFit: "contain" }} />
                            <Card.Body className="px-0">
                                <Card.Title>클로타탄원피스</Card.Title>
                                <Card.Text>구매자 : 30</Card.Text>
                            </Card.Body>
                        </Col>
                        <Col as={Card} style={{ minWidth: "10rem", marginRight: "1rem" }}>
                            <Card.Img variant="top" src="https://img.sonyunara.com/files/goods/67504/1607328307_0.jpg" style={{ objectFit: "contain" }} />
                            <Card.Body className="px-0">
                                <Card.Title>클로타탄원피스</Card.Title>
                                <Card.Text>구매자 : 30</Card.Text>
                            </Card.Body>
                        </Col>
                    </Row>
                </Col>
            </Row>
        </div>
    )
}

export default Product