diff --git a/browser-domain/src/App.tsx b/browser-domain/src/App.tsx index 0e82d7e..64d12c4 100644 --- a/browser-domain/src/App.tsx +++ b/browser-domain/src/App.tsx @@ -1,5 +1,5 @@ import { LogIn } from "./components/LogIn/LogIn"; -import { Navigate, Route, RouteProps, Routes } from "react-router"; +import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router"; import { SignUp } from "./components/SignUp/SignUp"; import { CreateAirline } from "./components/SignUp/CreateAirline"; import { Home } from "./components/Home/Home"; @@ -7,35 +7,60 @@ import { CreateFlight } from "./components/CreateFlight/CreateFlight"; import { Button } from "antd"; import useAuth, { AuthProvider } from "./useAuth"; import { EditFlight } from "./components/CreateFlight/EditFlight"; +import LandingPage from "./components/Landing/Landing"; function Router() { const { user, logout, isAirline, isAdmin } = useAuth(); + const navigate = useNavigate() return (
- } /> + : } /> } /> - : } /> - : } /> - : } /> - : } /> - : } /> + : ) : } /> + } /> + : ) : } /> + } /> + } /> + } /> + {window.location.pathname != '/' &&
- { + {!!!localStorage.getItem("token") ? + + : }
+ }
); } +const EditFlightComponent = () => { + const { isAirline, isAdmin, user } = useAuth(); + const params = useParams(); + + if (!isAirline && !isAdmin) { + if (!user) { + return ; + } else { + return ; + } + } else { + return ; + } + }; + function App() { return ( diff --git a/browser-domain/src/components/CreateFlight/CreateFlight.tsx b/browser-domain/src/components/CreateFlight/CreateFlight.tsx index 796d069..97a61aa 100644 --- a/browser-domain/src/components/CreateFlight/CreateFlight.tsx +++ b/browser-domain/src/components/CreateFlight/CreateFlight.tsx @@ -46,7 +46,7 @@ export const CreateFlight = () => { createFlight(newFlightData, token) .then((data) => { setFlight(data); - navigate("/home") + navigate("/flights") }) .catch((error) => { try { diff --git a/browser-domain/src/components/CreateFlight/EditFlight.tsx b/browser-domain/src/components/CreateFlight/EditFlight.tsx index b1ddb50..eb7aa5c 100644 --- a/browser-domain/src/components/CreateFlight/EditFlight.tsx +++ b/browser-domain/src/components/CreateFlight/EditFlight.tsx @@ -52,7 +52,7 @@ export const EditFlight: React.FC = (props) => { editFlight(id, data, token) .then((data) => { - navigate("/home") + navigate("/flights") }) .catch((error) => { try { diff --git a/browser-domain/src/components/Home/Home.tsx b/browser-domain/src/components/Home/Home.tsx index 31db0d1..1367c6e 100644 --- a/browser-domain/src/components/Home/Home.tsx +++ b/browser-domain/src/components/Home/Home.tsx @@ -75,6 +75,7 @@ export const Home: React.FC = (props) => { } else { newParams.delete("search") } + setCurrentPage(1) navigate(`?${newParams.toString()}`); }; @@ -90,7 +91,6 @@ export const Home: React.FC = (props) => { {isAdmin ? : <>}
- {/*

Flights

*/}
{ + const navigate = useNavigate(); + + const handleSubscribeClick = () => { + navigate("/login"); + }; + + const handleGoToFlightsClick = () => { + navigate("/flights"); + }; + + return ( +
+

Welcome to FIDS!

+

+ If you want to subscribe to flights, please create or log in to your account. +

+
+ + + +
+

+ Otherwise, you can continue to the flights page. +

+
+ +
+
+ ); +}; + +export default LandingPage; diff --git a/browser-domain/src/components/LogIn/LogIn.tsx b/browser-domain/src/components/LogIn/LogIn.tsx index 4ba7548..e414b58 100644 --- a/browser-domain/src/components/LogIn/LogIn.tsx +++ b/browser-domain/src/components/LogIn/LogIn.tsx @@ -1,7 +1,7 @@ import React, { useState } from "react"; import { Button, Input } from "antd"; import useAuth from "../../useAuth"; -import { useNavigate } from "react-router"; +import { useLocation, useNavigate } from "react-router"; export const LogIn = () => { const { login, loading, error } = useAuth(); @@ -9,6 +9,11 @@ export const LogIn = () => { const [password, setPassword] = useState(""); const navigate = useNavigate(); + const location = useLocation(); + const { state } = location; + + console.log(state) + return (
@@ -27,7 +32,7 @@ export const LogIn = () => {