mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 05:54:07 +01:00
53 lines
2.2 KiB
JavaScript
53 lines
2.2 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/navigations/Navbar";
|
|
import Calendar from "./components/calendar/calendar";
|
|
import KanbanPage from "./components/kanbanBoard/kanbanPage";
|
|
import IconSideNav from "./components/navigations/IconSideNav";
|
|
import Eisenhower from "./components/eisenhowerMatrix/Eisenhower";
|
|
import PrivateRoute from "./PrivateRoute";
|
|
import ProfileUpdatePage from "./components/profilePage";
|
|
import Dashboard from "./components/dashboard/dashboard";
|
|
|
|
|
|
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 ml-[76px] overflow-hidden"}>
|
|
<NavBar />
|
|
<div className={isLoginPageOrSignUpPage ? "" : "overflow-x-auto"}>
|
|
<Routes>
|
|
<Route path="/" element={<Dashboard />} />
|
|
<Route exact path="/tasks" element={<PrivateRoute />}>
|
|
<Route exact path="/tasks" element={<KanbanPage />} />
|
|
</Route>
|
|
<Route path="/testAuth" element={<TestAuth />} />
|
|
<Route exact path="/profile" element={<PrivateRoute />}>
|
|
<Route exact path="/profile" element={<ProfileUpdatePage />} />
|
|
</Route>
|
|
<Route exact path="/calendar" element={<PrivateRoute />}>
|
|
<Route exact path="/calendar" element={<Calendar />} />
|
|
</Route>
|
|
<Route exact path="/priority" element={<PrivateRoute />}>
|
|
<Route exact path="/priority" element={<Eisenhower />} />
|
|
</Route>
|
|
<Route path="/login" element={<LoginPage />} />
|
|
<Route path="/signup" element={<SignUpPage />} />
|
|
</Routes>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|