mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 22:14:07 +01:00
43 lines
1.7 KiB
JavaScript
43 lines
1.7 KiB
JavaScript
import "./App.css";
|
|
import { Route, Routes, useLocation } from "react-router-dom";
|
|
|
|
import TestAuth from "./components/testAuth";
|
|
import LoginPage from "./components/authentication/LoginPage";
|
|
import SignUpPage from "./components/authentication/SignUpPage";
|
|
import NavBar from "./components/Nav/Navbar";
|
|
import Home from "./components/Home";
|
|
import ProfileUpdate from "./components/ProfileUpdatePage";
|
|
import Calendar from "./components/calendar/calendar";
|
|
import KanbanBoard from "./components/kanbanBoard/kanbanBoard";
|
|
import IconSideNav from "./components/IconSideNav";
|
|
import Eisenhower from "./components/eisenhowerMatrix/Eisenhower";
|
|
|
|
const App = () => {
|
|
const location = useLocation();
|
|
const prevention = ["/login", "/signup"];
|
|
const isLoginPageOrSignUpPage = prevention.some(_ => location.pathname.includes(_));
|
|
|
|
return (
|
|
<div className={isLoginPageOrSignUpPage ? "" : "display: flex"}>
|
|
{!isLoginPageOrSignUpPage && <IconSideNav />}
|
|
<div className={isLoginPageOrSignUpPage ? "" : "flex-1"}>
|
|
<NavBar />
|
|
<div className={isLoginPageOrSignUpPage ? "" : "flex items-center justify-center"}>
|
|
<Routes>
|
|
<Route path="/" element={<Home />} />
|
|
<Route path="/tasks" element={<KanbanBoard />} />
|
|
<Route path="/testAuth" element={<TestAuth />} />
|
|
<Route path="/update_profile" element={<ProfileUpdate />} />
|
|
<Route path="/calendar" element={<Calendar />} />
|
|
<Route path="/priority" element={<Eisenhower />} />
|
|
<Route path="/login" element={<LoginPage />} />
|
|
<Route path="/signup" element={<SignUpPage />} />
|
|
</Routes>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|