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

Kim, Chaerin's avatar
Kim, Chaerin committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const INIT_CHANNEL = {
  channelName: "",
  joinName: [],
};

const INIT_ROOM = {
  name: "",
};
const RightHamburger = () => {
  const [channel, setChannel] = useState([INIT_CHANNEL]);
  const [room, setRoom] = useState([INIT_ROOM]);
  const { roomId } = useParams();
  const [error, setError] = useState("");

  async function getroom(Id) {
    try {
      const Room = await roomApi.getRoom([Id]);
      setRoom({...room, name:Room[0].name})
    } catch (error) {
      catchErrors(error, setError);
    }
  }
우지원's avatar
0712    
우지원 committed
31

Kim, Chaerin's avatar
Kim, Chaerin committed
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
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
130
131
132
133
134
135
136
137
  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)
      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(() => {
    getChannel(roomId);
    getroom(roomId)
  }, [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" }}
        >
          <img src={Rightimg} width="50px" height="30px" />
        </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>

        <ChannelSingle channel={channel} />
        <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>
우지원's avatar
0712    
우지원 committed
138
            <div
Kim, Chaerin's avatar
Kim, Chaerin committed
139
140
141
142
143
              className="modal fade"
              id="inviteRoom"
              tabIndex="-1"
              aria-labelledby="exitRoomLabel"
              aria-hidden="true"
우지원's avatar
0712    
우지원 committed
144
            >
Kim, Chaerin's avatar
Kim, Chaerin committed
145
146
147
              <div className="modal-dialog">
                <div className="modal-content">
                  <div className="modal-header">
우지원's avatar
0712    
우지원 committed
148
                    <button
Kim, Chaerin's avatar
Kim, Chaerin committed
149
150
151
152
                      type="button"
                      className="btn-close"
                      data-bs-dismiss="modal"
                      aria-label="Close"
우지원's avatar
0712    
우지원 committed
153
                    ></button>
Kim, Chaerin's avatar
Kim, Chaerin committed
154
155
156
157
158
159
160
161
162
163
164
165
166
167
                  </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>
                      {/*
우지원's avatar
0712    
우지원 committed
168
169
170
                                            <button
                                                type="submit"
                                                className="col-2 p-1 btn btn-primary"
Kim, Chaerin's avatar
Kim, Chaerin committed
171
172
173
174
                                                data-bs-toggle="modal"
                                                data-bs-target="#copyRoomId"
                                                onClick={roomIdCopy}
                                                style={{ width: "120px" }}
우지원's avatar
0712    
우지원 committed
175
                                            >
Kim, Chaerin's avatar
Kim, Chaerin committed
176
177
178
179
180
181
182
183
184
185
186
                                                방 Id 복사
</button> */}
                      <button
                        type="submit"
                        className="col-2 p-1 btn btn-primary"
                        data-bs-dismiss="modal"
                        style={{ width: "120px" }}
                        onClick={roomIdCopy}
                      >
                         Id 복사
                      </button>
우지원's avatar
0712    
우지원 committed
187
                    </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
188
                  </div>
우지원's avatar
0712    
우지원 committed
189
                </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
190
              </div>
우지원's avatar
0712    
우지원 committed
191
            </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
192
193
194
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
            <div>
              <div>
                <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>
                {/* {admin ? (
              <button
                type="button"
                className="m-3 rounded"
                style={{
                  height: "30px",
                  fontWeight: "bold",
                  backgroundColor: "#E0CEE8",
                  color: "black",
                  border: "1px #D64D61",
                }}
              >
                설정
              </button>
            ) : null} */}
우지원's avatar
0712    
우지원 committed
224

Kim, Chaerin's avatar
Kim, Chaerin committed
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
                <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"> */}
                          <button
                            type="submit"
                            className="col-2 p-1 btn btn-primary"
                            data-bs-dismiss="modal"
                          >
                            
                          </button>
                          {/* </Link> */}
                          <button
                            type="submit"
                            className="col-2 p-1 btn btn-primary"
                            data-bs-dismiss="modal"
                          >
                            아니요
                          </button>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  );
};
우지원's avatar
0712    
우지원 committed
276

Kim, Chaerin's avatar
Kim, Chaerin committed
277
export default RightHamburger;