mirror of
https://github.com/supabase/supabase.git
synced 2026-06-15 08:05:21 +08:00
Edit: Can be merged, mgmt api deployed Dashboard addition to frontend for access to the ISO 27001 certificate. View for Team customers: <img width="1737" height="1151" alt="image" src="https://github.com/user-attachments/assets/cd62d24f-8b6e-4600-9ded-943a170cd124" /> Resolves SEC-799 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * ISO 27001 certificate added to Documents with a Download action, confirmation modal, new-tab open on success, and error toast on failure. * Users without billing permission see a no-permission view; users missing entitlement see an “Upgrade to Team” prompt. * **Refactor** * Upgrade-to-Team flows for SOC2 and related upgrade UI standardized to use the shared upgrade component. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
131 lines
4.2 KiB
TypeScript
131 lines
4.2 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { useFlag, useParams } from 'common'
|
|
import Link from 'next/link'
|
|
import { PropsWithChildren } from 'react'
|
|
import { Button } from 'ui'
|
|
|
|
import { ButtonTooltip } from './ButtonTooltip'
|
|
import { RequestUpgradeToBillingOwners } from './RequestUpgradeToBillingOwners'
|
|
import { SupportLink } from '@/components/interfaces/Support/SupportLink'
|
|
import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
|
|
import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
|
|
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
|
|
|
|
export const PLAN_REQUEST_EMPTY_PLACEHOLDER =
|
|
'<Specify which plan to upgrade to: Pro | Team | Enterprise>'
|
|
|
|
interface UpgradePlanButtonProps {
|
|
/** Stick to camel case for consistency */
|
|
source: string
|
|
variant?: 'default' | 'primary'
|
|
plan?: 'Pro' | 'Team' | 'Enterprise'
|
|
addon?: 'pitr' | 'customDomain' | 'ipv4' | 'spendCap' | 'computeSize'
|
|
/** Used in the default message template for request upgrade dialog, e.g: "Upgrade to ..." */
|
|
featureProposition?: string
|
|
disabled?: boolean
|
|
className?: string
|
|
slug?: string
|
|
onClick?: () => void
|
|
}
|
|
|
|
/**
|
|
* If `billingAll` is enabled, links to upgrade paths (e.g organization settings, addons).
|
|
*
|
|
* Otherwise, links to support form instead
|
|
*/
|
|
export const UpgradePlanButton = ({
|
|
source,
|
|
variant: type = 'primary',
|
|
plan = 'Pro',
|
|
addon,
|
|
featureProposition,
|
|
disabled,
|
|
children,
|
|
className,
|
|
slug: slugParam,
|
|
onClick,
|
|
}: PropsWithChildren<UpgradePlanButtonProps>) => {
|
|
const { ref } = useParams()
|
|
const { data: organization } = useSelectedOrganizationQuery()
|
|
const isFreePlan = organization?.plan?.id === 'free'
|
|
const slug = slugParam ?? organization?.slug ?? '_'
|
|
|
|
const projectUpdateDisabled = useFlag('disableProjectCreationAndUpdate')
|
|
const { billingAll } = useIsFeatureEnabled(['billing:all'])
|
|
|
|
const { can: canUpdateSubscription } = useAsyncCheckPermissions(
|
|
PermissionAction.BILLING_WRITE,
|
|
'stripe.subscriptions',
|
|
undefined,
|
|
{ organizationSlug: slug }
|
|
)
|
|
|
|
const subject = `Enquiry to upgrade ${!!plan ? `to ${plan} ` : ''}plan for organization`
|
|
const message = `Name: ${organization?.name}\nSlug: ${slug}\nRequested plan: ${plan ?? PLAN_REQUEST_EMPTY_PLACEHOLDER}`
|
|
|
|
const isRequestingToDisableSpendCap = addon === 'spendCap'
|
|
const isOnPaidPlanAndRequestingToPurchaseAddon = !isFreePlan && !!addon
|
|
|
|
// [Joshen] URL for button based on the "upgrade request" and the org's plan. Falls back to URL for opening subscription plan
|
|
const href = isRequestingToDisableSpendCap
|
|
? `/org/${slug ?? '_'}/billing?panel=costControl&source=${source}`
|
|
: isOnPaidPlanAndRequestingToPurchaseAddon
|
|
? addon === 'computeSize'
|
|
? `/project/${ref ?? '_'}/settings/compute-and-disk`
|
|
: `/project/${ref ?? '_'}/settings/addons?panel=${addon}&source=${source}`
|
|
: `/org/${slug ?? '_'}/billing?panel=subscriptionPlan&source=${source}`
|
|
|
|
const linkChildren =
|
|
children ||
|
|
(isOnPaidPlanAndRequestingToPurchaseAddon
|
|
? addon === 'computeSize'
|
|
? 'Change compute size'
|
|
: 'Enable add-on'
|
|
: `Upgrade to ${plan}`)
|
|
const link = billingAll ? (
|
|
<Link href={href}>{linkChildren}</Link>
|
|
) : (
|
|
<SupportLink queryParams={{ orgSlug: slug, category: 'Plan_upgrade', subject, message }}>
|
|
{linkChildren}
|
|
</SupportLink>
|
|
)
|
|
|
|
if (!canUpdateSubscription) {
|
|
return (
|
|
<RequestUpgradeToBillingOwners
|
|
plan={plan}
|
|
addon={addon}
|
|
featureProposition={featureProposition}
|
|
className={className}
|
|
type={type}
|
|
>
|
|
{children}
|
|
</RequestUpgradeToBillingOwners>
|
|
)
|
|
}
|
|
|
|
if (projectUpdateDisabled) {
|
|
return (
|
|
<ButtonTooltip
|
|
disabled
|
|
type={type}
|
|
className={className}
|
|
tooltip={{
|
|
content: {
|
|
side: 'bottom',
|
|
text: 'Plan changes are currently disabled, our engineers are working on a fix',
|
|
},
|
|
}}
|
|
>
|
|
{linkChildren}
|
|
</ButtonTooltip>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Button asChild type={type} disabled={disabled} className={className} onClick={onClick}>
|
|
{link}
|
|
</Button>
|
|
)
|
|
}
|