Implement flight updating
This commit is contained in:
@@ -91,7 +91,12 @@ export default function Flight() {
|
||||
Flight Log
|
||||
</Title>
|
||||
<Group>
|
||||
<Tooltip label="Edit Flight">
|
||||
<Tooltip
|
||||
label="Edit Flight"
|
||||
onClick={() =>
|
||||
navigate(`/logbook/flights/edit/${params.id}`)
|
||||
}
|
||||
>
|
||||
<ActionIcon variant="subtle" size="lg">
|
||||
<IconPencil />
|
||||
</ActionIcon>
|
||||
|
63
web/app/routes/logbook.flights.edit.$id/route.tsx
Normal file
63
web/app/routes/logbook.flights.edit.$id/route.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
import { Container, Stack, Title } from "@mantine/core";
|
||||
import {
|
||||
FlightFormSchema,
|
||||
flightCreateHelper,
|
||||
flightEditHelper,
|
||||
} from "@/util/types";
|
||||
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
|
||||
import { useApi } from "@/util/api";
|
||||
import { useNavigate, useParams } from "@remix-run/react";
|
||||
import { AxiosError } from "axios";
|
||||
import FlightForm from "@/ui/form/flight-form";
|
||||
|
||||
export default function EditFlight() {
|
||||
const params = useParams();
|
||||
|
||||
const navigate = useNavigate();
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
const client = useApi();
|
||||
|
||||
const flight = useQuery({
|
||||
queryKey: [params.id],
|
||||
queryFn: async () =>
|
||||
await client.get(`/flights/${params.id}`).then((res) => res.data),
|
||||
});
|
||||
|
||||
const editFlight = useMutation({
|
||||
mutationFn: async (values: FlightFormSchema) => {
|
||||
const newFlight = flightCreateHelper(values);
|
||||
if (newFlight) {
|
||||
const res = await client.put(`/flights/${params.id}`, newFlight);
|
||||
return res.data;
|
||||
}
|
||||
throw new Error("Flight updating failed");
|
||||
},
|
||||
retry: (failureCount, error: AxiosError) => {
|
||||
return !error || error.response?.status !== 401;
|
||||
},
|
||||
onSuccess: async (data: { id: string }) => {
|
||||
await queryClient.invalidateQueries({ queryKey: ["flights-list"] });
|
||||
navigate(`/logbook/flights/${data.id}`);
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Container>
|
||||
<Stack>
|
||||
<Title order={2}>Edit Flight</Title>
|
||||
|
||||
<FlightForm
|
||||
initialValues={flightEditHelper(flight.data) ?? null}
|
||||
onSubmit={editFlight.mutate}
|
||||
isError={editFlight.isError}
|
||||
error={editFlight.error}
|
||||
submitButtonLabel="Update"
|
||||
withCancelButton
|
||||
cancelFunc={() => navigate(`/logbook/flights/${params.id}`)}
|
||||
mah="calc(100vh - 95px - 110px)"
|
||||
/>
|
||||
</Stack>
|
||||
</Container>
|
||||
);
|
||||
}
|
@@ -39,6 +39,7 @@ export default function NewFlight() {
|
||||
onSubmit={createFlight.mutate}
|
||||
isError={createFlight.isError}
|
||||
error={createFlight.error}
|
||||
mah="calc(100vh - 95px - 110px)"
|
||||
/>
|
||||
</Stack>
|
||||
</Container>
|
||||
|
Reference in New Issue
Block a user