-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
62 lines (55 loc) · 1.57 KB
/
App.js
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
import Detector from "./detector/Detector";
import { useState, useLayoutEffect } from "react";
import { getCookie } from "./helperFunctions";
import OnBoardingScreen from "./onBoardingScreen/OnBoardingScreen";
import { theme } from "./Theme";
import { ThemeProvider } from "@mui/material/styles";
import "./onBoardingScreen/transitionStyles.css";
const stepColors = {
0: "#4abdac",
1: "#7d94b5",
2: "#2653AF",
};
function App() {
const [showOnboardingScreen, setShowOnboardingScreen] = useState(true);
const [activeStep, setActiveStep] = useState(0);
const handleNext = () =>
setActiveStep((prevActiveStep) => prevActiveStep + 1);
const handleSkip = () => setShowOnboardingScreen(false);
useLayoutEffect(() => {
let isUserOnboarded = getCookie("isUserOnboarded");
if (isUserOnboarded === "") {
document.cookie = "isUserOnboarded=true";
} else {
setShowOnboardingScreen(false);
}
}, []);
return (
<ThemeProvider theme={theme}>
<div
className="App"
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
backgroundColor: showOnboardingScreen
? stepColors[activeStep]
: "white",
height: "100vh",
width: "100%",
}}
>
{showOnboardingScreen ? (
<OnBoardingScreen
handleNext={handleNext}
handleSkip={handleSkip}
activeStep={activeStep}
/>
) : (
<Detector />
)}
</div>
</ThemeProvider>
);
}
export default App;