ChannelList.js 4.86 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
import ChannelSingle from "./ChannelSingle";
우지원's avatar
우지원 committed
2
import { Link } from "react-router-dom";
Kim, Chaerin's avatar
Kim, Chaerin committed
3
4
5
6

const ChannelList = () => {
  return (
    <div>
우지원's avatar
우지원 committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
55
      <nav className="row navbar navbar-light">
        <div className="col-4">
          <Link to="/user">
            <button
              type="button"
              className="m-2 rounded"
              style={{
                height: "30px",
                fontWeight: "bold",
                backgroundColor: "#E8B7FF",
                color: "black",
                border: "1px #f4c1f2",
              }}
            >
              돌아가기
            </button>
          </Link>
        </div>

        <div className="col-4 d-flex justify-content-center">
          <Link to="/user">
            <img src="/BORA.png" style={{ width: "160px" }} />
          </Link>
        </div>

        <div className="col-4 d-flex justify-content-end">
          <button
            className="navbar-toggler"
            type="button"
            data-bs-toggle="offcanvas"
            data-bs-target="#hamburger"
            aria-controls="hamburger"
            aria-expanded="false"
            aria-label="Toggle navigation"
            style={{ border: "#f4c1f2", }}
          >
            <span className="navbar-toggler-icon"></span>
          </button>
        </div>
      </nav>

      <div className="offcanvas offcanvas-start" tabindex="-1" id="hamburger" aria-labelledby="hamburgerLabel">
        <div className="offcanvas-header">
          <h5 className="offcanvas-title" id="offcanvasExampleLabel">음성 채널 목록</h5>
          <button type="button" className="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
        </div>

        <div className="overflow-auto" style={{ height: "610px" }}>
          <div className="mb-3">
우지원's avatar
우지원 committed
56
57
58
            <div className="m-3 p-1 row" style={{ backgroundColor: "#ab9aba" }}>
              <img className="col-auto mt-2" src="/fullSpeaker.png" width="25px" height="25px" />
              <h5 className="col mt-2">회의</h5>
우지원's avatar
우지원 committed
59
60
61
62
63
            </div>
            <div className="mx-5">
              <ChannelSingle />
            </div>
          </div>
우지원's avatar
우지원 committed
64

우지원's avatar
우지원 committed
65
          <div className="mb-3">
우지원's avatar
우지원 committed
66
67
68
            <div className="m-3 p-1 row" style={{ backgroundColor: "#ab9aba" }}>
              <img className="col-auto mt-2" src="/emptySpeaker.png" width="25px" height="25px" />
              <h5 className="col mt-2">사담</h5>
우지원's avatar
우지원 committed
69
70
71
72
73
            </div>
            <div className="mx-5">
              <ChannelSingle />
            </div>
          </div>
우지원's avatar
우지원 committed
74

우지원's avatar
우지원 committed
75
          <div className="mb-3">
우지원's avatar
우지원 committed
76
77
78
            <div className="m-3 p-1 row" style={{ backgroundColor: "#ab9aba" }}>
              <img className="col-auto mt-2" src="/emptySpeaker.png" width="25px" height="25px" />
              <h5 className="col mt-2">공지1</h5>
우지원's avatar
우지원 committed
79
80
81
82
83
            </div>
            <div className="mx-5">
              <ChannelSingle />
            </div>
          </div>
우지원's avatar
우지원 committed
84

우지원's avatar
우지원 committed
85
          <div className="mb-3">
우지원's avatar
우지원 committed
86
87
88
            <div className="m-3 p-1 row" style={{ backgroundColor: "#ab9aba" }}>
              <img className="col-auto mt-2" src="/emptySpeaker.png" width="25px" height="25px" />
              <h5 className="col mt-2">공지2</h5>
우지원's avatar
우지원 committed
89
90
91
92
93
            </div>
            <div className="mx-5">
              <ChannelSingle />
            </div>
          </div>
우지원's avatar
우지원 committed
94
          
우지원's avatar
우지원 committed
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
        </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: "#FF0000",
              color: "black",
              border: "1px #f4c1f2",
            }}
          >
            퇴장
          </button>
          <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"> */}
                    <button type="submit" className="col-2 p-1 btn btn-primary"></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 >
Kim, Chaerin's avatar
Kim, Chaerin committed
138
139
140
141
  );
};

export default ChannelList;