mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 23:14:28 +08:00
* fix: update Permission params * fix: upgrade check permission hook to support project level role * fix: usePermissionsLoaded * fix: Permission params can be undefined * Scaffold new access management UI * Add validation * Update roles view * Add tooltip * Add button to apply role to all projects * Update UI to select projects first instead of roles * Merge master update UI * Midway trying to implementation project level perms API * First pass implementating updating project level permissions * Add client side validation for assigning/removing roles * Midway implementing new invites * Integrate most of the project level permissions functionality * fix: filter out org-level permissions before checking * Add relevant UI guards in org level pages for project role POV * Minor refactors * Small refactors * More fixes * Moar refactors * More fixes * More fixes * Refactor update role logic and smack some test cases on it * Fixes * Fix type issue * Fix type * more fixes, refactors, adding checks... * MORE fixes * Add perms checking for replicas * Add ButtonTooltip component and use them to prevent repetition of pointer events auto for buttons with tooltips * Convert all buttons with tooltips to use ButtonTooltip * refactor * PRettier * Small fix * Remove commented out code in organization-invitation-accept-mutation * fix: switch to use the platform oauth authorizations routes * Add perms checking for org audit logs and org oauth apps * PRettier * Fix incorrect URL for oauth app flow * Fix incorrect URL for oauth app flow * Fix * Add perms checking for warehouse related UI * Update roles helper icon * remove unused lib * Update package lock... again * Update package lock... again * Smalllll update * Update some checks * Add gate for project level permissions * Last fix * update codegen * Update warehouse endpoint routes * Fix --------- Co-authored-by: phamhieu <phamhieu1998@gmail.com> Co-authored-by: Alaister Young <a@alaisteryoung.com>
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import { useMutation, UseMutationOptions } from '@tanstack/react-query'
|
|
import toast from 'react-hot-toast'
|
|
|
|
import { handleError, post } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
|
|
export type ApiAuthorizationApproveVariables = {
|
|
id: string
|
|
slug: string
|
|
}
|
|
|
|
export type ApiAuthorizationApproveResponse = {
|
|
url: string
|
|
}
|
|
|
|
export async function approveApiAuthorization({ id, slug }: ApiAuthorizationApproveVariables) {
|
|
if (!id) throw new Error('Authorization ID is required')
|
|
if (!slug) throw new Error('Organization slug is required')
|
|
|
|
const { data, error } = await post('/platform/organizations/{slug}/oauth/authorizations/{id}', {
|
|
// @ts-ignore [Joshen] Endpoint doesnt need slug in the path params, but the endpoint path requires slug
|
|
// it's a little weird, will need API to decide if they wanna shift this route outside of the {slug} endpoint
|
|
params: { path: { slug, id }, query: { skip_browser_redirect: true } },
|
|
body: { organization_id: slug },
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data as unknown as ApiAuthorizationApproveResponse
|
|
}
|
|
|
|
type ApiAuthorizationApproveData = Awaited<ReturnType<typeof approveApiAuthorization>>
|
|
|
|
export const useApiAuthorizationApproveMutation = ({
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<ApiAuthorizationApproveData, ResponseError, ApiAuthorizationApproveVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
return useMutation<ApiAuthorizationApproveData, ResponseError, ApiAuthorizationApproveVariables>(
|
|
(vars) => approveApiAuthorization(vars),
|
|
{
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to approve authorization request: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|