RoomPresenter.js
3.6 KB
1
2
3
4
5
6
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
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
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
import React from "react";
import styled from "styled-components";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faArrowRight } from "@fortawesome/free-solid-svg-icons";
import { Link } from "react-router-dom";
import Header from "../../Components/Header";
import Input from "../../Components/Input";
import Button from "../../Components/Button";
const Wrapper = styled.div`
display: flex;
flex-direction: column;
width: 100%;
justify-content: center;
align-items: center;
.Header {
position: fixed;
top: 0;
}
`;
const FormContainer = styled.div`
visibility: hidden;
display: flex;
position: fixed;
background-color: #f5f6fa;
min-height: 10rem;
min-width: 20rem;
border-radius: 10px;
`;
const Form = styled.form`
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
padding: 15px;
span {
margin-bottom: 15px;
}
input {
margin-bottom: 15px;
}
button {
background-color: #1e3799;
width: 30%;
color: white;
border-radius: 10px;
font-family: "Ubuntu", sans-serif;
}
`;
const FormText = styled.span`
font-size: 15px;
font-family: "Ubuntu", sans-serif;
`;
const RoomWrapper = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #a5b1c2;
border-radius: 10px;
box-shadow: 1px 1px 10px #8395a7;
min-width: 23.75rem;
width: auto;
max-height: none;
padding: 0.5rem 0.7rem 0 1rem;
`;
const RoomContainer = styled.div`
display: flex;
flex-direction: column;
width: 100%;
overflow-y: scroll;
min-height: 70px;
justify-content: center;
align-items: center;
&::-webkit-scrollbar {
width: 10px;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: gray;
}
&::-webkit-scrollbar-button {
width: 0;
height: 0;
}
`;
const RoomUL = styled.ul`
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
svg {
color: white;
opacity: 0.7;
}
`;
const RoomItem = styled.li`
font-family: "Ubuntu", sans-serif;
`;
const CreateContainer = styled.div`
padding-top: 1.9rem;
padding-bottom: 1.7rem;
box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.04);
`;
const StyledLink = styled(Link)`
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
text-decoration: none;
cursor: pointer;
color: #079992;
svg {
color: #079992;
&:hover {
border-bottom: 1px solid #079992;
}
}
li {
color: black;
&:hover {
color: #079992;
}
}
span {
&:hover {
border-bottom: 1px solid #079992;
}
}
`;
export default ({ roomArray, action }) => {
return (
<Wrapper>
<Header text={"KhuChat"}></Header>
<RoomWrapper>
<RoomContainer>
<RoomUL>
{roomArray &&
roomArray.map((e) => (
<StyledLink to={e.name} key={e.id}>
<RoomItem>{e.name}</RoomItem>
<FontAwesomeIcon icon={faArrowRight} />
</StyledLink>
))}
</RoomUL>
</RoomContainer>
<CreateContainer>
<StyledLink to="/">
<span>Create New Room</span>
</StyledLink>
</CreateContainer>
</RoomWrapper>
<FormContainer>
<Form>
<FormText>Room Name</FormText>
<Input placeholder="Enter new Room name" />
<Button text="Submit" />
</Form>
</FormContainer>
</Wrapper>
);
};