chore(branching): GitHub integration 2.0 (#21008)

* start new github integration

* query/mutation updates

* progress

* branch management

* update codegen

* progress

* progress

* Refactor GitHub integration URLs

* Refactor GitHubIntegrationAuthorize component

* Updates

* Do not remove GitHub connection when creating new one

* Deleting a GH connection when branching is enabled for the project, will also disable branching for that project

* Add link to configure connection from org integration settings page

* Slight refactor

* Support updating CWD path

* Change cwd_path to workdir and disallow empty values

* Allow for triggering branches on supabase directory changes only

* Pass missing supabaseChangesOnly value

* Small style fix

* Add Authorization GitHub step

* Small change

* Fix supabase integrations form in project settings

* Revert URLa nd client ID

* Fix UI issues

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
Co-authored-by: Kamil Ogórek <kamil.ogorek@gmail.com>
This commit is contained in:
Alaister Young
2024-03-04 18:17:26 +11:00
committed by GitHub
parent 5c9ab30902
commit 74563fbeba
41 changed files with 1316 additions and 1578 deletions

View File

@@ -0,0 +1,60 @@
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
import toast from 'react-hot-toast'
import { post } from 'data/fetchers'
import { ResponseError } from 'types'
export type GitHubAuthorizationCreateVariables = {
code: string
}
export async function createGitHubAuthorization({ code }: GitHubAuthorizationCreateVariables) {
const { data, error } = await post('/platform/integrations/github/authorization', {
body: { code },
})
if (error) throw error
return data
}
type GitHubAuthorizationCreateData = Awaited<ReturnType<typeof createGitHubAuthorization>>
export const useGitHubAuthorizationCreateMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<
GitHubAuthorizationCreateData,
ResponseError,
GitHubAuthorizationCreateVariables
>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
return useMutation<
GitHubAuthorizationCreateData,
ResponseError,
GitHubAuthorizationCreateVariables
>((vars) => createGitHubAuthorization(vars), {
async onSuccess(data, variables, context) {
// const { projectRef, id } = variables
// await Promise.all([
// queryClient.invalidateQueries(githubAuthorizationKeys.list(projectRef)),
// queryClient.invalidateQueries(githubAuthorizationKeys.githubAuthorization(projectRef, id)),
// ])
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to mutate: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
})
}