Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김대휘
/
Do-gether
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
김대휘
2020-06-17 10:31:48 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9815ca1b318c25cae32bfcdef5bd8990eacd6735
9815ca1b
1 parent
8e219dad
아이콘 버튼 추가
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
10 deletions
client/src/components/BodyLayout.js
client/src/components/TodoCard.js
client/src/components/BodyLayout.js
View file @
9815ca1
...
...
@@ -6,13 +6,14 @@ import Grid from "@material-ui/core/Grid";
import
Typography
from
"@material-ui/core/Typography"
;
import
Icon
from
"@material-ui/core/Icon"
;
import
IconButton
from
"@material-ui/core/IconButton"
;
// import CircularProgress from "@material-ui/core/CircularProgress";
import
TodoCard
from
"./TodoCard.js"
;
const
useStyles
=
makeStyles
((
theme
)
=>
({
root
:
{
minHeight
:
"100
vh
"
,
minHeight
:
"100
%
"
,
backgroundColor
:
"rgba(0,0,0,0.5)"
,
},
container
:
{
...
...
@@ -28,6 +29,17 @@ const useStyles = makeStyles((theme) => ({
paddingTop
:
"1rem"
,
color
:
"white"
,
},
iconButton
:
{
margin
:
"0"
,
padding
:
"0"
,
position
:
"fixed"
,
bottom
:
"3rem"
,
right
:
"3rem"
,
},
icon
:
{
fontSize
:
70
,
color
:
"white"
,
},
}));
export
default
function
BodyLayout
()
{
...
...
@@ -64,15 +76,14 @@ export default function BodyLayout() {
let
showDate
=
null
;
const
isMine
=
card
.
name
===
"aa"
;
////data.name과 session name 비교 로그인 구현하고 수정
if
(
idx
===
0
||
card
.
date
!==
data
[
idx
-
1
].
date
)
{
showDate
=
(
showDate
=
(
<
Typography
variant
=
"h4"
className
=
{
classes
.
date
}
>
{
card
.
date
}
<
/Typography
>
);
}
if
(
isMine
)
{
isVisible
=
1
;
}
...
...
@@ -92,7 +103,7 @@ export default function BodyLayout() {
<
/
>
);
}
else
{
return
<>
{
showDate
}
<
/>
;
return
<>
{
showDate
}
<
/>
;
}
})}
...
...
@@ -100,6 +111,10 @@ export default function BodyLayout() {
<Icon style={{ fontSize: 60 }}>add_circle</Icon>
</Grid> */
}
<
/Grid
>
<
IconButton
className
=
{
classes
.
iconButton
}
>
<
Icon
className
=
{
classes
.
icon
}
>
add_circle
<
/Icon
>
<
/IconButton
>
<
/Container
>
<
/div
>
);
...
...
client/src/components/TodoCard.js
View file @
9815ca1
...
...
@@ -6,6 +6,7 @@ import Typography from "@material-ui/core/Typography";
import
FormControlLabel
from
"@material-ui/core/FormControlLabel"
;
import
Checkbox
from
"@material-ui/core/Checkbox"
;
import
Icon
from
"@material-ui/core/Icon"
;
import
IconButton
from
"@material-ui/core/IconButton"
;
const
useStyles
=
makeStyles
({
root
:
{
...
...
@@ -15,9 +16,13 @@ const useStyles = makeStyles({
fontSize
:
14
,
float
:
"left"
,
},
icon
:
{
fontSize
:
18
,
iconButton
:
{
float
:
"right"
,
margin
:
"0"
,
padding
:
"0"
,
},
icon
:
{
fontSize
:
16
,
color
:
"black"
,
},
title
:
{
...
...
@@ -46,9 +51,11 @@ export default function TodoCard({ data, isMine, isVisible }) {
if
(
isMine
)
{
settingButton
=
(
<
Icon
className
=
{
classes
.
icon
}
color
=
"primary"
>
settings
<
/Icon
>
<
IconButton
className
=
{
classes
.
iconButton
}
>
<
Icon
className
=
{
classes
.
icon
}
color
=
"primary"
on
>
settings
<
/Icon
>
<
/IconButton
>
);
}
return
(
...
...
Please
register
or
login
to post a comment