mirror of
https://github.com/supabase/supabase.git
synced 2026-06-12 00:01:19 +08:00
## Problem Now that we migrated old components to their new shadcn alternatives, we don't need the `_Shadcn_` suffix anymore. ## Solution Remove it <img width="659" height="609" alt="image" src="https://github.com/user-attachments/assets/2d7271a9-066a-4dcc-92fe-729b106d2c2f" />
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { useParams } from 'common'
|
|
import { ExternalLink } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { Alert, AlertDescription, AlertTitle, Button, WarningIcon } from 'ui'
|
|
|
|
import { DOCS_URL } from '@/lib/constants'
|
|
|
|
export const AuthAlert = ({
|
|
title,
|
|
isHookSendSMSEnabled,
|
|
}: {
|
|
title: string
|
|
isHookSendSMSEnabled: boolean
|
|
}) => {
|
|
const { ref } = useParams()
|
|
|
|
switch (title) {
|
|
// TODO (KM): Remove after 10th October 2024 when we disable the provider
|
|
case 'Slack (Deprecated)':
|
|
return (
|
|
<Alert variant="warning">
|
|
<WarningIcon />
|
|
<AlertTitle>Slack (Deprecated) Provider</AlertTitle>
|
|
<AlertDescription>
|
|
Recently, Slack has updated their OAuth API. Please use the new Slack (OIDC) provider
|
|
below. Developers using this provider should move over to the new provider. Please refer
|
|
to our{' '}
|
|
<a
|
|
href={`${DOCS_URL}/guides/auth/social-login/auth-slack`}
|
|
className="underline"
|
|
target="_blank"
|
|
>
|
|
documentation
|
|
</a>{' '}
|
|
for more details.
|
|
</AlertDescription>
|
|
</Alert>
|
|
)
|
|
case 'Phone':
|
|
return (
|
|
isHookSendSMSEnabled && (
|
|
<Alert>
|
|
<WarningIcon />
|
|
<AlertTitle>
|
|
SMS provider settings are disabled while the SMS hook is enabled.
|
|
</AlertTitle>
|
|
<AlertDescription className="flex flex-col gap-y-3">
|
|
<p>The SMS hook will be used in place of the SMS provider configured</p>
|
|
<Button asChild type="default" className="w-min" icon={<ExternalLink />}>
|
|
<Link href={`/project/${ref}/auth/hooks`}>View auth hooks</Link>
|
|
</Button>
|
|
</AlertDescription>
|
|
</Alert>
|
|
)
|
|
)
|
|
default:
|
|
return null
|
|
}
|
|
}
|