TicketingSeatPage.js 10.8 KB
Newer Older
1
2
3
import { Link, useHistory } from 'react-router-dom'
import { useState, useEffect, useRef } from 'react'
import { Modal } from 'bootstrap'
Jiwon Yoon's avatar
Jiwon Yoon committed
4
5
import CountButton from '../components/CountButton'
import SeatTable from '../components/SeatTable/SeatTable'
6
7
8
import styles from '../components/SeatTable/seatTable.module.scss'
import axios from 'axios'
import { useAuth } from '../context/auth_context.js'
9
import catchErrors from '../utils/catchErrors'
한규민's avatar
한규민 committed
10
import reservationApi from '../apis/reservation.api.js'
Jiwon Yoon's avatar
Jiwon Yoon committed
11
12

const TicketingSeatPage = ({ location }) => {
13
14
15
16
    const history = useHistory()
    const modalRef = useRef(null)
    const modal = useRef()
    const { user } = useAuth()
17
    const [error, setError] = useState()
Jiwon Yoon's avatar
Jiwon Yoon committed
18
    const [ticketInfo, setTicketInfo] = useState({ ...location.state })
19
    const [theaterInfo, setTheaterInfo] = useState({ theatertypeId: 0 })
Jiwon Yoon's avatar
Jiwon Yoon committed
20
    const [selectedSeats, setSelectedSeats] = useState([])
21
    const [reservedSeats, setReservedSeats] = useState([])
22
23
24
25
26
    const [ticketFee, setTicketFee] = useState({
        youth: 0,
        adult: 0,
        senior: 0
    })
Jiwon Yoon's avatar
Jiwon Yoon committed
27
    const [count, setCount] = useState({
28
        youth: 0,
Jiwon Yoon's avatar
Jiwon Yoon committed
29
        adult: 0,
30
        senior: 0
Jiwon Yoon's avatar
Jiwon Yoon committed
31
    })
Jiwon Yoon's avatar
Jiwon Yoon committed
32

33
34
35
    useEffect(() => {
        getInfo()
    }, [])
36
37
38
    useEffect(() => {
        getTicketFee()
    }, [theaterInfo.theatertypeId])
Jiwon Yoon's avatar
Jiwon Yoon committed
39

40
41
42
    async function getInfo() {
        try {
            const response = await axios.post('/api/theater/getInfo', {
Jiwon Yoon's avatar
Jiwon Yoon committed
43
                theaterName: ticketInfo.selectedTheater
44
45
            })
            setTheaterInfo(response.data)
한규민's avatar
한규민 committed
46
            const response2 = await reservationApi.findReservedSeats({
47
                timetable: 1
한규민's avatar
한규민 committed
48
            });
49
50
            const reserve = response2.data.map((el) =>
                el.row + '-' + el.col
한규민's avatar
한규민 committed
51
52
            );
            setReservedSeats(reserve);
53
        } catch (error) {
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
            catchErrors(error, setError)
        }
    }

    async function getTicketFee() {
        try {
            const response3 = await axios.get(`/api/info/ticketfee`, {
                params: {
                    theaterTypeId: theaterInfo.theatertypeId
                }
            })
            const basicFee = response3.data[0].day + response3.data[0].defaultPrice + response3.data[0].weekdays
            setTicketFee({
                adult: basicFee + response3.data[0].adult,
                youth: basicFee + response3.data[0].youth,
                senior: basicFee + response3.data[0].senior
            })
        } catch (error) {
            catchErrors(error, setError)
73
74
        }
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
75

76
    function loginModal() {
77
        if (user.role === "member") {
78
            history.push("/payment", {
79
                ...ticketInfo, selectedSeats: selectedSeats, ...count, totalFee: count.adult * ticketFee.adult + count.youth * ticketFee.youth + count.senior * ticketFee.senior
80
81
82
83
84
85
            });
        } else {
            modal.current = new Modal(modalRef.current)
            modal.current?.show()
        }
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
86

87
88
    return (
        <>
89
            <div ref={modalRef} className="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabIndex="-1" aria-labelledby="staticBackdropLabel" aria-hidden={modal}>
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
                <div className="modal-dialog">
                    <div className="modal-content">
                        <div className="modal-header">
                            <h5 className="modal-title" id="staticBackdropLabel">로그인이 필요한 서비스입니다.</h5>
                            <button type="button" className="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                        </div>
                        <div className="modal-body">
                            로그인을 하시겠습니까? 비회원예매로 진행하시겠습니까?
                        </div>
                        <div className="modal-footer">
                            <Link to={{ pathname: '/login' }}>
                                <button type="button" className="btn btn-secondary" data-bs-dismiss="modal" >
                                    로그인
                                </button>
                            </Link>
                            <Link to={{
                                pathname: `/payment`,
107
                                state: { ...ticketInfo, selectedSeats: selectedSeats, ...count,totalFee: count.adult * ticketFee.adult + count.youth * ticketFee.youth + count.senior * ticketFee.senior }
108
109
110
111
112
                            }}>
                                <button type="button" className="btn btn-primary" data-bs-dismiss="modal">비회원예매</button>
                            </Link>
                        </div>
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
113
114
                </div>
            </div>
115
            <div className="mx-5 pb-5" style={{ color: "white" }}>
116
                <div className="row justify-content-center my-5">
Jiwon Yoon's avatar
Jiwon Yoon committed
117
                    <div className="col-sm-4">
118
119
                        <h3 className="py-2 text-white text-center" style={{ border: "3px solid #000000", borderBottom: "3px solid #FEDC00" }}>좌석선택</h3>
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
120
                </div>
121
                <div className="row justify-content-center my-3">
Jiwon Yoon's avatar
Jiwon Yoon committed
122
                    <div className="col-sm-4 mb-4">
123
                        <div className="row text-end justify-content-sm-end">
Jiwon Yoon's avatar
Jiwon Yoon committed
124
                            <div className="col-sm-6 me-5" >
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
                                <div>
                                    <span className="my-1">일반</span>
                                    <span>
                                        <CountButton name="adult" count={count} setCount={setCount} />
                                    </span>
                                </div>
                                <div>
                                    <span className="my-1">청소년</span>
                                    <span>
                                        {ticketInfo.adult
                                        ?
                                        <CountButton name="youth" count={count} setCount={setCount} disabled />
                                        :
                                        <CountButton name="youth" count={count} setCount={setCount} />
                                        }
                                    </span>
                                </div>
                                <div>
                                    <span className="my-1">경로우대</span>
                                    <span>
                                        <CountButton name="senior" count={count} setCount={setCount} />
                                    </span>
                                </div>
148
149
150
                            </div>
                        </div>
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
151
                    <div className="col-sm-5 mb-4 p-2 text-center" style={{ backgroundColor: '#252525' }}>
152
153
154
155
                        <div>{ticketInfo.cinema} | {ticketInfo.selectedTheater}</div>
                        <div>{ticketInfo.title}</div>
                        <div>{ticketInfo.time}</div>
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
156
                </div>
157
158
159
160
161
162
163
164
165
166
167
168
169
170
                <div className="row justify-content-center border p-5 ">
                    <div className="col-sm-8">
                        <SeatTable count={count} setSelectedSeats={setSelectedSeats} selectedSeats={selectedSeats} theaterInfo={theaterInfo} reservedSeats={reservedSeats} />
                    </div>
                    <div className="col-sm-4 mt-5">
                        <div>
                            <button className={styles.on} style={{ height: '1rem', width: '1rem' }} disabled></button>
                            <span> 선택됨</span>
                        </div>
                        <div>
                            <button className={styles.btnBlock} style={{ height: '1rem', width: '1rem' }} disabled></button>
                            <span> 선택불가</span>
                        </div>
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
171
                </div>
172
                <div className="row p-3 mt-5" style={{ backgroundColor: "#252525" }}>
173
                    <div className="col-sm-2 mb-1 text-center">
174
                        {ticketInfo
175
                            ? <img style={{ width: "6rem" }} src={`https://image.tmdb.org/t/p/original${ticketInfo.poster_path}`} alt="영화포스터" />
176
177
                            : <div className="mb-2" style={{ color: "white" }}>영화선택</div>}
                    </div>
178
                    <div className="col-sm-4  mb-1" style={{ color: "white" }}>
179
180
181
182
183
                        {ticketInfo
                            ? <ul>
                                <li>영화: {ticketInfo.title}</li>
                                <li>극장: {ticketInfo.cinema}</li>
                                <li>일시: 2021/07/21 10:00 </li>
Jiwon Yoon's avatar
Jiwon Yoon committed
184
                                <li>상영관: {ticketInfo.selectedTheater}</li>
185
                                <li>좌석: {selectedSeats.map(el => String.fromCharCode(parseInt(el.split('-')[0]) + 64) + el.split('-')[1]) + ' '}</li>
186
                            </ul>
187
188
189
                            :
                            <div className="mb-2  text-center">극장선택</div>
                        }
190
                    </div>
191
192
193
194
195
196
197
198
199
200
201
202
203
204
                    <div className="col-sm-4  mb-1">
                        {selectedSeats
                            ?
                            <ul>
                                <li>성인: {count.adult}</li>
                                <li>청소년: {count.youth}</li>
                                <li>경로: {count.senior}</li>
                                <li className="mt-3"> 결제금액: {count.adult * ticketFee.adult + count.youth * ticketFee.youth + count.senior * ticketFee.senior}</li>
                            </ul>
                            : <></>}
                    </div>
                    <div className="col-sm-2 text-center  mb-1">
                        <div className="h5 mb-3">결제하기</div>
                        {selectedSeats.length > 0 && count.adult + count.youth + count.senior === selectedSeats.length
205
206
                            ?
                            <button onClick={loginModal} style={{ backgroundColor: '#252525', border: 0 }} >
207
                                <img className="border border-3 rounded-3" src="/images/icons8-arrow-white.png" style={{ width: "70px" }} alt="결제하기" />
208
209
                            </button>
                            :
210
211
                            <button onClick={() => { alert("좌석을 선택해주세요.") }} style={{ backgroundColor: '#252525', border: 0 }}>
                                <img className="border border-3 rounded-3" src="/images/icons8-arrow-white.png" style={{ width: "70px" }} alt="결제하기" />
212
                            </button>
Jiwon Yoon's avatar
Jiwon Yoon committed
213

214
215
                        }
                    </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
216
217
                </div>
            </div>
218
        </>
Jiwon Yoon's avatar
Jiwon Yoon committed
219
220
221
222
    )
}

export default TicketingSeatPage