-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
78 lines (72 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// import logo from './logo.svg';
import React, { useState } from 'react'
import './App.css'
import Navbar from './component/Navbar'
import TextForm from './component/TextForm'
import Alert from './component/Alert'
// import About from './component/About';
// import {
// BrowserRouter as Router,
// Switch,
// Route
// } from "react-router-dom";
function App() {
const [Mode, setMode] = useState('light');
const [modeText, setModeText] = useState('Enable Dark Mode');
const [alert, setAlert] = useState(null);
const showAlert = (massage, type)=>{
setAlert({
msg: massage,
type: type
})
setTimeout(() => {
setAlert(null);
}, 1500);
}
const toggleMode = () => {
if(Mode === 'light'){
setMode('dark');
setModeText('Enable Light Mode');
document.body.style.backgroundColor = 'rgb(0 49 98)';
document.body.style.color = 'white';
showAlert("Dark mode is enabled", "success");
document.title = 'TextUtil - DarkMode';
// setInterval(() => {
// document.title = 'TextUtil is Amazing DarkMode';
// }, 2000);
}
else{
setMode('light');
setModeText('Enable Dark Mode');
document.body.style.backgroundColor = 'white';
document.body.style.color = 'black';
showAlert("Light mode is enabled", "success");
document.title = 'TextUtil - LightMode';
}
}
return (
<>
{/* <Router> */}
<Navbar title="TextUtil" aboutText="AboutTextutils" mode={Mode} toggleMode={toggleMode} modeText={modeText}/>
{/* <Navbar title = "TextUtil"/> */}
{/* <Navbar/> */}
<Alert alert = {alert}/>
<div className="container">
{/* <Switch> */}
{/* ------> USe exact before path <------
/user ---> Component1
/user/home ---> Component2
if we not write exact and search /user/home than open /user link */}
{/* <Route exact path="/"> */}
<TextForm heading="Enter the Text to analyze below" mode={Mode} showAlert={showAlert}/>
{/* </Route> */}
{/* <Route exact path="/about">
<About />
</Route> */}
{/* </Switch> */}
</div>
{/* </Router> */}
</>
);
}
export default App;