Reformat code
This commit is contained in:
parent
6302458c8f
commit
3188637d07
|
@ -87,21 +87,21 @@ 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);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export const subscribeToFlight = (subscription: SubscriptionsCreate, token: string): Promise<SubscriptionsCreate> => {
|
export const subscribeToFlight = (subscription: SubscriptionsCreate, token: string): Promise<SubscriptionsCreate> => {
|
||||||
|
@ -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
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -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,29 +18,33 @@ 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="/" />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
{window.location.pathname != '/' &&
|
{window.location.pathname != '/' &&
|
||||||
<div className="LogoutButton">
|
<div className="LogoutButton">
|
||||||
{!!!localStorage.getItem("token") ?
|
{!!!localStorage.getItem("token") ?
|
||||||
<Button
|
<Button
|
||||||
onClick={() => navigate("/login")}
|
onClick={() => navigate("/login")}
|
||||||
>
|
>
|
||||||
Login
|
Login
|
||||||
</Button>
|
</Button>
|
||||||
:
|
:
|
||||||
<Button
|
<Button
|
||||||
onClick={logout}
|
onClick={logout}
|
||||||
>
|
>
|
||||||
Logout
|
Logout
|
||||||
</Button>
|
</Button>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -49,17 +53,17 @@ function Router() {
|
||||||
const EditFlightComponent = () => {
|
const EditFlightComponent = () => {
|
||||||
const { isAirline, isAdmin, user } = useAuth();
|
const { isAirline, isAdmin, user } = useAuth();
|
||||||
const params = useParams();
|
const params = useParams();
|
||||||
|
|
||||||
if (!isAirline && !isAdmin) {
|
if (!isAirline && !isAdmin) {
|
||||||
if (!user) {
|
if (!user) {
|
||||||
return <Navigate to="/login" state={{ intendedPath: `/edit-flight/${params.id}` }} />;
|
return <Navigate to="/login" state={{ intendedPath: `/edit-flight/${params.id}` }} />;
|
||||||
} else {
|
} else {
|
||||||
return <Navigate to="/flights" />;
|
return <Navigate to="/flights" />;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return <EditFlight />;
|
return <EditFlight />;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -59,14 +59,14 @@ export interface FlightCreateFull {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FlightEditNotNull {
|
export interface FlightEditNotNull {
|
||||||
departure_time: string,
|
departure_time: string,
|
||||||
arrival_time: string,
|
arrival_time: string,
|
||||||
status: string,
|
status: string,
|
||||||
gate: string
|
gate: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FlightEdit {
|
export interface FlightEdit {
|
||||||
departure_time: string?,
|
departure_time: string?,
|
||||||
arrival_time: string?,
|
arrival_time: string?,
|
||||||
status: string?,
|
status: string?,
|
||||||
gate: string?
|
gate: string?
|
||||||
|
|
|
@ -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) => {
|
.catch((error) => {
|
||||||
try {
|
try {
|
||||||
setError(JSON.parse(error.response.data)["detail"] as string);
|
setError(JSON.parse(error.response.data)["detail"] as string);
|
||||||
} catch {}
|
} catch { }
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ export const CreateFlight = () => {
|
||||||
let hours = date.getHours();
|
let hours = date.getHours();
|
||||||
const minutes = date.getMinutes().toString().padStart(2, '0');
|
const minutes = date.getMinutes().toString().padStart(2, '0');
|
||||||
const amOrPm = hours >= 12 ? 'PM' : 'AM';
|
const amOrPm = hours >= 12 ? 'PM' : 'AM';
|
||||||
|
|
||||||
hours = hours % 12 || 12;
|
hours = hours % 12 || 12;
|
||||||
|
|
||||||
return `${year}-${month}-${day} ${hours.toString().padStart(2, '0')}:${minutes} ${amOrPm}`;
|
return `${year}-${month}-${day} ${hours.toString().padStart(2, '0')}:${minutes} ${amOrPm}`;
|
||||||
|
|
|
@ -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,17 +35,17 @@ 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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (id == null || id == undefined)
|
if (id == null || id == undefined)
|
||||||
return;
|
return;
|
||||||
|
@ -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 { }
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ export const EditFlight: React.FC<Props> = (props) => {
|
||||||
<div className="form-error">
|
<div className="form-error">
|
||||||
<p><strong>Error:</strong> {error}</p>
|
<p><strong>Error:</strong> {error}</p>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<label>
|
<label>
|
||||||
Status:
|
Status:
|
||||||
<input
|
<input
|
|
@ -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();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -22,7 +22,7 @@ const { Text } = Typography;
|
||||||
export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => {
|
export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => {
|
||||||
const [modalVisible, setModalVisible] = useState<boolean>(false);
|
const [modalVisible, setModalVisible] = useState<boolean>(false);
|
||||||
|
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const handleSubscribe = async (event: React.FormEvent) => {
|
const handleSubscribe = async (event: React.FormEvent) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -41,13 +41,13 @@ 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);
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleEdit = async (event: React.FormEvent) => {
|
const handleEdit = async (event: React.FormEvent) => {
|
||||||
|
@ -73,7 +73,7 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
// console.log(error)
|
// console.log(error)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleModalClose = () => {
|
const handleModalClose = () => {
|
||||||
|
@ -99,7 +99,7 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
// console.log(error)
|
// console.log(error)
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -140,34 +140,34 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
|
||||||
{((!isAirline && !isAdmin) || ((user && flight.user_id == user.id) || isAdmin)) && <br></br>}
|
{((!isAirline && !isAdmin) || ((user && flight.user_id == user.id) || isAdmin)) && <br></br>}
|
||||||
</div>
|
</div>
|
||||||
{!isAirline && !isAdmin ?
|
{!isAirline && !isAdmin ?
|
||||||
(
|
(
|
||||||
!(subscribed) ?
|
!(subscribed) ?
|
||||||
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
||||||
<Button type="primary" onClick={handleSubscribe}>
|
<Button type="primary" onClick={handleSubscribe}>
|
||||||
Subscribe
|
Subscribe
|
||||||
</Button>
|
</Button>
|
||||||
</Space>
|
</Space>
|
||||||
|
:
|
||||||
|
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
||||||
|
<Button type="primary" onClick={handleUnsubscribe}>
|
||||||
|
Unsubscribe
|
||||||
|
</Button>
|
||||||
|
</Space>
|
||||||
|
)
|
||||||
:
|
:
|
||||||
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
(
|
||||||
<Button type="primary" onClick={handleUnsubscribe}>
|
(user && flight.user_id == user.id) || isAdmin ?
|
||||||
Unsubscribe
|
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
||||||
</Button>
|
<Button type="primary" onClick={handleEdit}>
|
||||||
</Space>
|
Edit
|
||||||
)
|
</Button>
|
||||||
:
|
<Button type="primary" onClick={handleDelete}>
|
||||||
(
|
Delete
|
||||||
(user && flight.user_id == user.id) || isAdmin ?
|
</Button>
|
||||||
<Space size={8} direction="horizontal" style={{ justifyContent: "center" }}>
|
</Space>
|
||||||
<Button type="primary" onClick={handleEdit}>
|
:
|
||||||
Edit
|
<></>
|
||||||
</Button>
|
)
|
||||||
<Button type="primary" onClick={handleDelete}>
|
|
||||||
Delete
|
|
||||||
</Button>
|
|
||||||
</Space>
|
|
||||||
:
|
|
||||||
<></>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
<Modal
|
<Modal
|
||||||
title="Attention"
|
title="Attention"
|
||||||
|
@ -180,7 +180,7 @@ export const Card: React.FC<CardProps> = ({ flight, user, subscribed, refresh, r
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<p>To start receiving messages open this link on your smartphone:
|
<p>To start receiving messages open this link on your smartphone:
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<Link to={`https://t.me/fids_system_bot?start=${user?.id}`} target="_blank">
|
<Link to={`https://t.me/fids_system_bot?start=${user?.id}`} target="_blank">
|
||||||
{`https://t.me/fids_system_bot?start=${user?.id}`}
|
{`https://t.me/fids_system_bot?start=${user?.id}`}
|
||||||
|
|
|
@ -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();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,37 +3,37 @@ import { Link, useNavigate } from "react-router-dom";
|
||||||
import "./Landing.css";
|
import "./Landing.css";
|
||||||
|
|
||||||
const LandingPage: React.FC = () => {
|
const LandingPage: React.FC = () => {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const handleSubscribeClick = () => {
|
const handleSubscribeClick = () => {
|
||||||
navigate("/login");
|
navigate("/login");
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleGoToFlightsClick = () => {
|
const handleGoToFlightsClick = () => {
|
||||||
navigate("/flights");
|
navigate("/flights");
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="LandingPageContainer">
|
<div className="LandingPageContainer">
|
||||||
<h1 className="Title">Welcome to FIDS!</h1>
|
<h1 className="Title">Welcome to FIDS!</h1>
|
||||||
<p className="Description">
|
<p className="Description">
|
||||||
If you want to subscribe to flights, please create or log in to your account.
|
If you want to subscribe to flights, please create or log in to your account.
|
||||||
</p>
|
</p>
|
||||||
<div className="ButtonContainer">
|
<div className="ButtonContainer">
|
||||||
<Link to="/login" className="StyledLink">
|
<Link to="/login" className="StyledLink">
|
||||||
<button className="StyledButton" onClick={handleSubscribeClick}>Create an Account</button>
|
<button className="StyledButton" onClick={handleSubscribeClick}>Create an Account</button>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<p className="Description">
|
<p className="Description">
|
||||||
Otherwise, you can continue to the flights page.
|
Otherwise, you can continue to the flights page.
|
||||||
</p>
|
</p>
|
||||||
<div className="ButtonContainer">
|
<div className="ButtonContainer">
|
||||||
<button className="StyledButton" onClick={handleGoToFlightsClick}>
|
<button className="StyledButton" onClick={handleGoToFlightsClick}>
|
||||||
Go to Flights
|
Go to Flights
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default LandingPage;
|
export default LandingPage;
|
||||||
|
|
|
@ -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}
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { useState } from "react";
|
||||||
import { Flight } from "../Types";
|
import { Flight } from "../Types";
|
||||||
import { fetchFlight } from "../Api";
|
import { fetchFlight } from "../Api";
|
||||||
|
|
||||||
export const useFetchFlight = (id: string | undefined) => {
|
export const useFetchFlight = (id: string | undefined) => {
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
const [flight, setFlight] = useState<Flight>();
|
const [flight, setFlight] = useState<Flight>();
|
||||||
const [count, setCount] = useState<number>(0);
|
const [count, setCount] = useState<number>(0);
|
||||||
|
@ -12,7 +12,7 @@ export const useFetchFlight = (id: string | undefined) => {
|
||||||
setError(null);
|
setError(null);
|
||||||
|
|
||||||
if (id == null || id == undefined)
|
if (id == null || id == undefined)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
fetchFlight(id)
|
fetchFlight(id)
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import { useCallback, useEffect } from "react";
|
import { useCallback, useEffect } from "react";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { Flight } from "../Types";
|
import { Flight } from "../Types";
|
||||||
import { fetchFlights } from "../Api";
|
import { fetchFlights } from "../Api";
|
||||||
|
|
||||||
export const useFetchFlights = (page: number | null, search: string | null) => {
|
export const useFetchFlights = (page: number | null, search: string | null) => {
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
const [flights, setFlights] = useState<Flight[]>([]);
|
const [flights, setFlights] = useState<Flight[]>([]);
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { useState } from "react";
|
||||||
import { User, Flight, SubscriptionsCreate } from "../Types";
|
import { User, Flight, SubscriptionsCreate } from "../Types";
|
||||||
import { fetchSubscriptions } from "../Api";
|
import { fetchSubscriptions } from "../Api";
|
||||||
|
|
||||||
export const useFetchSubscriptions = (user: User | undefined, token: string | undefined, isUser: boolean) => {
|
export const useFetchSubscriptions = (user: User | undefined, token: string | undefined, isUser: boolean) => {
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
const [subscriptions, setSubscriptions] = useState<SubscriptionsCreate[]>([]);
|
const [subscriptions, setSubscriptions] = useState<SubscriptionsCreate[]>([]);
|
||||||
const [loading, setLoading] = useState<boolean>(true);
|
const [loading, setLoading] = useState<boolean>(true);
|
||||||
|
|
|
@ -96,4 +96,4 @@ code {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
|
@ -42,12 +42,12 @@ describe('Flight API Endpoints', () => {
|
||||||
|
|
||||||
it('should retrieve the created flight by ID', async () => {
|
it('should retrieve the created flight by ID', async () => {
|
||||||
const response = await request(app)
|
const response = await request(app)
|
||||||
.get(`/flights/${createdFlightId}`)
|
.get(`/flights/${createdFlightId}`)
|
||||||
.set('Authorization', `Bearer ${authToken}`);
|
.set('Authorization', `Bearer ${authToken}`);
|
||||||
|
|
||||||
expect(response.statusCode).toBe(200);
|
expect(response.statusCode).toBe(200);
|
||||||
expect(response.body).toHaveProperty('id', createdFlightId);
|
expect(response.body).toHaveProperty('id', createdFlightId);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should update a flight by ID', async () => {
|
it('should update a flight by ID', async () => {
|
||||||
const flightUpdate = {
|
const flightUpdate = {
|
||||||
|
@ -66,12 +66,12 @@ describe('Flight API Endpoints', () => {
|
||||||
|
|
||||||
it('should retrieve filtered flights', async () => {
|
it('should retrieve filtered flights', async () => {
|
||||||
const response = await request(app)
|
const response = await request(app)
|
||||||
.get('/flights')
|
.get('/flights')
|
||||||
.query({ origin: 'Frankfurt' })
|
.query({ origin: 'Frankfurt' })
|
||||||
.set('Authorization', `Bearer ${authToken}`);
|
.set('Authorization', `Bearer ${authToken}`);
|
||||||
|
|
||||||
expect(response.statusCode).toBe(200);
|
expect(response.statusCode).toBe(200);
|
||||||
expect(response.body).toBeInstanceOf(Array);
|
expect(response.body).toBeInstanceOf(Array);
|
||||||
expect(response.body[0].id).toBe(createdFlightId)
|
expect(response.body[0].id).toBe(createdFlightId)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -42,12 +42,12 @@ describe('Flight API Endpoints', () => {
|
||||||
|
|
||||||
it('should retrieve the created flight by ID', async () => {
|
it('should retrieve the created flight by ID', async () => {
|
||||||
const response = await request(app)
|
const response = await request(app)
|
||||||
.get(`/flights/${createdFlightId}`)
|
.get(`/flights/${createdFlightId}`)
|
||||||
.set('Authorization', `Bearer ${authToken}`);
|
.set('Authorization', `Bearer ${authToken}`);
|
||||||
|
|
||||||
expect(response.statusCode).toBe(200);
|
expect(response.statusCode).toBe(200);
|
||||||
expect(response.body).toHaveProperty('id', createdFlightId);
|
expect(response.body).toHaveProperty('id', createdFlightId);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should update a flight by ID', async () => {
|
it('should update a flight by ID', async () => {
|
||||||
const flightUpdate = {
|
const flightUpdate = {
|
||||||
|
@ -66,12 +66,12 @@ describe('Flight API Endpoints', () => {
|
||||||
|
|
||||||
it('should retrieve filtered flights', async () => {
|
it('should retrieve filtered flights', async () => {
|
||||||
const response = await request(app)
|
const response = await request(app)
|
||||||
.get('/flights')
|
.get('/flights')
|
||||||
.query({ origin: 'Frankfurt' })
|
.query({ origin: 'Frankfurt' })
|
||||||
.set('Authorization', `Bearer ${authToken}`);
|
.set('Authorization', `Bearer ${authToken}`);
|
||||||
|
|
||||||
expect(response.statusCode).toBe(200);
|
expect(response.statusCode).toBe(200);
|
||||||
expect(response.body).toBeInstanceOf(Array);
|
expect(response.body).toBeInstanceOf(Array);
|
||||||
expect(response.body[0].id).toBe(createdFlightId)
|
expect(response.body[0].id).toBe(createdFlightId)
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue