Files
supabase/apps/studio/data/projects/project-transfer-mutation.ts
Joshen Lim 9efe2643e3 Joshen/fe 2141 swap organization settings page to use paginated projects (#40513)
* Use version 2 organization roles endpoint and fix all affected files + unit tests

* Update API codegen

* Replace all usage of old useProjectsQuery with useOrgProjectsInfiniteQuery

* Swap access callout for project roles to use collapsible instead

* Deprecate useProjectsQuery and clean up

* Update apps/studio/components/interfaces/Organization/TeamSettings/UpdateRolesPanel/UpdateRolesPanel.tsx

Co-authored-by: Alaister Young <alaister@users.noreply.github.com>

---------

Co-authored-by: Alaister Young <alaister@users.noreply.github.com>
2025-11-18 13:26:09 +08:00

69 lines
2.2 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 { projectKeys } from './keys'
import { useInvalidateProjectsInfiniteQuery } from './org-projects-infinite-query'
export type ProjectTransferVariables = {
projectRef?: string
targetOrganizationSlug?: string
}
export async function transferProject({
projectRef,
targetOrganizationSlug,
}: ProjectTransferVariables) {
if (!projectRef) throw new Error('projectRef is required')
if (!targetOrganizationSlug) throw new Error('targetOrganizationSlug is required')
const payload: { target_organization_slug: string } = {
target_organization_slug: targetOrganizationSlug,
}
const { data, error } = await post('/platform/projects/{ref}/transfer', {
params: { path: { ref: projectRef } },
body: payload,
})
if (error) handleError(error)
return data
}
type ProjectTransferData = Awaited<ReturnType<typeof transferProject>>
export const useProjectTransferMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseCustomMutationOptions<ProjectTransferData, ResponseError, ProjectTransferVariables>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
const { invalidateProjectsQuery } = useInvalidateProjectsInfiniteQuery()
return useMutation<ProjectTransferData, ResponseError, ProjectTransferVariables>({
mutationFn: (vars) => transferProject(vars),
async onSuccess(data, variables, context) {
const { projectRef, targetOrganizationSlug } = variables
await Promise.all([
queryClient.invalidateQueries({
queryKey: projectKeys.projectTransferPreview(projectRef, targetOrganizationSlug),
}),
queryClient.invalidateQueries({ queryKey: projectKeys.detail(projectRef) }),
invalidateProjectsQuery(),
])
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to transfer project: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
})
}