mirror of
https://github.com/supabase/supabase.git
synced 2026-06-09 19:50:28 +08:00
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:
42
apps/studio/data/integrations/github-branches-query.ts
Normal file
42
apps/studio/data/integrations/github-branches-query.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
import { useQuery, UseQueryOptions } from '@tanstack/react-query'
|
||||
import { get } from 'data/fetchers'
|
||||
import { integrationKeys } from './keys'
|
||||
import { ResponseError } from 'types'
|
||||
|
||||
export type GitHubBranchesVariables = {
|
||||
connectionId?: number
|
||||
}
|
||||
|
||||
export async function getGitHubBranches(
|
||||
{ connectionId }: GitHubBranchesVariables,
|
||||
signal?: AbortSignal
|
||||
) {
|
||||
if (!connectionId) throw new Error('connectionId is required')
|
||||
|
||||
const { data, error } = await get(`/platform/integrations/github/branches/{connectionId}`, {
|
||||
params: { path: { connectionId } },
|
||||
signal,
|
||||
})
|
||||
|
||||
if (error) throw new Error((error as ResponseError).message)
|
||||
return data
|
||||
}
|
||||
|
||||
export type GitHubBranchesData = Awaited<ReturnType<typeof getGitHubBranches>>
|
||||
export type GitHubBranchesError = ResponseError
|
||||
|
||||
export const useGitHubBranchesQuery = <TData = GitHubBranchesData>(
|
||||
{ connectionId }: GitHubBranchesVariables,
|
||||
{
|
||||
enabled = true,
|
||||
...options
|
||||
}: UseQueryOptions<GitHubBranchesData, GitHubBranchesError, TData> = {}
|
||||
) =>
|
||||
useQuery<GitHubBranchesData, GitHubBranchesError, TData>(
|
||||
integrationKeys.githubBranchesList(connectionId),
|
||||
({ signal }) => getGitHubBranches({ connectionId }, signal),
|
||||
{
|
||||
enabled: enabled && typeof connectionId !== 'undefined',
|
||||
...options,
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user