forked from muhamadzolfaghari/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeekSheet.tsx
122 lines (115 loc) · 3.19 KB
/
WeekSheet.tsx
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
"use client";
import React, { PropsWithChildren, useState } from "react";
import {
Box,
Typography,
Container,
Accordion,
AccordionDetails,
AccordionSummary,
FormControlLabel,
Checkbox,
Button,
} from "@mui/material";
import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown";
import ArrowRightIcon from "@mui/icons-material/ArrowRight";
import theme from "@/lib/resources/theme";
import { useAppSelector } from "@/hooks/reduxHooks";
import ReviewPerformance1 from "../ReviewPerformance/ReviewPerformance1";
import ReviewPerformance2 from "../ReviewPerformance/ReviewPerformance2";
import Ladder from "@/types/Ladder";
interface Props {
ladder: Ladder | undefined;
}
export default function WeekSheet({ ladder }: PropsWithChildren<Props>) {
const currentStep = useAppSelector((state) => state.review.currentStep);
const [expanded, setExpanded] = useState<string | false>(false);
const dailyRoutines = ladder?.learningPaths?.[0]?.dailyRoutines || undefined;
const renderContent = () => {
switch (currentStep) {
case "reviewPerformance1":
return <ReviewPerformance1 />;
case "reviewPerformance2":
return <ReviewPerformance2 />;
default:
return <div>Nothing matched</div>;
}
};
return (
<Container
maxWidth="sm"
sx={{
display: "flex",
flexDirection: "column",
height: "100vh",
}}
>
<Box
p={2}
my={3}
borderRadius={2}
sx={{ bgcolor: theme.palette.primary.main }}
>
<Typography variant="h5" color={"white"}>
Phase 1, Week 4
</Typography>
</Box>
<Accordion>
<AccordionSummary
sx={{
backgroundColor: "white !important",
"& .MuiTypography-root": {
color: "#2D322C",
},
}}
expandIcon={
expanded === "panel1" ? (
<ArrowDropDownIcon fontSize="large" />
) : (
<ArrowRightIcon fontSize="large" />
)
}
onClick={() => setExpanded(expanded === "panel1" ? false : "panel1")}
>
<Typography>
{`Day ${1} ${5 ? "Weekdays" : "Weekends"} (${5 ? "2 hours/day" : "4 hours/day"})`}
</Typography>
</AccordionSummary>
<AccordionDetails>
{dailyRoutines?.map((dailyRoutine) => (
<>
<Typography key={dailyRoutine.task}>
<FormControlLabel
control={<Checkbox />}
label={`${dailyRoutine.time}:${dailyRoutine.task} - ${dailyRoutine.resource}`}
/>
</Typography>
</>
))}
</AccordionDetails>
</Accordion>
<Box
my={2}
sx={{
display: "flex",
flexDirection: "column",
flexGrow: 1,
justifyContent: "flex-end",
}}
>
<Button
fullWidth
variant="contained"
color="primary"
type="submit"
sx={{ mb: 1 }}
onClick={() => {
renderContent();
}}
>
Review Your Performance
</Button>
</Box>
</Container>
);
}