106 lines
2.7 KiB
TypeScript
106 lines
2.7 KiB
TypeScript
import { client } from "@/util/api";
|
|
import { FlightConciseSchema } from "@/util/types";
|
|
import {
|
|
NavLink,
|
|
Text,
|
|
Button,
|
|
ScrollArea,
|
|
Stack,
|
|
Loader,
|
|
Center,
|
|
Container,
|
|
} from "@mantine/core";
|
|
import { Link, useLocation, useNavigate } from "@remix-run/react";
|
|
import { IconPlus } from "@tabler/icons-react";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
|
|
export function FlightsList() {
|
|
const flights = useQuery({
|
|
queryKey: ["flights-list"],
|
|
queryFn: () => client.get(`/flights`).then((res) => res.data),
|
|
});
|
|
|
|
const location = useLocation();
|
|
const page = location.pathname.split("/")[3];
|
|
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<Stack p="0" m="0" gap="0">
|
|
<Button
|
|
variant="outline"
|
|
leftSection={<IconPlus />}
|
|
mb="md"
|
|
onClick={() => navigate("/logbook/flights/new")}
|
|
>
|
|
Add
|
|
</Button>
|
|
<ScrollArea h="calc(100vh - 95px - 50px)">
|
|
{flights.data ? (
|
|
flights.data.map((flight: FlightConciseSchema, index: number) => (
|
|
<NavLink
|
|
key={index}
|
|
component={Link}
|
|
to={`/logbook/flights/${flight.id}`}
|
|
label={`${flight.date}`}
|
|
active={page === flight.id}
|
|
/>
|
|
))
|
|
) : flights.isLoading ? (
|
|
<Center h="calc(100vh - 95px - 50px)">
|
|
<Loader />
|
|
</Center>
|
|
) : (
|
|
<Text p="sm">No Flights</Text>
|
|
)}
|
|
</ScrollArea>
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
export function MobileFlightsList() {
|
|
const flights = useQuery({
|
|
queryKey: ["flights-list"],
|
|
queryFn: () => client.get(`/flights`).then((res) => res.data),
|
|
});
|
|
|
|
const location = useLocation();
|
|
const page = location.pathname.split("/")[3];
|
|
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<Stack p="0" m="0" justify="space-between" h="calc(100vh - 95px)">
|
|
<ScrollArea h="calc(100vh - 95px - 50px">
|
|
{flights.data ? (
|
|
flights.data.map((flight: FlightConciseSchema, index: number) => (
|
|
<NavLink
|
|
key={index}
|
|
component={Link}
|
|
to={`/logbook/flights/${flight.id}`}
|
|
label={`${flight.date}`}
|
|
active={page === flight.id}
|
|
/>
|
|
))
|
|
) : flights.isLoading ? (
|
|
<Center h="calc(100vh - 95px - 70px)">
|
|
<Loader />
|
|
</Center>
|
|
) : (
|
|
<Text p="sm">No Flights</Text>
|
|
)}
|
|
</ScrollArea>
|
|
<Button
|
|
variant="outline"
|
|
leftSection={<IconPlus />}
|
|
mt="md"
|
|
onClick={() => navigate("/logbook/flights/new")}
|
|
>
|
|
Add
|
|
</Button>
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
export default { FlightsList, MobileFlightsList };
|