TodoCard.js
1.79 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
import React from "react";
import { makeStyles } from "@material-ui/core/styles";
import Card from "@material-ui/core/Card";
import CardContent from "@material-ui/core/CardContent";
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";
const useStyles = makeStyles({
root: {
margin: 10,
},
date: {
fontSize: 14,
float: "left",
},
icon: {
fontSize: 18,
float: "right",
color: "black",
},
title: {
clear: "both",
float: "left",
},
checkBox: {
clear: "both",
float: "left",
},
percent: {
color: "#00BB00",
float: "right",
},
});
export default function TodoCard(props) {
const classes = useStyles();
const data = props.data;
const todo = data.todo.split(",");
const isTrue = "1";
const check = data.ck.split(",").map((ck) => {
return isTrue === ck;
});
return (
<Card className={classes.root}>
<CardContent>
<Typography className={classes.date} color="textSecondary" gutterBottom>
{data.date} · {data.name}
</Typography>
<Icon className={classes.icon} color="primary">
settings
</Icon>
<Typography className={classes.title} variant="h6">
{data.title}
</Typography>
{/* <Typography className={classes.percent} variant="h6">
99%
</Typography> */}
{todo.map((item, idx) => {
return (
<FormControlLabel
className={classes.checkBox}
control={<Checkbox />}
checked={check[idx]}
label={item}
/>
);
})}
</CardContent>
</Card>
);
}