Files
Gildas Garcia 96d43099bb chore: refactor Button API so that it can be used a standard button (#46880)
## Problem

Our `<Button>` component breaks the default `button` contract by
redefining the `type` prop to set its variant (`primary`, `default`,
etc) instead of the button type (`submit`, `button`, etc).
This is confusing and forces to write more code when using it with
shadcn components that expect/inject the standard button props.

## Solution

- rename the `type` prop to `variant`
- rename the `htmlType` prop to `type`
- propagate the changes where necessary
- format code

## How to test

As this is just prop renaming, if it builds it's ok

---------

Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
2026-06-16 23:59:58 +02:00

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 variant="default" className="w-min" icon={<ExternalLink />}>
<Link href={`/project/${ref}/auth/hooks`}>View auth hooks</Link>
</Button>
</AlertDescription>
</Alert>
)
)
default:
return null
}
}