26 lines
1.6 KiB
TypeScript
26 lines
1.6 KiB
TypeScript
'use client'
|
|
import { useMutation } from '@tanstack/react-query'
|
|
import { UpdateBuildPartsUpdate } from './types';
|
|
import { toISOIfNotZ } from '@/lib/utils';
|
|
|
|
const fetchGraphQlBuildPartsUpdate = async (record: UpdateBuildPartsUpdate, uuid: string, buildId: string, refetchTable: () => void): Promise<{ data: UpdateBuildPartsUpdate | null; status: number }> => {
|
|
console.log('Fetching test data from local API');
|
|
record.expiryStarts = record.expiryStarts ? toISOIfNotZ(record.expiryStarts) : undefined;
|
|
record.expiryEnds = record.expiryEnds ? toISOIfNotZ(record.expiryEnds) : undefined;
|
|
try {
|
|
const res = await fetch(`/api/builds-parts/update?uuid=${uuid || ''}`, { method: 'POST', cache: 'no-store', credentials: "include", body: JSON.stringify({ ...record, buildId }) });
|
|
if (!res.ok) { const errorText = await res.text(); console.error('Test data API error:', errorText); throw new Error(`API error: ${res.status} ${res.statusText}`) }
|
|
const data = await res.json();
|
|
refetchTable();
|
|
return { data: data.data, status: res.status }
|
|
} catch (error) { console.error('Error fetching test data:', error); throw error }
|
|
};
|
|
|
|
export function useUpdateBuildPartsMutation() {
|
|
return useMutation({
|
|
mutationFn: ({ data, uuid, buildId, refetchTable }: { data: UpdateBuildPartsUpdate, uuid: string, buildId: string, refetchTable: () => void }) => fetchGraphQlBuildPartsUpdate(data, uuid, buildId, refetchTable),
|
|
onSuccess: () => { console.log("Build Parts updated successfully") },
|
|
onError: (error) => { console.error("Update Build Parts failed:", error) },
|
|
})
|
|
}
|