Files
supabase/apps/studio/components/layouts/ProjectLayout/ConnectingState.tsx
Gildas Garcia 86a3f8b03d chore: upgrade to react-19 (#45886)
- Most changes are related to either types or `useRef` usages (it now
requires an initial value).
- also updated `vaul` to its latest version and haven't noticed any
change ([design-system
demo](https://design-system-git-react-19-supabase.vercel.app/design-system/docs/components/drawer))

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
  * Upgraded workspace to React 19.

* **Bug Fixes**
* Improved null-safety and ref handling across editors, UI components,
shortcuts, and markdown/image rendering to reduce runtime errors.
* Safer event/timeout/interval cleanup and more robust command/context
handling.

* **Chores**
  * Bumped vaul dependency versions.

* **Documentation**
* Type and TypeScript accuracy improvements for clearer developer
feedback.

<!-- review_stack_entry_start -->

[![Review Change
Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/supabase/supabase/pull/45886)

<!-- review_stack_entry_end -->
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-05-15 16:04:41 +02:00

114 lines
4.3 KiB
TypeScript

import { useParams } from 'common'
import { ExternalLink, Loader, Monitor, Server } from 'lucide-react'
import Link from 'next/link'
import { useEffect, useRef } from 'react'
import { Badge, Button } from 'ui'
import ShimmerLine from '@/components/ui/ShimmerLine'
import {
useInvalidateProjectDetailsQuery,
useSetProjectPostgrestStatus,
type Project,
} from '@/data/projects/project-detail-query'
import { DOCS_URL } from '@/lib/constants'
import pingPostgrest from '@/lib/pingPostgrest'
export interface ConnectingStateProps {
project: Project
}
const ConnectingState = ({ project }: ConnectingStateProps) => {
const { ref } = useParams()
const checkProjectConnectionIntervalRef = useRef<number>(null)
const { setProjectPostgrestStatus } = useSetProjectPostgrestStatus()
const { invalidateProjectDetailsQuery } = useInvalidateProjectDetailsQuery()
useEffect(() => {
if (!project.restUrl) return
// Check project connection status every 4 seconds
// pingPostgrest timeouts in 2s, wait for another 2s before checking again
checkProjectConnectionIntervalRef.current = window.setInterval(testProjectConnection, 4000)
return () => {
if (checkProjectConnectionIntervalRef.current) {
clearInterval(checkProjectConnectionIntervalRef.current)
}
}
}, [project])
const testProjectConnection = async () => {
const result = await pingPostgrest(project.ref)
if (result) {
if (checkProjectConnectionIntervalRef.current) {
clearInterval(checkProjectConnectionIntervalRef.current)
}
setProjectPostgrestStatus(project.ref, 'ONLINE')
await invalidateProjectDetailsQuery(project.ref)
}
}
return (
<>
<div className="mx-auto my-16 w-full max-w-7xl space-y-16">
<div className="mx-6 space-y-16">
<div className="flex flex-col space-y-4 lg:flex-row lg:items-center lg:space-y-0 lg:space-x-6">
<h1 className="text-3xl">{project.name}</h1>
<div>
<Badge variant="success">
<div className="flex items-center gap-2">
<Loader className="animate-spin" size={12} />
<span>Connecting to project</span>
</div>
</Badge>
</div>
</div>
<div className="flex h-[500px] items-center justify-center rounded-sm border border-overlay bg-surface-100 p-8">
<div className="w-[440px] space-y-4">
<div className="mx-auto flex max-w-[300px] items-center justify-center">
<div>
<div className="flex items-center justify-center w-12 h-12 rounded-md border">
<Monitor className="text-foreground-light" size={30} strokeWidth={1.5} />
</div>
</div>
<ShimmerLine active />
<div>
<div className="flex items-center justify-center w-12 h-12 rounded-md border">
<Server className="text-foreground-light" size={30} strokeWidth={1.5} />
</div>
</div>
</div>
<div className="space-y-1">
<p className="text-center">Connecting to {project.name}</p>
<p className="text-center text-sm text-foreground-light">
If you are unable to connect after a few minutes, check your project's health to
verify if it's running into any resource constraints.
</p>
</div>
<div className="flex items-center justify-center space-x-2">
<Button asChild type="default">
<Link href={`/project/${ref}/settings/infrastructure`}>
Check database health
</Link>
</Button>
<Button asChild type="default" icon={<ExternalLink strokeWidth={1.5} />}>
<Link
href={`${DOCS_URL}/guides/troubleshooting?products=platform#unable-to-connect-to-your-supabase-project`}
className="translate-y-px"
>
Troubleshooting
</Link>
</Button>
</div>
</div>
</div>
</div>
</div>
</>
)
}
export default ConnectingState