Files
supabase/apps/studio/data/edge-functions/edge-function-test-mutation.ts
Ivan Vasilov 8b657165b5 chore: Migrate to use custom type for ReactQuery queries and mutations (#40073)
* Add custom types for queries, mutations and infinite queries.

* Migrate all queries to use the new type.

* Migrate all infinite queries to useCustomInfiniteQueryOptions.

* Migrate all mutations to use useCustomMutationOptions.

* Add type to all imports in `types` folder.
2025-11-03 13:18:13 +01:00

70 lines
1.9 KiB
TypeScript

import { useMutation } from '@tanstack/react-query'
import { toast } from 'sonner'
import { ResponseData } from 'components/interfaces/Functions/EdgeFunctionDetails/EdgeFunctionDetails.types'
import { constructHeaders, fetchHandler } from 'data/fetchers'
import { BASE_PATH } from 'lib/constants'
import type { ResponseError, UseCustomMutationOptions } from 'types'
export type EdgeFunctionTestResponse = {
title: string
description: string
}
export type EdgeFunctionTestVariables = {
url: string
method: string
body: string
headers: { [key: string]: string }
}
export async function testEdgeFunction({ url, method, body, headers }: EdgeFunctionTestVariables) {
const defaultHeaders = await constructHeaders()
const response = await fetchHandler(`${BASE_PATH}/api/edge-functions/test`, {
method: 'POST',
headers: { ...defaultHeaders, 'Content-Type': 'application/json' },
body: JSON.stringify({ url, method, body, headers }),
})
let data: any
try {
data = await response.json()
} catch {}
if (!response.ok) {
throw new Error(data.error?.message || 'Failed to test edge function', {
cause: { status: data.status },
})
}
return data as ResponseData
}
type EdgeFunctionTestData = Awaited<ReturnType<typeof testEdgeFunction>>
export const useEdgeFunctionTestMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseCustomMutationOptions<EdgeFunctionTestData, ResponseError, EdgeFunctionTestVariables>,
'mutationFn'
> = {}) => {
return useMutation<EdgeFunctionTestData, ResponseError, EdgeFunctionTestVariables>({
mutationFn: (vars) => testEdgeFunction(vars),
async onSuccess(data, variables, context) {
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to test edge function: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
})
}