mirror of
https://github.com/supabase/supabase.git
synced 2026-07-22 15:37:14 -04:00
96d43099bb
## 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>
130 lines
4.2 KiB
TypeScript
130 lines
4.2 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { useParams } from 'common'
|
|
import { ChevronDown } from 'lucide-react'
|
|
import { useMemo } from 'react'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from 'ui'
|
|
|
|
import { Hook, HOOK_DEFINITION_TITLE, HOOKS_DEFINITIONS } from './hooks.constants'
|
|
import { extractMethod, isValidHook } from './hooks.utils'
|
|
import { ButtonTooltip } from '@/components/ui/ButtonTooltip'
|
|
import { InlineLink } from '@/components/ui/InlineLink'
|
|
import { useAuthConfigQuery } from '@/data/auth/auth-config-query'
|
|
import { useCheckEntitlements } from '@/hooks/misc/useCheckEntitlements'
|
|
import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
|
|
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
|
|
|
|
interface AddHookDropdownProps {
|
|
buttonText?: string
|
|
align?: 'end' | 'center'
|
|
variant?: 'primary' | 'default'
|
|
open?: boolean
|
|
onOpenChange?: (open: boolean) => void
|
|
onSelectHook: (hook: HOOK_DEFINITION_TITLE) => void
|
|
}
|
|
|
|
export const AddHookDropdown = ({
|
|
buttonText = 'Add hook',
|
|
align = 'end',
|
|
variant = 'primary',
|
|
open,
|
|
onOpenChange,
|
|
onSelectHook,
|
|
}: AddHookDropdownProps) => {
|
|
const { ref: projectRef } = useParams()
|
|
const { data: organization } = useSelectedOrganizationQuery()
|
|
|
|
const { data: authConfig } = useAuthConfigQuery({ projectRef })
|
|
const { can: canUpdateAuthHook } = useAsyncCheckPermissions(PermissionAction.AUTH_EXECUTE, '*')
|
|
const { getEntitlementSetValues: getEntitledHookSet } = useCheckEntitlements('auth.hooks')
|
|
const entitledHookSet = getEntitledHookSet()
|
|
|
|
const { availableHooks, nonAvailableHooks } = useMemo(() => {
|
|
const allHooks: Hook[] = HOOKS_DEFINITIONS.map((definition) => ({
|
|
...definition,
|
|
enabled: authConfig?.[definition.enabledKey] || false,
|
|
method: extractMethod(
|
|
authConfig?.[definition.uriKey] || '',
|
|
authConfig?.[definition.secretsKey] || ''
|
|
),
|
|
}))
|
|
|
|
const availableHooks: Hook[] = allHooks.filter(
|
|
(h) => !isValidHook(h) && entitledHookSet.includes(h.entitlementKey)
|
|
)
|
|
|
|
const nonAvailableHooks: Hook[] = allHooks.filter(
|
|
(h) => !isValidHook(h) && !entitledHookSet.includes(h.entitlementKey)
|
|
)
|
|
|
|
return { availableHooks, nonAvailableHooks }
|
|
}, [entitledHookSet, authConfig])
|
|
|
|
if (!canUpdateAuthHook) {
|
|
return (
|
|
<ButtonTooltip
|
|
disabled
|
|
variant={variant}
|
|
tooltip={{
|
|
content: { side: 'bottom', text: 'You need additional permissions to add auth hooks' },
|
|
}}
|
|
>
|
|
{buttonText}
|
|
</ButtonTooltip>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<DropdownMenu open={open} onOpenChange={onOpenChange}>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant={variant} iconRight={<ChevronDown />}>
|
|
{buttonText}
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-76" align={align}>
|
|
<div>
|
|
{availableHooks.length === 0 && (
|
|
<DropdownMenuLabel className="text-foreground-light">
|
|
All available hooks have been added
|
|
</DropdownMenuLabel>
|
|
)}
|
|
{availableHooks.map((h) => (
|
|
<DropdownMenuItem key={h.title} onClick={() => onSelectHook(h.title)}>
|
|
{h.title}
|
|
</DropdownMenuItem>
|
|
))}
|
|
</div>
|
|
{nonAvailableHooks.length > 0 && (
|
|
<>
|
|
{availableHooks.length > 0 && <DropdownMenuSeparator />}
|
|
|
|
<DropdownMenuLabel className="grid gap-1 bg-surface-200">
|
|
<p className="text-foreground-light">Team or Enterprise Plan required</p>
|
|
<p className="text-foreground-lighter text-xs">
|
|
The following hooks are not available on{' '}
|
|
<InlineLink href={`/org/${organization?.slug ?? '_'}/billing`}>
|
|
your plan
|
|
</InlineLink>
|
|
.
|
|
</p>
|
|
</DropdownMenuLabel>
|
|
|
|
{nonAvailableHooks.map((h) => (
|
|
<DropdownMenuItem key={h.title} disabled={true}>
|
|
{h.title}
|
|
</DropdownMenuItem>
|
|
))}
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)
|
|
}
|