34 lines
766 B
TypeScript
34 lines
766 B
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
import { useApi } from "./api";
|
|
|
|
export function useAircraft() {
|
|
const client = useApi();
|
|
|
|
const aircraft = useQuery({
|
|
queryKey: ["aircraft-list"],
|
|
queryFn: async () => await client.get(`/aircraft`).then((res) => res.data),
|
|
});
|
|
|
|
return aircraft;
|
|
}
|
|
|
|
export function useFlights(filter: string = "", value: string = "") {
|
|
const client = useApi();
|
|
|
|
const flights = useQuery({
|
|
queryKey: ["flights-list"],
|
|
queryFn: async () =>
|
|
await client
|
|
.get(
|
|
`/flights/by-date?order=1${
|
|
filter !== "" && value !== ""
|
|
? `&filter=${filter}&value=${value}`
|
|
: ""
|
|
}`
|
|
)
|
|
.then((res) => res.data),
|
|
});
|
|
|
|
return flights;
|
|
}
|