Reformat code
This commit is contained in:
parent
6302458c8f
commit
3188637d07
|
@ -88,18 +88,18 @@ export const createFlight = (
|
|||
|
||||
|
||||
export const editFlight = (
|
||||
flight_id:string,
|
||||
flight_id: string,
|
||||
fligth_data: FlightEdit,
|
||||
token: string
|
||||
):Promise<Flight> => {
|
||||
return instance.patch("flights/" + flight_id , fligth_data, {
|
||||
): Promise<Flight> => {
|
||||
return instance.patch("flights/" + flight_id, fligth_data, {
|
||||
headers: { Authorization: `Bearer ${token}` },
|
||||
});
|
||||
};
|
||||
|
||||
export const fetchFlight = (
|
||||
flight_id:string,
|
||||
):Promise<Flight> => {
|
||||
flight_id: string,
|
||||
): Promise<Flight> => {
|
||||
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> => {
|
||||
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<any> => {
|
||||
return instance.delete("subscriptions", {
|
||||
headers: { Authorization: `Bearer ${token}`},
|
||||
headers: { Authorization: `Bearer ${token}` },
|
||||
data: subscription
|
||||
});
|
||||
};
|
||||
|
|
|
@ -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,9 +18,13 @@ function Router() {
|
|||
<Routes>
|
||||
<Route path="/login" element={!user ? <LogIn /> : <Navigate to="/flights" />} />
|
||||
<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="/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="/" element={<LandingPage />} />
|
||||
<Route path="*" element={<Navigate to="/" />} />
|
||||
|
@ -59,7 +63,7 @@ const EditFlightComponent = () => {
|
|||
} else {
|
||||
return <EditFlight />;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
function App() {
|
||||
return (
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
});
|
|
@ -51,7 +51,7 @@ export const CreateFlight = () => {
|
|||
.catch((error) => {
|
||||
try {
|
||||
setError(JSON.parse(error.response.data)["detail"] as string);
|
||||
} catch {}
|
||||
} catch { }
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
@ -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,14 +35,14 @@ export const EditFlight: React.FC<Props> = (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
|
||||
}
|
||||
|
||||
|
@ -57,7 +57,7 @@ export const EditFlight: React.FC<Props> = (props) => {
|
|||
.catch((error) => {
|
||||
try {
|
||||
setError(JSON.parse(error.response.data)["detail"] as string);
|
||||
} catch {}
|
||||
} catch { }
|
||||
});
|
||||
};
|
||||
|
|
@ -5,10 +5,5 @@ import "../../../matchMedia.mock";
|
|||
import { Card } from "./Card";
|
||||
|
||||
describe("Card Component Test", () => {
|
||||
test("Display initial, name and icon", async () => {
|
||||
// render(<Card name="Belgrano" />);
|
||||
|
||||
// expect(screen.getByText("Belgrano📍")).toBeVisible();
|
||||
// expect(screen.getByText("B")).toBeVisible();
|
||||
});
|
||||
test("Display initial, name and icon", async () => { });
|
||||
});
|
||||
|
|
|
@ -41,7 +41,7 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
|
|||
.then(() => {
|
||||
refresh()
|
||||
getChatId(user.id, token)
|
||||
.then(() => {})
|
||||
.then(() => { })
|
||||
.catch((error) => {
|
||||
setModalVisible(true);
|
||||
})
|
||||
|
|
|
@ -7,22 +7,7 @@ jest.mock("react-router-dom", () => ({
|
|||
|
||||
import "../../matchMedia.mock";
|
||||
import "@testing-library/jest-dom";
|
||||
import { render, screen } from "@testing-library/react";
|
||||
import { Home } from "./Home";
|
||||
|
||||
describe("Home View Test", () => {
|
||||
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();
|
||||
});
|
||||
test("Display initial, name and icon", async () => { });
|
||||
});
|
||||
|
|
|
@ -5,28 +5,28 @@
|
|||
justify-content: center;
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.Title {
|
||||
.Title {
|
||||
font-size: 2.5em;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.Description {
|
||||
.Description {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.ButtonContainer {
|
||||
.ButtonContainer {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.StyledLink {
|
||||
.StyledLink {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.StyledButton {
|
||||
.StyledButton {
|
||||
padding: 10px 20px;
|
||||
font-size: 1.2em;
|
||||
background-color: #3498db;
|
||||
|
@ -34,5 +34,4 @@
|
|||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
}
|
|
@ -32,7 +32,7 @@ export const LogIn = () => {
|
|||
<Button
|
||||
style={{ width: "100%" }}
|
||||
onClick={async () =>
|
||||
login({ email, password}, state)
|
||||
login({ email, password }, state)
|
||||
}
|
||||
name="Login"
|
||||
loading={loading}
|
||||
|
|
|
@ -96,4 +96,4 @@ code {
|
|||
padding: 15px;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
|
@ -88,7 +88,7 @@ export function AuthProvider({
|
|||
.catch((error) => {
|
||||
try {
|
||||
setError(JSON.parse(error.response.data)["detail"] as string);
|
||||
} catch {}
|
||||
} catch { }
|
||||
})
|
||||
.finally(() => setLoading(false));
|
||||
})
|
||||
|
@ -96,7 +96,7 @@ export function AuthProvider({
|
|||
setLoading(false)
|
||||
try {
|
||||
setError(JSON.parse(error.response.data)["detail"] as string);
|
||||
} catch {}
|
||||
} catch { }
|
||||
})
|
||||
// .finally(() => setLoading(false));
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/bash -e
|
||||
|
||||
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
||||
npm run test:integration
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/bash -e
|
||||
|
||||
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
|
||||
npm run test:integration
|
||||
|
|
Loading…
Reference in New Issue