'use client' import { useQuery, useMutation } from '@tanstack/react-query' import { ListArguments } from '@/types/listRequest' const fetchGraphQlBuildAddressesList = async (params: ListArguments): Promise => { console.log('Fetching test data from local API'); const { limit, skip, sort, filters } = params; try { const res = await fetch('/api/build-address/list', { method: 'POST', cache: 'no-store', credentials: "include", body: JSON.stringify({ limit, skip, sort, filters }) }); 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(); return { data: data.data, totalCount: data.totalCount } } catch (error) { console.error('Error fetching test data:', error); throw error } }; const fetchGraphQlDeleteBuildAddress = async (uuid: string): Promise => { console.log('Fetching test data from local API'); try { const res = await fetch(`/api/build-address/delete?uuid=${uuid}`, { method: 'GET', cache: 'no-store', credentials: "include" }); 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(); return data } catch (error) { console.error('Error fetching test data:', error); throw error } }; export function useGraphQlBuildAddressesList(params: ListArguments) { return useQuery({ queryKey: ['graphql-build-addresses-list', params], queryFn: () => fetchGraphQlBuildAddressesList(params) }) } export function useDeleteBuildAddressMutation() { return useMutation({ mutationFn: ({ uuid }: { uuid: string }) => fetchGraphQlDeleteBuildAddress(uuid), onSuccess: () => { console.log("Build address deleted successfully") }, onError: (error) => { console.error("Delete build address failed:", error) }, }) }