SeatTable.js 1.97 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
import styles from './seatTable.module.scss'

Jiwon Yoon's avatar
Jiwon Yoon committed
3
const SeatTable = ({ theaterInfo, count, setSelectedSeats, selectedSeats, reservedSeats }) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
4
    const table = []
Kim, Subin's avatar
Kim, Subin committed
5
    
Jiwon Yoon's avatar
Jiwon Yoon committed
6
7
    if (theaterInfo) {
        for (let rowIndex = 0; rowIndex < theaterInfo.rows; rowIndex++) {
8
            table.push(<span className="me-3" style={{ color: "gray" }}>{String.fromCharCode(rowIndex + 65)}</span>)
Jiwon Yoon's avatar
Jiwon Yoon committed
9
            for (let colIndex = 0; colIndex < theaterInfo.columns; colIndex++) {
10
11
                table.push(
                    <span>
Jiwon Yoon's avatar
Jiwon Yoon committed
12
                        {reservedSeats.find(el => el === String(rowIndex + 1) + '-' + String(colIndex + 1))
13
14
15
                            ?
                            <button className={styles.btnBlock} name={rowIndex + 1} id={colIndex + 1} type="button" disabled>{colIndex + 1}</button>
                            :
Jiwon Yoon's avatar
Jiwon Yoon committed
16
                            <button className={selectedSeats.find(el => el === String(rowIndex + 1) + '-' + String(colIndex + 1)) ? styles.on : styles.btn} name={rowIndex + 1} id={colIndex + 1} type="button" onClick={handleClick}> {colIndex + 1} </button>
17
18
19
20
21
                        }
                    </span>
                )
            }
            table.push(<br />)
Jiwon Yoon's avatar
Jiwon Yoon committed
22
23
24
        }
    }

25

Jiwon Yoon's avatar
Jiwon Yoon committed
26
    function handleClick(event) {
Jiwon Yoon's avatar
Jiwon Yoon committed
27
28
29
30
        const num = Object.values(count).reduce((a, b) => (a + b))
        if (selectedSeats.find(el => el === event.target.name + '-' + event.target.id)) {
            const deleted = selectedSeats.filter((element) => element !== event.target.name + '-' + event.target.id);
            setSelectedSeats(deleted)
Jiwon Yoon's avatar
Jiwon Yoon committed
31
        } else {
Kim, Subin's avatar
Kim, Subin committed
32
33
            if (selectedSeats.length > num - 1) alert("선택한 좌석이 예매인원보다 많습니다.")
            else setSelectedSeats([...selectedSeats, event.target.name + '-' + event.target.id])
Jiwon Yoon's avatar
Jiwon Yoon committed
34
35
        }
    }
Kim, Subin's avatar
Kim, Subin committed
36

Jiwon Yoon's avatar
Jiwon Yoon committed
37
38
39
40
41
42
43
44
45
    return (
        <div className="text-center">
            <div className="mb-2" style={{ backgroundColor: "gray" }}>Screen</div>
            {table}
        </div>
    )
}

export default SeatTable