RightHamburger.js 10.6 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import { useState, useEffect } from "react";
우지원's avatar
우지원 committed
2
import { Link, useParams } from "react-router-dom";
Kim, Chaerin's avatar
Kim, Chaerin committed
3
4
5
import ChannelSingle from "./ChannelSingle";
import RoomApi from "../../apis/room.api";
import catchErrors from "../../context/catchError";
우지원's avatar
0712    
우지원 committed
6

이재연's avatar
aaaa    
이재연 committed
7
8
9
10
const INIT_ROOM = {
    name: "",
  };

Kim, Chaerin's avatar
Kim, Chaerin committed
11
const INIT_CHANNEL = {
우지원's avatar
우지원 committed
12
13
    channelName: "",
    joinName: [],
Kim, Chaerin's avatar
Kim, Chaerin committed
14
15
};
const RightHamburger = () => {
우지원's avatar
우지원 committed
16
    const [channel, setChannel] = useState([INIT_CHANNEL]);
이재연's avatar
aaaa    
이재연 committed
17
    const [room, setRoom] = useState([INIT_ROOM])
우지원's avatar
우지원 committed
18
19
20
21
    const { roomId } = useParams();
    const [error, setError] = useState("");
    const id = localStorage.getItem('user');

이재연's avatar
aaaa    
이재연 committed
22
23
24
25
26
27
28
29
30
    async function getRoom(roomId) {
        try {
          const data = await RoomApi.getRoom([roomId]);
          setRoom({...room, name:data[0].name});
        } catch (error) {
          catchErrors(error, setError);
        }
      }

우지원's avatar
우지원 committed
31
32
33
    async function exitRoom() {
        console.log('id, roomid정보', id, roomId)
        try {
이재연's avatar
aaaa    
이재연 committed
34
            const data = await RoomApi.exitRoom({ id, roomId })
우지원's avatar
우지원 committed
35
36
37
38
39
            console.log(data)
        } catch (error) {
            catchErrors(error, setError);
        }

Kim, Chaerin's avatar
Kim, Chaerin committed
40
41

    }
우지원's avatar
0712    
우지원 committed
42

우지원's avatar
우지원 committed
43
44
45
    async function getChannel(roomId) {
        const ID = roomId
        try {
이재연's avatar
aaaa    
이재연 committed
46
            const data = await RoomApi.getRoom([ID]);
우지원's avatar
우지원 committed
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
            const Channel = data[0].channel
            console.log('방데이터:', Channel)
            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);
Kim, Chaerin's avatar
Kim, Chaerin committed
64
65
        }
    }
66
  
Kim, Chaerin's avatar
Kim, Chaerin committed
67
68
69
70
  // console.log(channel)

  useEffect(() => {
    getChannel(roomId);
이재연's avatar
aaaa    
이재연 committed
71
    getRoom(roomId)
Kim, Chaerin's avatar
Kim, Chaerin committed
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  }, [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
93
          <img src="/RightHamburgerImg.png" width="50px" height="30px" />
Kim, Chaerin's avatar
Kim, Chaerin committed
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
        </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",
            }}
          >
            {room.name}
          </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
130
                <ChannelSingle channel={channel} />
이재연's avatar
aaaa    
이재연 committed
131
                <div className="d-flex flex-row-reverse">
우지원's avatar
우지원 committed
132
133
                        <button
                            type="button"
이재연's avatar
aaaa    
이재연 committed
134
                            className="m-3 rounded"
우지원's avatar
우지원 committed
135
                            data-bs-toggle="modal"
이재연's avatar
aaaa    
이재연 committed
136
                            data-bs-target="#inviteRoom"
우지원's avatar
우지원 committed
137
138
139
                            style={{
                                height: "30px",
                                fontWeight: "bold",
이재연's avatar
aaaa    
이재연 committed
140
                                backgroundColor: "#E0CEE8",
우지원's avatar
우지원 committed
141
                                color: "black",
이재연's avatar
aaaa    
이재연 committed
142
                                border: "1px #D64D61",
우지원's avatar
우지원 committed
143
144
                            }}
                        >
이재연's avatar
aaaa    
이재연 committed
145
                            초대
우지원's avatar
우지원 committed
146
147
148
                        </button>
                        <div
                            className="modal fade"
이재연's avatar
aaaa    
이재연 committed
149
                            id="inviteRoom"
우지원's avatar
우지원 committed
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
                            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">
이재연's avatar
aaaa    
이재연 committed
165
                                        어떤 방식으로 초대하시겠습니까?
우지원's avatar
우지원 committed
166
167
168
169
                                    </div>
                                    <div className="row mb-3">
                                        <div className="d-flex justify-content-evenly">
                                            <button
이재연's avatar
aaaa    
이재연 committed
170
171
172
                                                type="submit"
                                                className="col-2 p-1 btn btn-primary"
                                                style={{ width: "120px" }}
우지원's avatar
우지원 committed
173
                                            >
이재연's avatar
aaaa    
이재연 committed
174
                                                카카오로 초대
우지원's avatar
우지원 committed
175
176
177
                                            </button>
                                            <button
                                                type="submit"
이재연's avatar
aaaa    
이재연 committed
178
                                                className="col-2 p-1 btn btn-primary"
우지원's avatar
우지원 committed
179
                                                data-bs-dismiss="modal"
이재연's avatar
aaaa    
이재연 committed
180
181
                                                style={{ width: "120px" }}
                                                onClick={roomIdCopy}
우지원's avatar
우지원 committed
182
                                            >
이재연's avatar
aaaa    
이재연 committed
183
                                                 Id 복사
우지원's avatar
우지원 committed
184
185
186
187
188
                                            </button>
                                        </div>
                                    </div>
                                </div>
                            </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
189
190
191
                        </div>
                    </div>
                </div>
이재연's avatar
aaaa    
이재연 committed
192
193
                <div>
                    <div className="d-flex flex-row-reverse">
Kim, Chaerin's avatar
Kim, Chaerin committed
194
                        <button
195
                            type="button"
이재연's avatar
aaaa    
이재연 committed
196
                            className="m-3 rounded text-white"
197
                            data-bs-toggle="modal"
이재연's avatar
aaaa    
이재연 committed
198
                            data-bs-target="#exitRoom"
199
200
201
                            style={{
                                height: "30px",
                                fontWeight: "bold",
이재연's avatar
aaaa    
이재연 committed
202
                                backgroundColor: "#d86da6",
203
                                color: "black",
이재연's avatar
aaaa    
이재연 committed
204
                                border: "1px #d86da6",
205
206
                            }}
                        >
이재연's avatar
aaaa    
이재연 committed
207
                            퇴장
208
                        </button>
이재연's avatar
aaaa    
이재연 committed
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
                        {/* {admin ? (
              <button
                type="button"
                className="m-3 rounded"
                style={{
                  height: "30px",
                  fontWeight: "bold",
                  backgroundColor: "#E0CEE8",
                  color: "black",
                  border: "1px #D64D61",
                }}
              >
                설정
              </button>
            ) : null} */}

225
226
                        <div
                            className="modal fade"
이재연's avatar
aaaa    
이재연 committed
227
                            id="exitRoom"
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
                            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">
이재연's avatar
aaaa    
이재연 committed
243
                                        이방에서 퇴장하시겠습니까?
244
245
246
                                    </div>
                                    <div className="row mb-3">
                                        <div className="d-flex justify-content-evenly">
이재연's avatar
aaaa    
이재연 committed
247
                                            <Link to={`/user/${id}`} className="col-2 p-1 btn btn-primary">
248
                                            <button
이재연's avatar
aaaa    
이재연 committed
249
250
251
252
                                                type="button"
                                                onClick={exitRoom}
                                                className="btn btn-primary"
                                                data-bs-dismiss="modal"
253
                                            >
이재연's avatar
aaaa    
이재연 committed
254
                                                
255
                                            </button>
이재연's avatar
aaaa    
이재연 committed
256
                                            </Link>
257
258
                                            <button
                                                type="submit"
이재연's avatar
aaaa    
이재연 committed
259
                                                className="btn btn-primary"
260
261
                                                data-bs-dismiss="modal"
                                            >
이재연's avatar
aaaa    
이재연 committed
262
                                                아니요
263
264
265
266
267
                                            </button>
                                        </div>
                                    </div>
                                </div>
                            </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
268
269
270
271
272
                        </div>
                    </div>
                </div>
            </div>
        </div>
우지원's avatar
우지원 committed
273
    );
274
                        };
우지원's avatar
0712    
우지원 committed
275

우지원's avatar
우지원 committed
276
export default RightHamburger;