ruvector/studio/data/api-keys/legacy-api-key-toggle-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

58 lines
1.7 KiB
TypeScript

import { useMutation, useQueryClient } from '@tanstack/react-query'
import { handleError, put } from 'data/fetchers'
import { toast } from 'sonner'
import type { ResponseError, UseCustomMutationOptions } from 'types'
import { apiKeysKeys } from './keys'
export type ToggleLegacyAPIKeysVariables = {
projectRef?: string
enabled: boolean
}
export async function toggleLegacyAPIKeys(payload: ToggleLegacyAPIKeysVariables) {
if (!payload.projectRef) throw new Error('projectRef is required')
const { data, error } = await put('/v1/projects/{ref}/api-keys/legacy', {
params: {
path: { ref: payload.projectRef },
query: { enabled: payload.enabled },
},
})
if (error) handleError(error)
return data
}
type ToggleLegacyAPIKeysData = Awaited<ReturnType<typeof toggleLegacyAPIKeys>>
export const useToggleLegacyAPIKeysMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseCustomMutationOptions<ToggleLegacyAPIKeysData, ResponseError, ToggleLegacyAPIKeysVariables>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
return useMutation<ToggleLegacyAPIKeysData, ResponseError, ToggleLegacyAPIKeysVariables>({
mutationFn: (vars) => toggleLegacyAPIKeys(vars),
async onSuccess(data, variables, context) {
const { projectRef } = variables
await queryClient.invalidateQueries({ queryKey: apiKeysKeys.status(projectRef) })
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(
`Failed to ${variables.enabled ? 're-enable' : 'disable'} JWT-based API keys: ${data.message}`
)
} else {
onError(data, variables, context)
}
},
...options,
})
}