Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-05-27 22:27:07 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
773b15b153ea5cfa19fa66a154582b1ce873c531
773b15b1
1 parent
0860f4b8
remove RoomList component
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
115 deletions
front/src/Components/RoomList.js
front/src/Components/RoomList.js
deleted
100644 → 0
View file @
0860f4b
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"
;
const
Wrapper
=
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
})
=>
{
return
(
<
Wrapper
>
<
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
>
<
/Wrapper
>
);
};
Please
register
or
login
to post a comment