import React, { useEffect, useState } from "react"; import { Card } from "./Card/Card"; import { useFetchFlights } from "../../hooks/useFetchFlights"; import { Flight } from "../../Types"; import { useNavigate } from "react-router"; import useAuth from "../../useAuth"; import { useFetchSubscriptions } from "../../hooks/useFetchSubscriptions"; interface Props { flights?: Flight[]; } export const Home: React.FC = (props) => { const urlParams = new URLSearchParams(window.location.search); const origin = urlParams.get('origin'); const initialPage = parseInt(urlParams.get('page') || '1', 10); const { flights, count, error, isLoading, fetchData: refreshFlights } = useFetchFlights(origin, initialPage); const navigate = useNavigate() const [currentPage, setCurrentPage] = useState(initialPage); const { loading, isAirline, user, token, isAdmin } = useAuth(); const { subscriptions, loading: subsLoading, fetchData } = useFetchSubscriptions(user, token); useEffect(() => { const newParams = new URLSearchParams(window.location.search); newParams.set('page', currentPage.toString()); navigate(`?${newParams.toString()}`); }, [currentPage, navigate]); useEffect(() => { if (currentPage > 1 && count == 0) { setCurrentPage(currentPage - 1); } }, [count]); const goToPrevPage = () => { if (currentPage > 1) { setCurrentPage(currentPage - 1); } }; const goToNextPage = () => { setCurrentPage(currentPage + 1); }; const checkMaxPage = () => { return currentPage * 8 >= count ? false : true } const checkMinPage = () => { return currentPage > 1 ? true : false } if (loading || isLoading || subsLoading) { return
Loading...
; } let columns = flights.length >= 4 ? 4 : flights.length return (
{isAirline ? : <>} {isAdmin ? : <>}

Flights

{(props.flights ? props.flights : flights).map((f) => { return i.flight_id === f.id))} refresh={fetchData} refreshFlights={refreshFlights} isAirline={isAirline} isAdmin={isAdmin} />; })} {error ?
{error}
: <>}
{checkMinPage() && } Page {currentPage} {checkMaxPage() && }
); };