mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 10:14:41 +08:00
* Initial commit. * Minor type fixes. * Add a integration for Queues. Refactor some of the integration layout. * Migrate the Cron integration to the new style. * Add useInstalledIntegrations hook. * Add an integration entry for vault. * Add an integration entry for GraphiQL. * Add supabase webhooks. * Feat/integrations get layout (#30538) * scroll based icon * Update header.tsx * remove dep from overview * moar * more table stuff * moar * alt nav put in * fix MotionNumber issues * more * trying both layouts * Fix bunch of type errors. --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com> * Migrate Vercel and Github files to their own folders. * Switch all integrations with the new designs. * More fixes for links, pages structure and other random stuff. * Remove unneeded file. * Another set of fixes. Migrated most of the extension integrations. * Migrated Vault and webhooks to the new style. * Various fixes to make the animation work. * Remove extra code. * Tiny fixes 😬 i swear its tiny * Refactor IntegrationOverviewTab * chore/ update integrations routes (#30585) * init * add child support in tabs * add webhooks * Update IntegrationPageHandler.tsx * fix id issues * use messageId instead * animation tweaks * Move the description to the wrappers array. * The useInstalledIntegrations now provides integrations which could be installed. * Add static content for the various integrations. * Move the page handler logic into the integrations definitions. * Clean up some extra code. * Add logic to make the overview tab the default tab. * Don't show the header until the integration id has been checked. * Add logic to the integration pages to avoid weird loading bugs, deselecting tabs if the integration hasn't been installed etc. * Fix the webhooks overview tab. * Fix the buttons for enabling extensions. * Add padding to all custom tab contents. * Small fixes * Prettier lint * Fix icon color + add empty state for when available integrations are all installed * Fix ts errors * Fiox * Add enable webhooks cta * Fix key * Fix all lints * Fix the queues create sheet. * Fix the deletion of wrappers. * Fix the minimum version alert for the wrappers extension. * Make the queues table fit the whole container. * Fix an issue which reset the tab when installing an extension. * Address comments * Add loading state for installed integrations in side nav * Fix edit secret not rendering value in input field after subsequent openings * Fix vault keys auto filling search input with vault * Fix search input placeholder for cron * Minor fix in install database extension copy * Fix a bad redirect when reloading. * Fix bad url redirects. * Fix scrolling in create new/edit wrapper sheet. * Add y padding to the wrappers rows. * Fix merge errors. * More merge fixes. * Fix bad imports during the merge. --------- Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
178 lines
6.3 KiB
TypeScript
178 lines
6.3 KiB
TypeScript
import { ChevronDown, Loader2, RefreshCw, Trash } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import { forwardRef, useCallback, useState } from 'react'
|
|
import { toast } from 'sonner'
|
|
|
|
import {
|
|
IntegrationConnection,
|
|
IntegrationConnectionProps,
|
|
} from 'components/interfaces/Integrations/VercelGithub/IntegrationPanels'
|
|
import { ButtonTooltip } from 'components/ui/ButtonTooltip'
|
|
import { useIntegrationsVercelConnectionSyncEnvsMutation } from 'data/integrations/integrations-vercel-connection-sync-envs-mutation'
|
|
import type { IntegrationProjectConnection } from 'data/integrations/integrations.types'
|
|
import { useProjectsQuery } from 'data/projects/projects-query'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from 'ui'
|
|
import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal'
|
|
|
|
interface IntegrationConnectionItemProps extends IntegrationConnectionProps {
|
|
disabled?: boolean
|
|
onDeleteConnection: (connection: IntegrationProjectConnection) => void | Promise<void>
|
|
}
|
|
|
|
const IntegrationConnectionItem = forwardRef<HTMLLIElement, IntegrationConnectionItemProps>(
|
|
({ disabled, onDeleteConnection, ...props }, ref) => {
|
|
const router = useRouter()
|
|
|
|
const { type, connection } = props
|
|
const { data: projects } = useProjectsQuery()
|
|
const project = projects?.find((project) => project.ref === connection.supabase_project_ref)
|
|
const isBranchingEnabled = project?.is_branch_enabled === true
|
|
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const [isDeleting, setIsDeleting] = useState(false)
|
|
const [dropdownVisible, setDropdownVisible] = useState(false)
|
|
|
|
const onConfirm = useCallback(async () => {
|
|
try {
|
|
setIsDeleting(true)
|
|
await onDeleteConnection(connection)
|
|
} catch (error) {
|
|
// [Joshen] No need for error handler
|
|
} finally {
|
|
setIsDeleting(false)
|
|
setIsOpen(false)
|
|
}
|
|
}, [connection, onDeleteConnection])
|
|
|
|
const onCancel = useCallback(() => {
|
|
setIsOpen(false)
|
|
}, [])
|
|
|
|
const { mutate: syncEnvs, isLoading: isSyncEnvLoading } =
|
|
useIntegrationsVercelConnectionSyncEnvsMutation({
|
|
onSuccess: () => {
|
|
toast.success('Successfully synced environment variables')
|
|
setDropdownVisible(false)
|
|
},
|
|
})
|
|
|
|
const onReSyncEnvVars = useCallback(async () => {
|
|
syncEnvs({ connectionId: connection.id })
|
|
}, [connection, syncEnvs])
|
|
|
|
const projectIntegrationUrl = `/project/[ref]/settings/integrations`
|
|
|
|
return (
|
|
<>
|
|
<IntegrationConnection
|
|
showNode={false}
|
|
actions={
|
|
disabled ? (
|
|
<ButtonTooltip
|
|
disabled
|
|
iconRight={<ChevronDown size={14} />}
|
|
type="default"
|
|
tooltip={{
|
|
content: {
|
|
side: 'bottom',
|
|
text: 'You need additional permissions to manage this connection',
|
|
},
|
|
}}
|
|
>
|
|
Manage
|
|
</ButtonTooltip>
|
|
) : (
|
|
<DropdownMenu
|
|
open={dropdownVisible}
|
|
onOpenChange={() => setDropdownVisible(!dropdownVisible)}
|
|
modal={false}
|
|
>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button iconRight={<ChevronDown size={14} />} type="default">
|
|
<span>Manage</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent side="bottom" align="end">
|
|
{router.pathname !== projectIntegrationUrl && (
|
|
<DropdownMenuItem asChild>
|
|
<Link
|
|
href={projectIntegrationUrl.replace(
|
|
'[ref]',
|
|
connection.supabase_project_ref
|
|
)}
|
|
>
|
|
Configure connection
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
)}
|
|
{type === 'Vercel' && (
|
|
<DropdownMenuItem
|
|
className="space-x-2"
|
|
onSelect={(event) => {
|
|
event.preventDefault()
|
|
onReSyncEnvVars()
|
|
}}
|
|
disabled={isSyncEnvLoading}
|
|
>
|
|
{isSyncEnvLoading ? (
|
|
<Loader2 className="animate-spin" size={14} />
|
|
) : (
|
|
<RefreshCw size={14} />
|
|
)}
|
|
<p>Resync environment variables</p>
|
|
</DropdownMenuItem>
|
|
)}
|
|
{(type === 'Vercel' || router.pathname !== projectIntegrationUrl) && (
|
|
<DropdownMenuSeparator />
|
|
)}
|
|
<DropdownMenuItem className="space-x-2" onSelect={() => setIsOpen(true)}>
|
|
<Trash size={14} />
|
|
<p>Delete connection</p>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)
|
|
}
|
|
{...props}
|
|
/>
|
|
|
|
<ConfirmationModal
|
|
variant="destructive"
|
|
size={type === 'GitHub' && isBranchingEnabled ? 'medium' : 'small'}
|
|
visible={isOpen}
|
|
title={`Confirm to delete ${type} connection`}
|
|
confirmLabel="Delete connection"
|
|
onCancel={onCancel}
|
|
onConfirm={onConfirm}
|
|
loading={isDeleting}
|
|
alert={
|
|
type === 'GitHub' && isBranchingEnabled
|
|
? {
|
|
title: 'Branching will be disabled for this project',
|
|
description: ` Deleting this GitHub connection will remove all preview branches on this project,
|
|
and also disable branching for ${project.name}`,
|
|
}
|
|
: undefined
|
|
}
|
|
>
|
|
<p className="text-sm text-foreground-light">
|
|
This action cannot be undone. Are you sure you want to delete this {type} connection?
|
|
</p>
|
|
</ConfirmationModal>
|
|
</>
|
|
)
|
|
}
|
|
)
|
|
|
|
IntegrationConnectionItem.displayName = 'IntegrationConnectionItem'
|
|
|
|
export { IntegrationConnectionItem }
|