ChatPresenter.js
3.96 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
178
179
180
181
182
183
184
import React from "react";
import styled from "styled-components";
import Input from "../../Components/Input";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faPlusSquare } from "@fortawesome/free-solid-svg-icons";
const Wrapper = styled.div`
display: block;
width: 100%;
height: 100vh;
background-color: #2f3136;
`;
const ServerListBox = styled.div`
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 72px;
background-color: #202225;
color: white;
`;
const ServerNav = styled.nav`
display: flex;
flex-direction: column;
`;
const ServerBox = styled.div``;
const MainContainer = styled.div`
position: absolute;
top: 0;
left: 72px;
right: 0;
bottom: 0;
`;
const MainContentBox = styled.div`
width: 100%;
height: 100%;
display: flex;
flex: 1 1 auto;
`;
const MainSideBar = styled.div`
background-color: #2f3136;
color: white;
`;
const MainBox = styled.div`
width: 100%;
`;
const HeaderSection = styled.section`
background-color: #36393f;
color: white;
padding: 15px;
`;
const SectionContainer = styled.div`
display: flex;
flex-direction: row;
height: auto;
`;
const ChatSection = styled.section`
background-color: #36393f;
color: white;
flex: 1 1 auto;
`;
const MessageWrapper = styled.div`
position: relative;
display: flex;
flex: 1 1 auto;
`;
const ScrollWrapper = styled.div`
overflow-y: scroll;
display: flex;
flex: 1 1 auto;
flex-direction: column;
&::-webkit-scrollbar {
width: 16px;
height: 16px;
}
&::-webkit-scrollbar-thumb {
background-color: #202225;
border-color: #36393f;
}
&::-webkit-scrollbar-thumb,
&::-webkit-scrollbar-track {
border-width: 4px;
border-radius: 8px;
}
`;
const ScrollInner = styled.div``;
const ScrollInnerTitle = styled.div`
padding: 10px;
p {
text-align: center;
}
`;
const CardWrapper = styled.div`
padding: 5px;
text-align: center;
&:last-child {
margin-bottom: 10px;
}
`;
const StyleForm = styled.form``;
const InputArea = styled.div`
display: flex;
flex-direction: row;
`;
const AttachArea = styled.div``;
const TextArea = styled.div``;
const ButtonArea = styled.div``;
const PeopleSection = styled.section`
background-color: #2f3136;
color: white;
flex: 0 1 30%;
min-width: 360px;
max-width: 420px;
`;
export default () => {
return (
<Wrapper>
<ServerListBox>
<ServerNav>
<ServerBox>Test</ServerBox>
</ServerNav>
</ServerListBox>
<MainContainer>
<MainContentBox>
<MainSideBar>채널 및 DM 목록</MainSideBar>
<MainBox>
<HeaderSection>상태 표시바</HeaderSection>
<SectionContainer>
<ChatSection>
<MessageWrapper>
<ScrollWrapper>
<ScrollInner>
<ScrollInnerTitle>
<p>.. Server 에 오신 것을 환영합니다.</p>
<p>We Introduce some guides below.</p>
</ScrollInnerTitle>
<CardWrapper>초대하기</CardWrapper>
<CardWrapper>데스크톱 앱 다운로드</CardWrapper>
<CardWrapper>아이콘</CardWrapper>
</ScrollInner>
</ScrollWrapper>
</MessageWrapper>
<StyleForm>
<InputArea>
<AttachArea>
<FontAwesomeIcon icon={faPlusSquare} />
</AttachArea>
<TextArea>
<Input placeholder="# 보낼 메시지 입력" />
</TextArea>
<ButtonArea></ButtonArea>
</InputArea>
</StyleForm>
</ChatSection>
<PeopleSection>활동중인 친구 리스트</PeopleSection>
</SectionContainer>
</MainBox>
</MainContentBox>
</MainContainer>
</Wrapper>
);
};