forked from muhamadzolfaghari/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLadders.tsx
177 lines (167 loc) · 4.83 KB
/
Ladders.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
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
"use client";
import React, { useState } from "react";
import {
Box,
Card,
CardContent,
Typography,
Container,
IconButton,
Divider,
} from "@mui/material";
import TuneOutlinedIcon from "@mui/icons-material/TuneOutlined";
import addicon from "../../../public/icons/addicon.svg";
import Path from "../../../public/icons/Path.svg";
import Speedometer from "../../../public/icons/Speedometer.svg";
import Ruler from "../../../public/icons/Ruler.svg";
import Image from "next/image";
import LadderStatus from "@/components/LadderStatus";
import Link from "next/link";
import { useAppSelector, useAppDispatch } from "@/hooks/reduxHooks";
import { statusChanged } from "@/store/slices/ladderSlice";
import RoadMap from "./RoadMap/RoadMap";
import WeekSheet from "./WeekSheet/WeekSheet";
import States from "./States/States";
export default function Ladder() {
const [showLadderSetting, setShowLadderSetting] = useState<boolean>(false);
const dispatch = useAppDispatch();
const status = useAppSelector((state) => state.ladder.status);
const handleClick = (): void => {
setShowLadderSetting((prev) => !prev);
};
const handleNavigation = (status: "ladder" | "roadmap" | "states" | "weeksheet") => {
dispatch(statusChanged(status));
};
const renderComponent = () => {
switch (status) {
case "roadmap":
return <RoadMap />;
case "weeksheet":
return <WeekSheet ladder={undefined} />;
case "states":
return <States />;
default:
return null;
}
};
return (
<Container
maxWidth="sm"
sx={{
display: "flex",
flexDirection: "column",
height: "100vh",
}}
>
<Typography variant="h4" mt={2}>
Ladders
</Typography>
<Card
sx={{
mb: 2,
bgcolor: "#4caf50",
color: "white",
justifyContent: "space-around",
}}
>
<CardContent>
<Box
display="flex"
alignItems="center"
width="100%"
justifyContent="space-between"
my={2}
>
<Typography variant="h5" sx={{ color: "white" }}>
Full-Stack Web Development
</Typography>
<IconButton onClick={handleClick}>
<TuneOutlinedIcon
sx={{ color: "white", transform: "rotate(90deg)" }}
/>
</IconButton>
</Box>
<Box sx={{ display: "flex", justifyContent: "space-around", mt: 2 }}>
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
cursor: "pointer",
}}
onClick={() => handleNavigation("roadmap")}
>
<Image src={Path.src} alt="Add Icon" width={24} height={24} />
<Typography variant="body1" sx={{ color: "white" }}>
Road Map
</Typography>
</Box>
<Divider
orientation="vertical"
flexItem
sx={{ bgcolor: "white" }}
/>
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
cursor: "pointer",
}}
onClick={() => handleNavigation("weeksheet")}
>
<Image
src={Speedometer.src}
alt="Add Icon"
width={24}
height={24}
/>
<Typography variant="body1" sx={{ color: "white" }}>
Week Sheet
</Typography>
</Box>
<Divider
orientation="vertical"
flexItem
sx={{ bgcolor: "white" }}
/>
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
cursor: "pointer",
}}
onClick={() => handleNavigation("states")}
>
<Image src={Ruler.src} alt="Add Icon" width={24} height={24} />
<Typography variant="body1" sx={{ color: "white" }}>
Stats
</Typography>
</Box>
</Box>
</CardContent>
</Card>
{showLadderSetting && <LadderStatus />}
<Box
sx={{
display: "flex",
flexDirection: "column",
flexGrow: 1,
justifyContent: "center",
}}
>
<IconButton
sx={{
"&:hover": {
backgroundColor: "transparent",
},
}}
>
<Image src={addicon.src} alt="Add Icon" width={56} height={56} />
</IconButton>
</Box>
{renderComponent()}
</Container>
);
}