mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 08:54:22 +08:00
* fix toast examples * add sonner stuff * new sonner examples added * updated * add upload POC * add * Update sonner-upload.tsx * move statusicons * Minor fix. --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
83 lines
3.0 KiB
TypeScript
83 lines
3.0 KiB
TypeScript
import { ExternalLink } from 'lucide-react'
|
|
|
|
import { AlertDescription_Shadcn_, AlertTitle_Shadcn_, Alert_Shadcn_, Button } from 'ui'
|
|
import { WarningIcon } from 'ui'
|
|
|
|
export const IPv4DeprecationNotice = () => {
|
|
return (
|
|
<Alert_Shadcn_ variant="warning">
|
|
<WarningIcon />
|
|
<AlertTitle_Shadcn_>
|
|
Direct database access is only available via IPv6-compatible networks.
|
|
</AlertTitle_Shadcn_>
|
|
<AlertDescription_Shadcn_ className="space-y-3">
|
|
<p>
|
|
We strongly recommend using connection pooling to connect to your database because it's
|
|
compatible with both IPv4 and IPv6 networks. You'll only need to change the connection
|
|
credentials that you're using in your application to the pooler's connection credentials.
|
|
</p>
|
|
<Button asChild type="default" icon={<ExternalLink />}>
|
|
<a
|
|
href="https://github.com/orgs/supabase/discussions/17817"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
Learn more
|
|
</a>
|
|
</Button>
|
|
</AlertDescription_Shadcn_>
|
|
</Alert_Shadcn_>
|
|
)
|
|
}
|
|
|
|
export const IPv4AddonDirectConnectionNotice = () => {
|
|
return (
|
|
<Alert_Shadcn_ variant="default">
|
|
<AlertTitle_Shadcn_>
|
|
Direct database connections are recommended if you're connecting with session mode.
|
|
</AlertTitle_Shadcn_>
|
|
<AlertDescription_Shadcn_ className="space-y-3">
|
|
<p>
|
|
If you are not connecting to the database from serverless environments, we strongly
|
|
recommend you connect to the database directly instead of using connection pooling for
|
|
lower latency.
|
|
</p>
|
|
<p>
|
|
Since your project has the IPv4 add on, you are not required to use the connection pooler
|
|
even if your network only supports IPv4.
|
|
</p>
|
|
<Button asChild type="default" icon={<ExternalLink />}>
|
|
<a
|
|
href="https://supabase.com/docs/guides/database/connecting-to-postgres#connection-pooler"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
Learn more
|
|
</a>
|
|
</Button>
|
|
</AlertDescription_Shadcn_>
|
|
</Alert_Shadcn_>
|
|
)
|
|
}
|
|
|
|
export const DefaultSessionModeNotice = () => {
|
|
return (
|
|
<Alert_Shadcn_ variant="warning">
|
|
<WarningIcon />
|
|
<AlertTitle_Shadcn_>You are not yet in Transaction mode.</AlertTitle_Shadcn_>
|
|
<AlertDescription_Shadcn_ className="space-y-3">
|
|
<p>
|
|
You need to set your <span className="text-foreground">Pool Mode</span> to{' '}
|
|
<span className="text-foreground">Transaction</span> in the{' '}
|
|
<span className="text-foreground">Connection pooling configuration</span> section below in
|
|
order to use transaction mode on port 6543.
|
|
</p>
|
|
<p>
|
|
Otherwise, port 6543 will continue to connect in{' '}
|
|
<span className="text-foreground">Session</span> mode.
|
|
</p>
|
|
</AlertDescription_Shadcn_>
|
|
</Alert_Shadcn_>
|
|
)
|
|
}
|