| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import { useParams } from 'common'
- import { useRouter } from 'next/router'
- import { useEffect, useMemo } from 'react'
- import { useAvailableIntegrations } from './useAvailableIntegrations'
- import { useInstalledIntegrations } from './useInstalledIntegrations'
- import { useDatabaseExtensionsQuery } from '@/data/database-extensions/database-extensions-query'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- export type IntegrationTab = {
- label: string
- href: string
- active: boolean
- }
- export const useIntegrationDetail = () => {
- const router = useRouter()
- const { ref, id, pageId, childId } = useParams()
- const { integrationsWrappers } = useIsFeatureEnabled(['integrations:wrappers'])
- const { data: project } = useSelectedProjectQuery()
- const { data: extensions } = useDatabaseExtensionsQuery({
- projectRef: project?.ref,
- connectionString: project?.connectionString,
- })
- const { data: allIntegrations, isPending: isAvailableLoading } = useAvailableIntegrations()
- const { installedIntegrations, isLoading: isInstalledLoading } = useInstalledIntegrations()
- // wrapped in useMemo to avoid UI resets when installing additional extensions like pg_net
- const integration = useMemo(() => allIntegrations.find((i) => i.id === id), [allIntegrations, id])
- const installation = useMemo(
- () => installedIntegrations.find((i) => i.id === id),
- [installedIntegrations, id]
- )
- const installableExtensions = (extensions ?? []).filter((ext) =>
- (integration?.requiredExtensions ?? []).includes(ext.name)
- )
- const extensionsInstalled = installableExtensions.every((x) => x.installed_version)
- // installedIntegrations doesn't return wrappers unless there's a wrapper created
- const isInstalled =
- !!integration && (!!installation || (integration.type === 'wrapper' && extensionsInstalled))
- const navItems = useMemo(() => {
- if (!integration?.navigation) return []
- return isInstalled
- ? integration.navigation
- : integration.navigation.filter((nav) => nav.route === 'overview')
- }, [integration, isInstalled])
- const activeRoute = pageId ?? 'overview'
- const activeNav = useMemo(
- () => navItems.find((nav) => nav.route === activeRoute),
- [navItems, activeRoute]
- )
- const isKnownRoute = !!activeNav
- const layout = (activeNav?.layout ?? 'full') as 'full' | 'constrained'
- const tabs: IntegrationTab[] = useMemo(
- () =>
- navItems.map((nav) => ({
- label: nav.label,
- href: `/project/${ref}/integrations/${id}/${nav.route}`,
- active: nav.route === activeRoute,
- })),
- [navItems, ref, id, activeRoute]
- )
- const Component = useMemo(
- () => integration?.navigate({ id, pageId, childId }),
- [integration, id, pageId, childId]
- )
- const isReady = !!router?.isReady
- const isWrapperBlocked = !integrationsWrappers && !!id?.endsWith('_wrapper')
- const pageTitle = integration?.name ?? 'Integration not found'
- const pageSubTitle =
- integration?.description ?? 'If you think this is an error, please contact support'
- useEffect(() => {
- if (
- router?.isReady &&
- !isAvailableLoading &&
- !isInstalledLoading &&
- !!integration &&
- pageId &&
- !isKnownRoute
- ) {
- router.replace(`/project/${ref}/integrations/${id}/overview`)
- }
- }, [router, pageId, ref, id, integration, isKnownRoute, isAvailableLoading, isInstalledLoading])
- return {
- ref,
- id,
- pageId,
- childId,
- activeRoute,
- activeNav,
- isKnownRoute,
- layout,
- tabs,
- isReady,
- isWrapperBlocked,
- pageTitle,
- pageSubTitle,
- integrationsWrappers,
- integration,
- installation,
- isInstalled,
- isAvailableLoading,
- isInstalledLoading,
- Component,
- }
- }
|