ruvector/studio/data/edge-functions/edge-function-test-mutation.ts
rUv 814f595995 feat(studio): Add complete RuVector Studio application
Major additions:
- Complete Next.js studio application with 1600+ components
- Docker support (Dockerfile.combined, docker-compose.yml)
- GCP deployment documentation and benchmarks
- SQL benchmark scripts for performance testing
- Sentry integration for monitoring
- Comprehensive test suite and mocks

Studio features:
- Dashboard and admin interfaces
- Data visualization components
- Authentication and user management
- API integration with RuVector backend
- Static data and public assets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-06 23:04:48 +00:00

69 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,
})
}