Files
supabase/apps/studio/components/ui/ToggleSpendCapButton.tsx
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

45 lines
1.3 KiB
TypeScript

import Link from 'next/link'
import { PropsWithChildren } from 'react'
import { Button } from 'ui'
import { SupportLink } from '@/components/interfaces/Support/SupportLink'
import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
interface ToggleSpendCapButtonProps {
action?: 'disable' | 'enable'
variant?: 'default' | 'primary'
}
export const ToggleSpendCapButton = ({
action = 'disable',
variant = 'default',
children,
}: PropsWithChildren<ToggleSpendCapButtonProps>) => {
const { data: organization } = useSelectedOrganizationQuery()
const slug = organization?.slug ?? '_'
const { billingAll } = useIsFeatureEnabled(['billing:all'])
const subject = `Enquiry to ${action} spend cap for organization`
const message = `Name: ${organization?.name}\nSlug: ${organization?.slug}`
const href = billingAll ? `/org/${slug}/billing?panel=costControl` : ''
const linkChildren = children || `${action} spend cap`
const link = billingAll ? (
<Link href={href} className="capitalize">
{linkChildren}
</Link>
) : (
<SupportLink queryParams={{ orgSlug: slug, category: 'Plan_upgrade', subject, message }}>
{linkChildren}
</SupportLink>
)
return (
<Button variant={variant} asChild>
{link}
</Button>
)
}