-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsessionCard.js
More file actions
228 lines (219 loc) · 6.38 KB
/
Copy pathsessionCard.js
File metadata and controls
228 lines (219 loc) · 6.38 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import {
Box,
Card,
CardContent,
Grid,
GridList,
GridListTile,
Typography,
} from "@material-ui/core"
import { makeStyles } from "@material-ui/core/styles"
import useMediaQuery from "@material-ui/core/useMediaQuery"
import React from "react"
const useStyles = makeStyles(theme => ({
icon: {
marginRight: theme.spacing(2),
},
heroContent: {
padding: theme.spacing(0, 10, 10),
[theme.breakpoints.down("md")]: {
padding: theme.spacing(10, 3, 10),
},
},
heroButtons: {
marginTop: theme.spacing(4),
},
cardGrid: {
paddingTop: theme.spacing(8),
paddingBottom: theme.spacing(8),
},
gridList: {
flexWrap: "nowrap",
width: "100%",
// Promote the list into his own layer on Chrome. This cost memory but helps keeping high FPS.
transform: "translateZ(0)",
},
card: {
backgroundColor: "#FFF8F4",
height: "100%",
display: "flex",
flexDirection: "column",
borderRadius: "10px",
boxShadow: "0px 0px 14px rgba(0, 0, 0, 0.1)",
},
cardMedia: {
width: "100%",
height: "auto",
// paddingTop: "56.25%", // 16:9
},
cardContent: {
flexGrow: 1,
},
chipActions: {
display: "block",
},
chip: {
margin: "8px 0 3px 8px",
},
extraMargin: {
marginTop: "15px",
marginBottom: "0",
},
btn: {
textTransform: "none",
},
root: {
backgroundColor: theme.palette.primary.main,
paddingTop: theme.spacing(3),
paddingBottom: theme.spacing(3),
"& dt": {
marginTop: theme.spacing(2),
},
color: "#FFF",
},
paddingCls: {
paddingLeft: "10px",
paddingRight: "10px",
},
paddingClsxs: {
padding: 0,
},
iconSize: {
fontSize: "32px",
},
text: {
color: "#000",
},
textHighlight: {
color: "#A60000",
},
bulletPoints: {
fontSize: "14px",
lineHeight: "21px",
fontWeight: 400,
color: "#616161",
},
}))
export default function Recommendations({ recommendationsImages }) {
const classes = useStyles()
const large = useMediaQuery("(min-width:1100px)")
const medium = useMediaQuery("(min-width:900px)")
const small = useMediaQuery("(min-width:600px)")
let topMargin = 0
let bottomMargin = 0
return (
<Grid container className={classes.heroContent}>
<Grid container spacing={4}>
<GridList
id="recommendation_grid"
className={classes.gridList}
cols={large ? 4 : medium ? 3.5 : small ? 2.7 : 1.4}
>
{[1, 2, 3, 4, 5].map((session, index) => {
return (
<GridListTile
className="recommendation_slide"
key={index}
style={{
margin: `20px`,
borderRadius: "5px",
height: "auto",
overflow: "hidden",
boxShadow: "0px 0px 14px rgba(0, 0, 0, 0.1)",
}}
>
<Card className={classes.card}>
<CardContent className={classes.cardContent}>
<Typography variant="h4" color="primary">
Session {`${session}`}
</Typography>
</CardContent>
<CardContent className={classes.cardContent}>
<Typography
style={{
fontWeight: 500,
fontSize: "20px",
color: "#000",
}}
>
The First topic of Java Bootcamp
</Typography>
</CardContent>
<CardContent className={classes.cardContent}>
<Typography
style={{
fontSize: "14px",
lineHeight: "21px",
fontWeight: 400,
color: "#616161",
}}
>
So Give your junior a chance to cover as much by holding
your fingers
</Typography>
</CardContent>
<CardContent className={classes.cardContent}>
<ul>
<li>
<Typography className={classes.bulletPoints}>
Subtopic For the javabootcamp.
</Typography>
</li>
<li>
<Typography className={classes.bulletPoints}>
Subtopic For the javabootcamp.
</Typography>
</li>
<li>
<Typography className={classes.bulletPoints}>
Subtopic For the javabootcamp.
</Typography>
</li>
<li>
<Typography className={classes.bulletPoints}>
Subtopic For the javabootcamp.
</Typography>
</li>
</ul>
<Typography
align="right"
style={{ fontSize: "12px", fontWeight: 500 }}
color="primary"
>
Show Less ^
</Typography>
</CardContent>
<CardContent className={classes.cardContent}>
<Typography variant="h6" display="inline">
Scheduled On
</Typography>
<Typography variant="h6" display="inline" color="primary">
{" "}
13 Nov’20
</Typography>
<Box />
<Typography
variant="h6"
display="inline"
style={{ color: "#9A9A9A" }}
>
Duration
</Typography>
<Typography
variant="h6"
display="inline"
style={{ color: "#9A9A9A" }}
>
{" "}
2 hours
</Typography>
</CardContent>
</Card>
</GridListTile>
)
})}
</GridList>
</Grid>
</Grid>
)
}