38 lines
1.9 KiB
TypeScript
38 lines
1.9 KiB
TypeScript
'use client'
|
|
import { useMutation } from '@tanstack/react-query'
|
|
import { UserAdd } from './schema'
|
|
import { toISOIfNotZ } from '@/lib/utils'
|
|
|
|
const fetchGraphQlUsersAdd = async (
|
|
record: UserAdd,
|
|
selectedBuildIDS: string[],
|
|
selectedCompanyIDS: string[],
|
|
defaultSelection: string,
|
|
personID: string,
|
|
refetchTable: () => void
|
|
): Promise<{ data: UserAdd | null; status: number }> => {
|
|
record.expiryStarts = record?.expiryStarts ? toISOIfNotZ(record.expiryStarts) : undefined;
|
|
record.expiryEnds = record?.expiryEnds ? toISOIfNotZ(record.expiryEnds) : undefined;
|
|
const payload = { ...record, person: personID, collectionTokens: { defaultSelection, selectedBuildIDS, selectedCompanyIDS } }
|
|
try {
|
|
const res = await fetch('/api/users/add', { method: 'POST', cache: 'no-store', credentials: "include", body: JSON.stringify(payload) });
|
|
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 useAddUserMutation() {
|
|
return useMutation({
|
|
mutationFn: (
|
|
{
|
|
data, selectedBuildIDS, selectedCompanyIDS, defaultSelection, personID, refetchTable
|
|
}: {
|
|
data: UserAdd, selectedBuildIDS: string[], selectedCompanyIDS: string[], defaultSelection: string, personID: string, refetchTable: () => void
|
|
}
|
|
) => fetchGraphQlUsersAdd(data, selectedBuildIDS, selectedCompanyIDS, defaultSelection, personID, refetchTable),
|
|
onSuccess: () => { console.log("User created successfully") },
|
|
onError: (error) => { console.error("Create user failed:", error) },
|
|
})
|
|
}
|