mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-28 18:13:33 +00:00
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>
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
import { useMutation, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { handleError, post } from 'data/fetchers'
|
|
import type { ResponseError, UseCustomMutationOptions } from 'types'
|
|
import { integrationKeys } from './keys'
|
|
|
|
export type VercelIntegrationCreateVariables = {
|
|
code: string
|
|
configurationId: string
|
|
orgSlug: string
|
|
metadata: { [key: string]: string }
|
|
source: string
|
|
// teamId is only present when a team is being installed
|
|
// personal accounts (hobby) will not have this value defined
|
|
teamId?: string
|
|
}
|
|
|
|
export async function createVercelIntegration({
|
|
code,
|
|
configurationId,
|
|
orgSlug,
|
|
metadata,
|
|
source,
|
|
teamId,
|
|
}: VercelIntegrationCreateVariables) {
|
|
const { data, error } = await post('/platform/integrations/vercel', {
|
|
body: {
|
|
code,
|
|
configuration_id: configurationId,
|
|
organization_slug: orgSlug,
|
|
metadata: metadata as Record<string, never>,
|
|
source,
|
|
teamId,
|
|
},
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
// [Joshen] API isn't typed on this endpoint
|
|
// https://github.com/supabase/platform/blob/develop/api/src/routes/platform/integrations/vercel/vercel-integration.controller.ts#L50
|
|
return data as { id: string }
|
|
}
|
|
|
|
type VercelIntegrationCreateData = Awaited<ReturnType<typeof createVercelIntegration>>
|
|
|
|
export const useVercelIntegrationCreateMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseCustomMutationOptions<
|
|
VercelIntegrationCreateData,
|
|
ResponseError,
|
|
VercelIntegrationCreateVariables
|
|
>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
return useMutation<VercelIntegrationCreateData, ResponseError, VercelIntegrationCreateVariables>({
|
|
mutationFn: (vars) => createVercelIntegration(vars),
|
|
async onSuccess(data, variables, context) {
|
|
await Promise.all([
|
|
queryClient.invalidateQueries({ queryKey: integrationKeys.integrationsList() }),
|
|
queryClient.invalidateQueries({
|
|
queryKey: integrationKeys.integrationsListWithOrg(variables.orgSlug),
|
|
}),
|
|
queryClient.invalidateQueries({ queryKey: integrationKeys.vercelProjectList(data.id) }),
|
|
])
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to create Vercel integration: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
})
|
|
}
|