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,55 @@
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
import { toast } from 'react-hot-toast'
import { del } from 'data/fetchers'
import { ResponseError } from 'types'
import { integrationKeys } from './keys'
type DeleteVariables = {
connectionId: string | number
organizationId: number
}
export async function deleteConnection({ connectionId }: DeleteVariables, signal?: AbortSignal) {
const { data, error } = await del('/platform/integrations/github/connections/{connection_id}', {
params: { path: { connection_id: String(connectionId) } },
signal,
})
if (error) throw error
return data
}
type DeleteContentData = Awaited<ReturnType<typeof deleteConnection>>
export const useGitHubConnectionDeleteMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<DeleteContentData, ResponseError, DeleteVariables>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
return useMutation<DeleteContentData, ResponseError, DeleteVariables>(
(args) => deleteConnection(args),
{
async onSuccess(data, variables, context) {
await Promise.all([
queryClient.invalidateQueries(
integrationKeys.githubConnectionsList(variables.organizationId)
),
])
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to delete Github connection: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}