mirror of
https://github.com/supabase/supabase.git
synced 2026-09-11 04:21:47 +08:00
Follow-up to #48344: collapses the two resolution paths for the Admonition module into one. `src/admonition.tsx` was a back-compat shim re-exporting `src/Admonition/`. Two ways to resolve one module is exactly what produced the macOS self-import bug fixed in #48344, and the local typecheck errors that #48374 worked around. This removes the shim and standardizes on the PascalCase subpath, matching every other export in the package. **Changed:** - Codemodded all 246 `ui-patterns/admonition` imports to `ui-patterns/Admonition` (240 `.tsx`, 5 `.mdx`, 1 `.ts` across studio, docs, www, design-system, and lite-studio) - Pointed the 5 internal `'../admonition'` imports back at the `'../Admonition'` directory **Removed:** - `packages/ui-patterns/src/admonition.tsx`, and its `./admonition` entry in the exports map (regenerated with `pnpm gen:exports`) ## To test - `grep -r "ui-patterns/admonition" --include='*.ts*'` → no hits - `pnpm test:case-hazards` → passes - `pnpm typecheck` → all 15 tasks green - `pnpm --filter studio run lint:ratchet` → passes - `pnpm --filter ui-patterns vitest run src/Admonition` → 11 tests pass <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Standardized Admonition component imports across the application and documentation. * Improved compatibility with case-sensitive environments by using the canonical component path. * Removed the legacy Admonition import entry point. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Alaister Young <10985857+alaister@users.noreply.github.com>
209 lines
8.6 KiB
TypeScript
209 lines
8.6 KiB
TypeScript
import { PermissionAction } from '@supabase/shared-types/out/constants'
|
|
import { useFlag, useParams } from 'common'
|
|
import { ExternalLink } from 'lucide-react'
|
|
import { useTheme } from 'next-themes'
|
|
import Image from 'next/image'
|
|
import Link from 'next/link'
|
|
import { Alert, AlertTitle, Button } from 'ui'
|
|
import { Admonition } from 'ui-patterns/Admonition'
|
|
import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader'
|
|
|
|
import { ProjectUpdateDisabledTooltip } from '../ProjectUpdateDisabledTooltip'
|
|
import SpendCapSidePanel from './SpendCapSidePanel'
|
|
import {
|
|
ScaffoldSection,
|
|
ScaffoldSectionContent,
|
|
ScaffoldSectionDetail,
|
|
} from '@/components/layouts/Scaffold'
|
|
import { AlertError } from '@/components/ui/AlertError'
|
|
import { InlineLink } from '@/components/ui/InlineLink'
|
|
import { NoPermission } from '@/components/ui/NoPermission'
|
|
import PartnerIcon from '@/components/ui/PartnerIcon'
|
|
import { PARTNER_TO_NAME } from '@/components/ui/PartnerManagedResource'
|
|
import { useOrgSubscriptionQuery } from '@/data/subscriptions/org-subscription-query'
|
|
import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
|
|
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
|
|
import { BASE_PATH, DOCS_URL } from '@/lib/constants'
|
|
import { MANAGED_BY } from '@/lib/constants/infrastructure'
|
|
import { useOrgSettingsPageStateSnapshot } from '@/state/organization-settings'
|
|
|
|
export interface CostControlProps {}
|
|
|
|
const CostControl = ({}: CostControlProps) => {
|
|
const { slug } = useParams()
|
|
const { resolvedTheme } = useTheme()
|
|
const { data: selectedOrganization } = useSelectedOrganizationQuery()
|
|
|
|
const { isSuccess: isPermissionsLoaded, can: canReadSubscriptions } = useAsyncCheckPermissions(
|
|
PermissionAction.BILLING_READ,
|
|
'stripe.subscriptions'
|
|
)
|
|
|
|
const snap = useOrgSettingsPageStateSnapshot()
|
|
const projectUpdateDisabled = useFlag('disableProjectCreationAndUpdate')
|
|
const {
|
|
data: subscription,
|
|
error,
|
|
isPending: isLoading,
|
|
isSuccess,
|
|
isError,
|
|
} = useOrgSubscriptionQuery({ orgSlug: slug }, { enabled: canReadSubscriptions })
|
|
|
|
const currentPlan = subscription?.plan
|
|
const isUsageBillingEnabled = subscription?.usage_billing_enabled ?? false
|
|
|
|
const canChangeTier =
|
|
!projectUpdateDisabled && !['team', 'enterprise', 'platform'].includes(currentPlan?.id || '')
|
|
|
|
const costControlDisabled = selectedOrganization?.managed_by === MANAGED_BY.AWS_MARKETPLACE
|
|
|
|
return (
|
|
<>
|
|
<ScaffoldSection>
|
|
<ScaffoldSectionDetail>
|
|
<div className="sticky space-y-6 top-12">
|
|
<div className="space-y-2">
|
|
<p className="text-foreground text-base m-0">Cost Control</p>
|
|
<p className="text-sm text-foreground-light m-0">
|
|
Allow scaling beyond your plan's{' '}
|
|
<InlineLink href={`/org/${slug}/usage`}>included quota</InlineLink>.
|
|
</p>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<p className="text-sm text-foreground-light m-0">More information</p>
|
|
<div>
|
|
<Link
|
|
href={`${DOCS_URL}/guides/platform/cost-control#spend-cap`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<div className="flex items-center space-x-2 opacity-50 hover:opacity-100 transition">
|
|
<p className="text-sm m-0">Spend cap</p>
|
|
<ExternalLink size={16} strokeWidth={1.5} />
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ScaffoldSectionDetail>
|
|
<ScaffoldSectionContent>
|
|
{isPermissionsLoaded && !canReadSubscriptions ? (
|
|
<NoPermission resourceText="update this organization's cost control" />
|
|
) : (
|
|
<>
|
|
{isLoading && (
|
|
<div className="space-y-2">
|
|
<ShimmeringLoader />
|
|
<ShimmeringLoader className="w-3/4" />
|
|
<ShimmeringLoader className="w-1/2" />
|
|
</div>
|
|
)}
|
|
|
|
{isError && <AlertError subject="Failed to retrieve subscription" error={error} />}
|
|
|
|
{isSuccess && costControlDisabled && (
|
|
<Alert className="flex flex-col items-center gap-y-2 border-0 rounded-none">
|
|
<PartnerIcon
|
|
organization={{ managed_by: selectedOrganization?.managed_by }}
|
|
showTooltip={false}
|
|
size="large"
|
|
/>
|
|
|
|
<AlertTitle className="text-sm">
|
|
The Spend Cap is not available for organizations managed by{' '}
|
|
{PARTNER_TO_NAME[selectedOrganization?.managed_by]}.
|
|
</AlertTitle>
|
|
</Alert>
|
|
)}
|
|
|
|
{isSuccess && !costControlDisabled && (
|
|
<div className="space-y-6">
|
|
{['team', 'enterprise', 'platform'].includes(currentPlan?.id || '') ? (
|
|
<>
|
|
<Admonition
|
|
type="default"
|
|
layout="horizontal"
|
|
title={`You will be charged for any additional usage on the ${
|
|
currentPlan?.name || ''
|
|
} plan`}
|
|
description={
|
|
<>
|
|
{currentPlan?.name || ''} plan requires you to have spend cap off at all
|
|
times. Your projects will never become unresponsive. Only when your{' '}
|
|
<Link
|
|
href={`/org/${slug}/usage`}
|
|
className="text-green-900 transition hover:text-green-1000"
|
|
>
|
|
included usage
|
|
</Link>{' '}
|
|
is exceeded will you be charged for any additional usage.
|
|
</>
|
|
}
|
|
/>
|
|
</>
|
|
) : (
|
|
<p className="text-sm text-foreground-light">
|
|
If you need to go beyond the included quota, simply switch off your spend cap
|
|
to pay for additional usage.
|
|
</p>
|
|
)}
|
|
|
|
<div className="flex flex-col md:flex-row gap-6">
|
|
<div>
|
|
<div className="rounded-md bg-surface-200 w-[160px] h-[96px] shadow-sm">
|
|
<Image
|
|
alt="Spend Cap"
|
|
width={160}
|
|
height={96}
|
|
src={
|
|
isUsageBillingEnabled
|
|
? `${BASE_PATH}/img/spend-cap-off${
|
|
resolvedTheme?.includes('dark') ? '' : '--light'
|
|
}.png`
|
|
: `${BASE_PATH}/img/spend-cap-on${
|
|
resolvedTheme?.includes('dark') ? '' : '--light'
|
|
}.png`
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<p className="mb-1">
|
|
Spend cap is {isUsageBillingEnabled ? 'disabled' : 'enabled'}
|
|
</p>
|
|
<p className="text-sm text-foreground-light">
|
|
{isUsageBillingEnabled ? (
|
|
<span>You will be charged for usage beyond the included quota.</span>
|
|
) : (
|
|
<span>
|
|
You won't be charged any extra for usage. However, your projects could
|
|
become unresponsive or enter read only mode if you exceed the included
|
|
quota.
|
|
</span>
|
|
)}
|
|
</p>
|
|
<ProjectUpdateDisabledTooltip projectUpdateDisabled={projectUpdateDisabled}>
|
|
<Button
|
|
variant="default"
|
|
className="mt-4 pointer-events-auto"
|
|
disabled={!canChangeTier}
|
|
onClick={() => snap.setPanelKey('costControl')}
|
|
>
|
|
Change spend cap
|
|
</Button>
|
|
</ProjectUpdateDisabledTooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</ScaffoldSectionContent>
|
|
</ScaffoldSection>
|
|
<SpendCapSidePanel />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default CostControl
|