Reformat code

This commit is contained in:
Santiago Lo Coco 2023-12-07 15:48:49 -03:00
parent 6302458c8f
commit 3188637d07
22 changed files with 163 additions and 197 deletions

View File

@ -88,18 +88,18 @@ export const createFlight = (
export const editFlight = ( export const editFlight = (
flight_id:string, flight_id: string,
fligth_data: FlightEdit, fligth_data: FlightEdit,
token: string token: string
):Promise<Flight> => { ): Promise<Flight> => {
return instance.patch("flights/" + flight_id , fligth_data, { return instance.patch("flights/" + flight_id, fligth_data, {
headers: { Authorization: `Bearer ${token}` }, headers: { Authorization: `Bearer ${token}` },
}); });
}; };
export const fetchFlight = ( export const fetchFlight = (
flight_id:string, flight_id: string,
):Promise<Flight> => { ): Promise<Flight> => {
return instance.get("flights/" + flight_id); return instance.get("flights/" + flight_id);
}; };
@ -117,14 +117,14 @@ export const getChatId = (user_id: number, token: string): Promise<Flight> => {
}; };
export const getSubscription = (subscription: SubscriptionsCreate, token: string): Promise<SubscriptionsCreate> => { export const getSubscription = (subscription: SubscriptionsCreate, token: string): Promise<SubscriptionsCreate> => {
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}` }, headers: { Authorization: `Bearer ${token}` },
}); });
}; };
export const unsubscribeFromFlight = (subscription: SubscriptionsCreate, token: string): Promise<any> => { export const unsubscribeFromFlight = (subscription: SubscriptionsCreate, token: string): Promise<any> => {
return instance.delete("subscriptions", { return instance.delete("subscriptions", {
headers: { Authorization: `Bearer ${token}`}, headers: { Authorization: `Bearer ${token}` },
data: subscription data: subscription
}); });
}; };

View File

@ -1,12 +1,12 @@
import { LogIn } from "./components/LogIn/LogIn"; import { LogIn } from "./components/LogIn/LogIn";
import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router"; import { Navigate, Route, RouteProps, Routes, useNavigate, useParams } from "react-router";
import { SignUp } from "./components/SignUp/SignUp"; 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 { Home } from "./components/Home/Home";
import { CreateFlight } from "./components/CreateFlight/CreateFlight"; import { CreateFlight } from "./components/CreateFlight/CreateFlight";
import { Button } from "antd"; import { Button } from "antd";
import useAuth, { AuthProvider } from "./useAuth"; import useAuth, { AuthProvider } from "./useAuth";
import { EditFlight } from "./components/CreateFlight/EditFlight"; import { EditFlight } from "./components/CreateFlight/EditFlight/EditFlight";
import LandingPage from "./components/Landing/Landing"; import LandingPage from "./components/Landing/Landing";
function Router() { function Router() {
@ -18,9 +18,13 @@ function Router() {
<Routes> <Routes>
<Route path="/login" element={!user ? <LogIn /> : <Navigate to="/flights" />} /> <Route path="/login" element={!user ? <LogIn /> : <Navigate to="/flights" />} />
<Route path="/signup" element={<SignUp />} /> <Route path="/signup" element={<SignUp />} />
<Route path="/create-airline" element={!isAdmin ? (!user ? <Navigate to="/login" state={"/create-airline"} /> : <Navigate to="/flights" />) : <CreateAirline />} /> <Route path="/create-airline" element={
!isAdmin ? (!user ? <Navigate to="/login" state={"/create-airline"} /> : <Navigate to="/flights" />) : <CreateAirline />
} />
<Route path="/flights" element={<Home />} /> <Route path="/flights" element={<Home />} />
<Route path="/create-flight" element={!isAirline ? (!user ? <Navigate to="/login" state={"/create-flight"} /> : <Navigate to="/flights" />) : <CreateFlight />} /> <Route path="/create-flight" element={
!isAirline ? (!user ? <Navigate to="/login" state={"/create-flight"} /> : <Navigate to="/flights" />) : <CreateFlight />
} />
<Route path="/edit-flight/:id" element={<EditFlightComponent />} /> <Route path="/edit-flight/:id" element={<EditFlightComponent />} />
<Route path="/" element={<LandingPage />} /> <Route path="/" element={<LandingPage />} />
<Route path="*" element={<Navigate to="/" />} /> <Route path="*" element={<Navigate to="/" />} />
@ -59,7 +63,7 @@ const EditFlightComponent = () => {
} else { } else {
return <EditFlight />; return <EditFlight />;
} }
}; };
function App() { function App() {
return ( return (

View File

@ -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(<Button onClick={() => onClick()}>Button</Button>);
expect(screen.getByText("Button")).toBeVisible();
await userEvent.click(screen.getByText("Button"));
expect(onClick).toBeCalled();
});
});

View File

@ -51,7 +51,7 @@ export const CreateFlight = () => {
.catch((error) => { .catch((error) => {
try { try {
setError(JSON.parse(error.response.data)["detail"] as string); setError(JSON.parse(error.response.data)["detail"] as string);
} catch {} } catch { }
}); });
}; };

View File

@ -1,8 +1,8 @@
import React, { useState } from "react"; import React, { useState } from "react";
import { FlightEditNotNull, Flight } from "../../Types"; import { FlightEditNotNull, Flight } from "../../../Types";
import { useNavigate, useParams } from "react-router"; import { useNavigate, useParams } from "react-router";
import "./FlightForm.css"; import "../FlightForm.css";
import { editFlight } from "../../Api"; import { editFlight } from "../../../Api";
interface Props { interface Props {
flight?: Flight; flight?: Flight;
@ -35,14 +35,14 @@ export const EditFlight: React.FC<Props> = (props) => {
if (flightData.arrival_time != "") { if (flightData.arrival_time != "") {
data["arrival_time"] = flightData.arrival_time data["arrival_time"] = flightData.arrival_time
} }
if (flightData.departure_time != ""){ if (flightData.departure_time != "") {
data["departure_time"] = flightData.departure_time data["departure_time"] = flightData.departure_time
} }
if (flightData.status != ""){ if (flightData.status != "") {
data["status"] = flightData.status data["status"] = flightData.status
} }
if (flightData.gate != ""){ if (flightData.gate != "") {
data["gate"] = flightData.gate data["gate"] = flightData.gate
} }
@ -57,7 +57,7 @@ export const EditFlight: React.FC<Props> = (props) => {
.catch((error) => { .catch((error) => {
try { try {
setError(JSON.parse(error.response.data)["detail"] as string); setError(JSON.parse(error.response.data)["detail"] as string);
} catch {} } catch { }
}); });
}; };

View File

@ -5,10 +5,5 @@ import "../../../matchMedia.mock";
import { Card } from "./Card"; import { Card } from "./Card";
describe("Card Component Test", () => { describe("Card Component Test", () => {
test("Display initial, name and icon", async () => { test("Display initial, name and icon", async () => { });
// render(<Card name="Belgrano" />);
// expect(screen.getByText("Belgrano📍")).toBeVisible();
// expect(screen.getByText("B")).toBeVisible();
});
}); });

View File

@ -41,7 +41,7 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
.then(() => { .then(() => {
refresh() refresh()
getChatId(user.id, token) getChatId(user.id, token)
.then(() => {}) .then(() => { })
.catch((error) => { .catch((error) => {
setModalVisible(true); setModalVisible(true);
}) })

View File

@ -7,22 +7,7 @@ jest.mock("react-router-dom", () => ({
import "../../matchMedia.mock"; import "../../matchMedia.mock";
import "@testing-library/jest-dom"; import "@testing-library/jest-dom";
import { render, screen } from "@testing-library/react";
import { Home } from "./Home";
describe("Home View Test", () => { describe("Home View Test", () => {
test("Display initial, name and icon", async () => { test("Display initial, name and icon", async () => { });
// render(
// <Home
// zones={[
// { id: 1, name: "Belgrano" },
// { id: 2, name: "San Isidro" },
// ]}
// />
// );
// expect(screen.getByText("Zones")).toBeVisible();
// expect(screen.getByText("Belgrano📍")).toBeVisible();
// expect(screen.getByText("San Isidro📍")).toBeVisible();
});
}); });

View File

@ -5,28 +5,28 @@
justify-content: center; justify-content: center;
height: 100vh; height: 100vh;
text-align: center; text-align: center;
} }
.Title { .Title {
font-size: 2.5em; font-size: 2.5em;
margin-bottom: 20px; margin-bottom: 20px;
} }
.Description { .Description {
font-size: 1.2em; font-size: 1.2em;
margin-bottom: 20px; margin-bottom: 20px;
} }
.ButtonContainer { .ButtonContainer {
display: flex; display: flex;
gap: 20px; gap: 20px;
} }
.StyledLink { .StyledLink {
text-decoration: none; text-decoration: none;
} }
.StyledButton { .StyledButton {
padding: 10px 20px; padding: 10px 20px;
font-size: 1.2em; font-size: 1.2em;
background-color: #3498db; background-color: #3498db;
@ -34,5 +34,4 @@
border: none; border: none;
border-radius: 5px; border-radius: 5px;
cursor: pointer; cursor: pointer;
} }

View File

@ -32,7 +32,7 @@ export const LogIn = () => {
<Button <Button
style={{ width: "100%" }} style={{ width: "100%" }}
onClick={async () => onClick={async () =>
login({ email, password}, state) login({ email, password }, state)
} }
name="Login" name="Login"
loading={loading} loading={loading}

View File

@ -96,4 +96,4 @@ code {
padding: 15px; padding: 15px;
margin-bottom: 15px; margin-bottom: 15px;
border-radius: 4px; border-radius: 4px;
} }

View File

@ -88,7 +88,7 @@ export function AuthProvider({
.catch((error) => { .catch((error) => {
try { try {
setError(JSON.parse(error.response.data)["detail"] as string); setError(JSON.parse(error.response.data)["detail"] as string);
} catch {} } catch { }
}) })
.finally(() => setLoading(false)); .finally(() => setLoading(false));
}) })
@ -96,7 +96,7 @@ export function AuthProvider({
setLoading(false) setLoading(false)
try { try {
setError(JSON.parse(error.response.data)["detail"] as string); setError(JSON.parse(error.response.data)["detail"] as string);
} catch {} } catch { }
}) })
// .finally(() => setLoading(false)); // .finally(() => setLoading(false));
} }

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
npm run test:integration npm run test:integration

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
npm run test:integration npm run test:integration