diff --git a/browser-domain/src/Api.ts b/browser-domain/src/Api.ts index 4a20183..a16ac25 100644 --- a/browser-domain/src/Api.ts +++ b/browser-domain/src/Api.ts @@ -87,21 +87,21 @@ export const createFlight = ( }; -export const editFlight = ( - flight_id:string, +export const editFlight = ( + flight_id: string, fligth_data: FlightEdit, token: string -):Promise => { - return instance.patch("flights/" + flight_id , fligth_data, { +): Promise => { + return instance.patch("flights/" + flight_id, fligth_data, { headers: { Authorization: `Bearer ${token}` }, }); -}; +}; -export const fetchFlight = ( - flight_id:string, -):Promise => { +export const fetchFlight = ( + flight_id: string, +): Promise => { return instance.get("flights/" + flight_id); -}; +}; export const subscribeToFlight = (subscription: SubscriptionsCreate, token: string): Promise => { @@ -117,14 +117,14 @@ export const getChatId = (user_id: number, token: string): Promise => { }; export const getSubscription = (subscription: SubscriptionsCreate, token: string): Promise => { - return instance.get("subscriptions?user_id=" + subscription.user_id + "&flight_id=" +subscription.flight_id, { + return instance.get("subscriptions?user_id=" + subscription.user_id + "&flight_id=" + subscription.flight_id, { headers: { Authorization: `Bearer ${token}` }, }); }; export const unsubscribeFromFlight = (subscription: SubscriptionsCreate, token: string): Promise => { return instance.delete("subscriptions", { - headers: { Authorization: `Bearer ${token}`}, + headers: { Authorization: `Bearer ${token}` }, data: subscription }); }; diff --git a/browser-domain/src/App.tsx b/browser-domain/src/App.tsx index 64d12c4..f901cd6 100644 --- a/browser-domain/src/App.tsx +++ b/browser-domain/src/App.tsx @@ -1,12 +1,12 @@ import { LogIn } from "./components/LogIn/LogIn"; import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router"; import { SignUp } from "./components/SignUp/SignUp"; -import { CreateAirline } from "./components/SignUp/CreateAirline"; +import { CreateAirline } from "./components/CreateAirline/CreateAirline"; import { Home } from "./components/Home/Home"; import { CreateFlight } from "./components/CreateFlight/CreateFlight"; import { Button } from "antd"; import useAuth, { AuthProvider } from "./useAuth"; -import { EditFlight } from "./components/CreateFlight/EditFlight"; +import { EditFlight } from "./components/CreateFlight/EditFlight/EditFlight"; import LandingPage from "./components/Landing/Landing"; function Router() { @@ -18,29 +18,33 @@ function Router() { : } /> } /> - : ) : } /> + : ) : + } /> } /> - : ) : } /> + : ) : + } /> } /> } /> } /> {window.location.pathname != '/' && -
- {!!!localStorage.getItem("token") ? - - : - - } -
+
+ {!!!localStorage.getItem("token") ? + + : + + } +
} ); @@ -49,17 +53,17 @@ function Router() { const EditFlightComponent = () => { const { isAirline, isAdmin, user } = useAuth(); const params = useParams(); - + if (!isAirline && !isAdmin) { - if (!user) { - return ; - } else { - return ; - } + if (!user) { + return ; + } else { + return ; + } } else { - return ; + return ; } - }; +}; function App() { return ( diff --git a/browser-domain/src/Types.d.ts b/browser-domain/src/Types.d.ts index 3fa9a02..28ee7ea 100644 --- a/browser-domain/src/Types.d.ts +++ b/browser-domain/src/Types.d.ts @@ -59,14 +59,14 @@ export interface FlightCreateFull { } export interface FlightEditNotNull { - departure_time: string, + departure_time: string, arrival_time: string, status: string, gate: string } export interface FlightEdit { - departure_time: string?, + departure_time: string?, arrival_time: string?, status: string?, gate: string? diff --git a/browser-domain/src/components/Button/Button.test.tsx b/browser-domain/src/components/Button/Button.test.tsx deleted file mode 100644 index 8456a87..0000000 --- a/browser-domain/src/components/Button/Button.test.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import "../../matchMedia.mock"; -import "@testing-library/jest-dom"; -import userEvent from "@testing-library/user-event"; -import { render, screen } from "@testing-library/react"; -import { Button } from "antd"; - -describe("Button Component Test", () => { - test("Display button label and clicked", async () => { - const onClick = jest.fn(); - - render(); - - expect(screen.getByText("Button")).toBeVisible(); - await userEvent.click(screen.getByText("Button")); - expect(onClick).toBeCalled(); - }); -}); diff --git a/browser-domain/src/components/SignUp/CreateAirline.tsx b/browser-domain/src/components/CreateAirline/CreateAirline.tsx similarity index 100% rename from browser-domain/src/components/SignUp/CreateAirline.tsx rename to browser-domain/src/components/CreateAirline/CreateAirline.tsx diff --git a/browser-domain/src/components/CreateFlight/CreateFlight.tsx b/browser-domain/src/components/CreateFlight/CreateFlight.tsx index 97a61aa..194609c 100644 --- a/browser-domain/src/components/CreateFlight/CreateFlight.tsx +++ b/browser-domain/src/components/CreateFlight/CreateFlight.tsx @@ -51,7 +51,7 @@ export const CreateFlight = () => { .catch((error) => { try { setError(JSON.parse(error.response.data)["detail"] as string); - } catch {} + } catch { } }); }; @@ -63,7 +63,7 @@ export const CreateFlight = () => { let hours = date.getHours(); const minutes = date.getMinutes().toString().padStart(2, '0'); const amOrPm = hours >= 12 ? 'PM' : 'AM'; - + hours = hours % 12 || 12; return `${year}-${month}-${day} ${hours.toString().padStart(2, '0')}:${minutes} ${amOrPm}`; diff --git a/browser-domain/src/components/CreateFlight/EditFlight.tsx b/browser-domain/src/components/CreateFlight/EditFlight/EditFlight.tsx similarity index 90% rename from browser-domain/src/components/CreateFlight/EditFlight.tsx rename to browser-domain/src/components/CreateFlight/EditFlight/EditFlight.tsx index eb7aa5c..9da8f69 100644 --- a/browser-domain/src/components/CreateFlight/EditFlight.tsx +++ b/browser-domain/src/components/CreateFlight/EditFlight/EditFlight.tsx @@ -1,8 +1,8 @@ import React, { useState } from "react"; -import { FlightEditNotNull, Flight } from "../../Types"; +import { FlightEditNotNull, Flight } from "../../../Types"; import { useNavigate, useParams } from "react-router"; -import "./FlightForm.css"; -import { editFlight } from "../../Api"; +import "../FlightForm.css"; +import { editFlight } from "../../../Api"; interface Props { flight?: Flight; @@ -35,17 +35,17 @@ export const EditFlight: React.FC = (props) => { if (flightData.arrival_time != "") { data["arrival_time"] = flightData.arrival_time } - if (flightData.departure_time != ""){ + if (flightData.departure_time != "") { data["departure_time"] = flightData.departure_time } - if (flightData.status != ""){ + if (flightData.status != "") { data["status"] = flightData.status } - if (flightData.gate != ""){ + if (flightData.gate != "") { data["gate"] = flightData.gate } - + if (id == null || id == undefined) return; @@ -57,7 +57,7 @@ export const EditFlight: React.FC = (props) => { .catch((error) => { try { setError(JSON.parse(error.response.data)["detail"] as string); - } catch {} + } catch { } }); }; @@ -67,7 +67,7 @@ export const EditFlight: React.FC = (props) => {

Error: {error}

- } + }