LeftHamburger.js 8.92 KB
Newer Older
이재연's avatar
이재연 committed
1
import ChannelSingle from "./ChannelSingle";
이재연's avatar
이재연 committed
2
3
import catchErrors from "../../context/catchError";
import roomApi from "../../apis/room.api";
4
5
import { useState, useEffect } from "react";
import { useParams } from "react-router-dom";
이재연's avatar
이재연 committed
6
7
8
9
10
11
12
13

const userId = localStorage.getItem('user');
const INIT_ROOM = {
    name: '',
    owner: userId,
    member: userId,
    profileimg: '',
}
우지원's avatar
0712    
우지원 committed
14

15
16
17
18
19
const INIT_CHANNEL = {
    channelName: "",
    joinName: [],
};

우지원's avatar
0712    
우지원 committed
20
const LeftHamberger = () => {
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
    const [channel, setChannel] = useState([INIT_CHANNEL]);
    const { roomId } = useParams();
    const [error, setError] = useState("");

    async function getChannel(roomId) {
        console.log('roomId', roomId)
        const ID = roomId
        try {
            const data = await roomApi.getRoom([ID]);
            const Channel = data[0].channel
            console.log('방데이터:', Channel[0])
            const channelList = [];
            for (const prop in Channel) { // Channel의 항목(prop)으로 작업을 실행합니다
                for (const key in Channel[prop]) {
                    console.log(key)
                    console.log(prop)
                    console.log(Channel[prop][key])
                    channelList.push({
                        channelName: key,
                        joinName: Channel[prop][key]
                    });
                }
            }
            setChannel(channelList);
        } catch (error) {
            catchErrors(error, setError);
        }
    }
    console.log(channel)

    useEffect(() => {
        console.log('roomId', roomId)
        getChannel(roomId);
    }, [roomId]);
이재연's avatar
이재연 committed
55

우지원's avatar
우지원 committed
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
    function roomIdCopy() {
        const t = document.querySelector("#roomId").innerText;
        console.log(t);
        navigator.clipboard.writeText(t);
        document.execCommand("copy");
    }
    return (
        <div>
            <div>
                <button
                    className="navbar-toggler"
                    type="button"
                    data-bs-toggle="offcanvas"
                    data-bs-target="#left-hamburger"
                    aria-controls="left-hamburger"
                    aria-expanded="false"
                    aria-label="Toggle navigation"
                    style={{ border: "#f4c1f2" }}
                >
                    <span className="navbar-toggler-icon"></span>
                </button>
이재연's avatar
이재연 committed
77
            </div>
우지원's avatar
e    
우지원 committed
78

우지원's avatar
0712    
우지원 committed
79
            <div
우지원's avatar
우지원 committed
80
81
82
83
84
                className="offcanvas offcanvas-start"
                style={{ width: "330px" }}
                tabIndex="-1"
                id="left-hamburger"
                aria-labelledby="hamburgerLabel"
우지원's avatar
0712    
우지원 committed
85
            >
우지원's avatar
우지원 committed
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
                <div className="offcanvas-header">
                    <p
                        className="col-6 offcanvas-title"
                        id="offcanvasExampleLabel"
                        style={{
                            fontWeight: "bold",
                            fontSize: "15px",
                            width: "150px",
                            color: "#000000",
                        }}
                    >
                        /오프라인 사용자
                    </p>
                    <h6 className="mt-2" id="roomId">
                        {" "}
이재연's avatar
이재연 committed
101
                        {" "}
우지원's avatar
우지원 committed
102
                    </h6>
우지원's avatar
0712    
우지원 committed
103
                    <button
우지원's avatar
우지원 committed
104
105
106
107
                        type="button"
                        className="btn-close text-reset"
                        data-bs-dismiss="offcanvas"
                        aria-label="Close"
우지원's avatar
0712    
우지원 committed
108
                    ></button>
우지원's avatar
우지원 committed
109
110
111
112
113
114
                </div>
                <div className="overflow-auto" style={{ height: "610px" }}>
                    <div className="mb-3">
                        <div className="m-3 p-1 row" style={{ backgroundColor: "#E0CEE8" }}>
                            <h5 className="col mt-2">온라인 사용자</h5>
                        </div>
115
116
117
118
119
120
121
122
123
124
125
                        {channel.map((el) => (
                            <div>
                                {el.joinName && el.joinName.map((e) => (
                                        <ul className="mx-5" style={{ color: "#76D079" }}>
                                            <li>
                                                <p style={{ color: "black" }}>{e}</p>
                                            </li>
                                        </ul>
                                    ))}
                            </div>
                        ))}
우지원's avatar
우지원 committed
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
                    </div>

                    <div className="mb-3">
                        <div className="m-3 p-1 row" style={{ backgroundColor: "#E0CEE8" }}>
                            <h5 className="col mt-2">오프라인 사용자</h5>
                        </div>
                        <ul className="mx-5">
                            <li>CHERRY</li>
                            <li>JAEYEON</li>
                            <li>SEOYEON</li>
                            <li>JIWEON</li>
                            <li>BYOUNGYUN</li>
                        </ul>
                    </div>
                </div>

                <div>
                    <div className="d-flex flex-row-reverse">
                        <button
                            type="button"
                            className="m-3 rounded"
                            data-bs-toggle="modal"
                            data-bs-target="#inviteRoom"
                            style={{
                                height: "30px",
                                fontWeight: "bold",
                                backgroundColor: "#E0CEE8",
                                color: "black",
                                border: "1px #D64D61",
                            }}
                        >
                            초대
                        </button>
                        <div
                            className="modal fade"
                            id="inviteRoom"
                            tabIndex="-1"
                            aria-labelledby="exitRoomLabel"
                            aria-hidden="true"
                        >
                            <div className="modal-dialog">
                                <div className="modal-content">
                                    <div className="modal-header">
                                        <button
                                            type="button"
                                            className="btn-close"
                                            data-bs-dismiss="modal"
                                            aria-label="Close"
                                        ></button>
                                    </div>
                                    <div className="modal-body d-flex justify-content-center">
                                        어떤 방식으로 초대하시겠습니까?
                                    </div>
                                    <div className="row mb-3">
                                        <div className="d-flex justify-content-evenly">
                                            <button
                                                type="submit"
                                                className="col-2 p-1 btn btn-primary"
                                                style={{ width: "120px" }}
                                            >
                                                카카오로 초대
                                            </button>
                                            {/*
                                            <button
                                                type="submit"
                                                className="col-2 p-1 btn btn-primary"
                                                data-bs-toggle="modal"
                                                data-bs-target="#copyRoomId"
                                                onClick={roomIdCopy}
                                                style={{ width: "120px" }}
                                            >
                                                방 Id 복사
</button> */}
                                            <button
                                                type="submit"
                                                className="col-2 p-1 btn btn-primary"
                                                data-bs-dismiss="modal"
                                                style={{ width: "120px" }}
                                                onClick={roomIdCopy}
                                            >
                                                 Id 복사
                                            </button>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
우지원's avatar
e    
우지원 committed
213
214
                    </div>
                </div>
우지원's avatar
0712    
우지원 committed
215
            </div>
이재연's avatar
이재연 committed
216
        </div>
우지원's avatar
우지원 committed
217
    );
이재연's avatar
이재연 committed
218
};
우지원's avatar
0712    
우지원 committed
219

이재연's avatar
이재연 committed
220
export default LeftHamberger;