diff --git a/browser-domain/package-lock.json b/browser-domain/package-lock.json index ac16c40..6af8d65 100644 --- a/browser-domain/package-lock.json +++ b/browser-domain/package-lock.json @@ -1,11 +1,11 @@ { - "name": "sample-client-users", + "name": "browser-client", "version": "0.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "sample-client-users", + "name": "browser-client", "version": "0.1.0", "dependencies": { "antd": "^5.3.3", diff --git a/browser-domain/src/Types.d.ts b/browser-domain/src/Types.d.ts index 8b668f1..3fa9a02 100644 --- a/browser-domain/src/Types.d.ts +++ b/browser-domain/src/Types.d.ts @@ -48,6 +48,16 @@ export interface FlightCreate { gate: string; } +export interface FlightCreateFull { + flight_code: string; + status: string; + origin: string; + destination: string; + departure_time: Date; + arrival_time: Date; + gate: string; +} + export interface FlightEditNotNull { departure_time: string, arrival_time: string, diff --git a/browser-domain/src/components/CreateFlight/CreateFlight.tsx b/browser-domain/src/components/CreateFlight/CreateFlight.tsx index 12a5903..796d069 100644 --- a/browser-domain/src/components/CreateFlight/CreateFlight.tsx +++ b/browser-domain/src/components/CreateFlight/CreateFlight.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from "react"; -import { FlightCreate, Flight } from "../../Types"; +import { FlightCreate, FlightCreateFull, Flight } from "../../Types"; import { useNavigate } from "react-router"; import "./FlightForm.css"; import { createFlight } from "../../Api"; @@ -14,15 +14,18 @@ export const CreateFlight = () => { status: "Scheduled", origin: "Frankfurt", destination: "Rome", - departure_time: "2023-10-09 10:00 AM", - arrival_time: "2023-10-09 12:00 PM", + departure_time: new Date().toISOString().slice(0, 16), + arrival_time: new Date(new Date().getTime() + 2 * 60 * 60 * 1000).toISOString().slice(0, 16), gate: "A1", }); const handleSubmit = async (event: React.FormEvent) => { event.preventDefault(); - setError(null); + if (flightData.departure_time >= flightData.arrival_time) { + setError("Departure time must be before the arrival time") + return; + } const token = localStorage.getItem("token"); if (!token) { @@ -30,7 +33,17 @@ export const CreateFlight = () => { return; } - createFlight(flightData, token) + let newFlightData: FlightCreate = { + flight_code: flightData.flight_code, + status: flightData.status, + origin: flightData.origin, + destination: flightData.destination, + departure_time: formatDate(flightData.departure_time), + arrival_time: formatDate(flightData.arrival_time), + gate: flightData.gate, + } + + createFlight(newFlightData, token) .then((data) => { setFlight(data); navigate("/home") @@ -42,6 +55,20 @@ export const CreateFlight = () => { }); }; + function formatDate(isoString: string) { + let date = new Date(isoString) + const year = date.getFullYear(); + const month = (date.getMonth() + 1).toString().padStart(2, '0'); + const day = date.getDate().toString().padStart(2, '0'); + 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}`; + } + return (
{error && @@ -96,7 +123,7 @@ export const CreateFlight = () => {