ruvector/studio/data/replication/update-pipeline-version-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

72 lines
2.3 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 { replicationKeys } from './keys'
type UpdatePipelineVersionParams = {
projectRef: string
pipelineId: number
versionId: number
}
async function updatePipelineVersion(
{ projectRef, pipelineId, versionId }: UpdatePipelineVersionParams,
signal?: AbortSignal
) {
if (!projectRef) throw new Error('projectRef is required')
if (!pipelineId) throw new Error('pipelineId is required')
if (!versionId) throw new Error('versionId is required')
const { data, error } = await post(
'/platform/replication/{ref}/pipelines/{pipeline_id}/version',
{
params: { path: { ref: projectRef, pipeline_id: pipelineId } },
body: { version_id: versionId },
signal,
}
)
if (error) handleError(error)
return data
}
type UpdatePipelineVersionData = Awaited<ReturnType<typeof updatePipelineVersion>>
export const useUpdatePipelineVersionMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseCustomMutationOptions<UpdatePipelineVersionData, ResponseError, UpdatePipelineVersionParams>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
return useMutation<UpdatePipelineVersionData, ResponseError, UpdatePipelineVersionParams>({
mutationFn: (vars) => updatePipelineVersion(vars),
async onSuccess(data, variables, context) {
const { projectRef, pipelineId } = variables
// Ensure the version dot updates promptly
await queryClient.invalidateQueries({
queryKey: replicationKeys.pipelinesVersion(projectRef, pipelineId),
})
await onSuccess?.(data, variables, context)
},
async onError(error, variables, context) {
const { projectRef, pipelineId } = variables
if (error?.code === 404) {
// Default image changed meanwhile. Refresh version info so UI reflects latest state.
await queryClient.invalidateQueries({
queryKey: replicationKeys.pipelinesVersion(projectRef, pipelineId),
})
} else if (onError === undefined) {
toast.error(`Failed to update pipeline version: ${error.message}`)
} else {
onError(error, variables, context)
}
},
...options,
})
}