mirror of
https://github.com/supabase/supabase.git
synced 2026-05-31 09:52:58 +08:00
* foreign-key-constraints * update entity-types stale time * schemas query * deprecate useExecuteSqlQuery * users count query * database size query * indexes query * keywords query * migrations query * table columns * database functions * database roles query * fdws query * replication lag query * ongoing queries query * vault secrets query * remove unneeded staleTime: 0 * max connections query * fix entity types key in tests * Some fixes --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { handleError, post } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { authKeys } from './keys'
|
|
|
|
export type UserInviteVariables = {
|
|
projectRef: string
|
|
email: string
|
|
}
|
|
|
|
export async function inviteUser({ projectRef, email }: UserInviteVariables) {
|
|
const { data, error } = await post('/platform/auth/{ref}/invite', {
|
|
params: { path: { ref: projectRef } },
|
|
body: { email },
|
|
})
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
type UserInviteData = Awaited<ReturnType<typeof inviteUser>>
|
|
|
|
export const useUserInviteMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<UserInviteData, ResponseError, UserInviteVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<UserInviteData, ResponseError, UserInviteVariables>(
|
|
(vars) => inviteUser(vars),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef } = variables
|
|
|
|
await Promise.all([
|
|
queryClient.invalidateQueries(authKeys.usersInfinite(projectRef)),
|
|
queryClient.invalidateQueries(authKeys.usersCount(projectRef)),
|
|
])
|
|
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to invite user: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|