RightHamburger.js 11.6 KB
Newer Older
권병윤's avatar
0806    
권병윤 committed
1
import React, { useState, useEffect } from "react";
우지원's avatar
우지원 committed
2
import { Link, useParams } from "react-router-dom";
Kim, Chaerin's avatar
Kim, Chaerin committed
3
4
import ChannelSingle from "./ChannelSingle";
import catchErrors from "../../context/catchError";
권병윤's avatar
0806    
권병윤 committed
5
6
import KakaoShareButton from "../KakaoShareButton";
import Roomnamechange from "./Roomnamechange";
이재연's avatar
이재연 committed
7
8
import userApi from "../../apis/user.api";
import roomApi from "../../apis/room.api";
우지원's avatar
0712    
우지원 committed
9

이재연's avatar
aaaa    
이재연 committed
10
const INIT_ROOM = {
이재연's avatar
이재연 committed
11
  name: "",
권병윤's avatar
0806    
권병윤 committed
12
  owner: "",
이재연's avatar
이재연 committed
13
};
이재연's avatar
aaaa    
이재연 committed
14

Kim, Chaerin's avatar
Kim, Chaerin committed
15
const INIT_CHANNEL = {
이재연's avatar
이재연 committed
16
  channelName: "",
17
  joinUser: [],
Kim, Chaerin's avatar
Kim, Chaerin committed
18
19
};
const RightHamburger = () => {
이재연's avatar
이재연 committed
20
21
22
23
  const [channel, setChannel] = useState([INIT_CHANNEL]);
  const [room, setRoom] = useState([INIT_ROOM]);
  const { roomId } = useParams();
  const [error, setError] = useState("");
우지원's avatar
0809    
우지원 committed
24
  const id = sessionStorage.getItem("user");
우지원's avatar
우지원 committed
25

이재연's avatar
이재연 committed
26
27
  async function getRoom(roomId) {
    try {
28
      const data = await roomApi.getRoom([roomId]);
권병윤's avatar
0806    
권병윤 committed
29
30
31
32
33
34
      const roomdata = [];
      roomdata.push({
        name: data[0].name,
        owner: data[0].owner,
      });
      setRoom(roomdata);
이재연's avatar
이재연 committed
35
36
37
38
    } catch (error) {
      catchErrors(error, setError);
    }
  }
Kim, Chaerin's avatar
Kim, Chaerin committed
39

이재연's avatar
이재연 committed
40
41
  async function exitRoom() {
    try {
42
      const data = await roomApi.exitRoom({ id, roomId });
이재연's avatar
이재연 committed
43
      if (data.owner === Number(id)){
44
        const room = await roomApi.removeRoom({roomId : roomId})
이재연's avatar
이재연 committed
45
46
        console.log(room)
      }
이재연's avatar
이재연 committed
47
48
    } catch (error) {
      catchErrors(error, setError);
Kim, Chaerin's avatar
Kim, Chaerin committed
49
    }
이재연's avatar
이재연 committed
50
  }
우지원's avatar
0712    
우지원 committed
51

이재연's avatar
이재연 committed
52
53
  async function getChannel(roomId) {
    try {
54
      const data = await roomApi.getRoom([roomId]);
이재연's avatar
이재연 committed
55
56
57
58
      const Channel = data[0].channel;
      const channelList = [];
      for (const prop in Channel) {
        // Channel의 항목(prop)으로 작업을 실행합니다
59
        for (const el in Channel[prop]) {
이재연's avatar
이재연 committed
60
          channelList.push({
61
62
            channelName: el,
            joinUser: Channel[prop][el],
이재연's avatar
이재연 committed
63
          });
Kim, Chaerin's avatar
Kim, Chaerin committed
64
        }
이재연's avatar
이재연 committed
65
66
67
68
      }
      setChannel(channelList);
    } catch (error) {
      catchErrors(error, setError);
Kim, Chaerin's avatar
Kim, Chaerin committed
69
    }
이재연's avatar
이재연 committed
70
  }
이재연's avatar
이재연 committed
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  async function exitChannel() {
    try {
      const data = await userApi.getUser(id);
      const A = doubleJoinCheck(data.name);
      if (A) {
        await roomApi.doubleJoin({
          roomId: roomId,
          index1: A.index1,
          index2: A.index2,
          joinChName: A.joinChName,
        });
      }
    } catch (error) {
      catchErrors(error, setError);
    }
  }

  function doubleJoinCheck(e) {
    for (const index in channel) {
      for (const el in channel[index].joinUser) {
        if (channel[index].joinUser[el] === e) {
          const doublejoinCh = channel[index].channelName;
          const A = {
            index1: index,
            index2: el,
            joinChName: doublejoinCh,
          };
          return A;
        }
      }
    }
  }
이재연's avatar
이재연 committed
103

우지원's avatar
0809    
우지원 committed
104
105
  async function exitChannel() {
    try {
106
      const data = await userApi.getUser(id);
우지원's avatar
0809    
우지원 committed
107
108
      const A = doubleJoinCheck(data.name)
      if (A) {
109
        await roomApi.doubleJoin({ roomId: roomId, index1: A.index1, index2: A.index2, joinChName: A.joinChName })
우지원's avatar
0809    
우지원 committed
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
      }
    } catch (error) {
      catchErrors(error, setError);
    }
  }

  function doubleJoinCheck(e) {
    for (const index in channel) {
      for (const el in channel[index].joinUser) {
        if (channel[index].joinUser[el] === e) {
          const doublejoinCh = channel[index].channelName
          const A = {
            index1: index,
            index2: el,
            joinChName: doublejoinCh,
          }
          return A
        }
      }
    }
  }

Kim, Chaerin's avatar
Kim, Chaerin committed
132
133
134
135
  // console.log(channel)

  useEffect(() => {
    getChannel(roomId);
이재연's avatar
이재연 committed
136
    getRoom(roomId);
Kim, Chaerin's avatar
Kim, Chaerin committed
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
  }, [roomId]);

  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="#right-hamburger"
          aria-controls="right-hamburger"
          aria-expanded="false"
          aria-label="Toggle navigation"
          style={{ border: "#f4c1f2" }}
        >
seoyeon's avatar
seoyeon committed
158
          <img src="/RightHamburgerImg.png" width="50px" height="30px" />
Kim, Chaerin's avatar
Kim, Chaerin committed
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
        </button>
      </div>
      <div
        className="offcanvas offcanvas-end"
        style={{ width: "330px" }}
        tabIndex="-1"
        id="right-hamburger"
        aria-labelledby="hamburgerLabel"
      >
        <div className="offcanvas-header">
          <p
            className="col-6 offcanvas-title"
            id="offcanvasExampleLabel"
            style={{
              fontWeight: "bold",
              fontSize: "15px",
              overflow: "hidden",
              whiteSpace: "nowrap",
              width: "150px",
              color: "#000000",
            }}
          >
권병윤's avatar
0806    
권병윤 committed
181
            {room[0].name}
Kim, Chaerin's avatar
Kim, Chaerin committed
182
183
184
185
186
187
188
189
190
191
192
193
194
          </p>
          <h6 className="mt-2" id="roomId">
            {" "}
            {`${roomId}`}{" "}
          </h6>
          <button
            type="button"
            className="btn-close text-reset"
            data-bs-dismiss="offcanvas"
            aria-label="Close"
          ></button>
        </div>
        <div>
이재연's avatar
이재연 committed
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
229
230
231
232
233
          <ChannelSingle channel={channel} />
          <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">
권병윤's avatar
0806    
권병윤 committed
234
                      <KakaoShareButton />
이재연's avatar
이재연 committed
235
236
237
238
239
240
241
242
243
                      <button
                        type="submit"
                        className="col-2 p-1 btn btn-primary"
                        data-bs-dismiss="modal"
                        style={{ width: "120px" }}
                        onClick={roomIdCopy}
                      >
                         Id 복사
                      </button>
Kim, Chaerin's avatar
Kim, Chaerin committed
244
                    </div>
이재연's avatar
이재연 committed
245
                  </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
246
                </div>
이재연's avatar
이재연 committed
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
              </div>
            </div>
            <div className="d-flex flex-row-reverse">
              <button
                type="button"
                className="m-3 rounded text-white"
                data-bs-toggle="modal"
                data-bs-target="#exitRoom"
                style={{
                  height: "30px",
                  fontWeight: "bold",
                  backgroundColor: "#d86da6",
                  color: "black",
                  border: "1px #d86da6",
                }}
              >
                퇴장
              </button>
권병윤's avatar
0806    
권병윤 committed
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
              {room[0].owner == id ? (
                <button
                  type="button"
                  className="m-3 rounded"
                  data-bs-toggle="modal"
                  data-bs-target="#Roomsetting"
                  style={{
                    height: "30px",
                    fontWeight: "bold",
                    backgroundColor: "#E0CEE8",
                    color: "black",
                    border: "1px #D64D61",
                  }}
                >
                  설정
                </button>
              ) : null}

              <div
                className="modal fade"
                id="Roomsetting"
                tabIndex="-1"
                aria-labelledby="RoomsettingLabel"
                aria-hidden="true"
이재연's avatar
aaaa    
이재연 committed
289
              >
권병윤's avatar
0806    
권병윤 committed
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
                <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"
                          data-bs-dismiss="modal"
                          style={{
                            weight: "100px",
                            height: "60px",
                            backgroundColor: "#f5cfe3",
                            borderRadius: "5px",
                            color: "black",
                            border: "1px #f5cfe3",
                          }}
                        >
                          채널 이름 변경
                        </button> */}
                        <Roomnamechange />
                      </div>
                    </div>
                  </div>
                </div>
              </div>
이재연's avatar
aaaa    
이재연 committed
325

이재연's avatar
이재연 committed
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
              <div
                className="modal fade"
                id="exitRoom"
                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">
                        <Link
                          to={`/user/${id}`}
                          className="col-2 p-1 btn btn-primary"
                        >
                          <button
                            type="button"
                            onClick={exitRoom}
이재연's avatar
이재연 committed
355
                            onSubmit={exitChannel}
이재연's avatar
이재연 committed
356
357
358
359
360
361
362
363
364
365
                            className="btn btn-primary"
                            data-bs-dismiss="modal"
                          >
                            
                          </button>
                        </Link>
                        <button
                          type="submit"
                          className="btn btn-primary"
                          data-bs-dismiss="modal"
366
                        >
이재연's avatar
이재연 committed
367
368
369
                          아니요
                        </button>
                      </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
370
                    </div>
이재연's avatar
이재연 committed
371
                  </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
372
                </div>
이재연's avatar
이재연 committed
373
              </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
374
            </div>
이재연's avatar
이재연 committed
375
          </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
376
        </div>
이재연's avatar
이재연 committed
377
378
379
380
      </div>
    </div>
  );
};
우지원's avatar
0712    
우지원 committed
381

이재연's avatar
이재연 committed
382
export default RightHamburger;