mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 15:57:47 +08:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { useMutation } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { handleError, post } from '@/data/fetchers'
|
|
import type { ResponseError, UseCustomMutationOptions } from '@/types'
|
|
|
|
export type IntegrationsVercelConnectionSyncEnvsVariables = {
|
|
connectionId: string
|
|
}
|
|
|
|
export async function syncEnvsIntegrationsVercelConnection({
|
|
connectionId,
|
|
}: IntegrationsVercelConnectionSyncEnvsVariables) {
|
|
const { data, error } = await post(
|
|
'/platform/integrations/vercel/connections/{connection_id}/sync-envs',
|
|
{
|
|
params: {
|
|
path: { connection_id: connectionId },
|
|
},
|
|
}
|
|
)
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
type IntegrationsVercelConnectionSyncEnvsData = Awaited<
|
|
ReturnType<typeof syncEnvsIntegrationsVercelConnection>
|
|
>
|
|
|
|
export const useIntegrationsVercelConnectionSyncEnvsMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseCustomMutationOptions<
|
|
IntegrationsVercelConnectionSyncEnvsData,
|
|
ResponseError,
|
|
IntegrationsVercelConnectionSyncEnvsVariables
|
|
>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
return useMutation<
|
|
IntegrationsVercelConnectionSyncEnvsData,
|
|
ResponseError,
|
|
IntegrationsVercelConnectionSyncEnvsVariables
|
|
>({
|
|
mutationFn: (vars) => syncEnvsIntegrationsVercelConnection(vars),
|
|
async onSuccess(data, variables, context) {
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to sync environment variables: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
})
|
|
}
|