| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- import { useBreakpoint } from 'common'
- import { useMemo } from 'react'
- import { cn } from 'ui'
- import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader'
- import { BILLING_BREAKDOWN_METRICS } from '../BillingSettings/BillingBreakdown/BillingBreakdown.constants'
- import { BillingMetric } from '../BillingSettings/BillingBreakdown/BillingMetric'
- import { ComputeMetric } from '../BillingSettings/BillingBreakdown/ComputeMetric'
- import { SectionContent } from './SectionContent'
- import AlertError from '@/components/ui/AlertError'
- import {
- ComputeUsageMetric,
- computeUsageMetricLabel,
- PricingMetric,
- } from '@/data/analytics/org-daily-stats-query'
- import type { OrgSubscription } from '@/data/subscriptions/types'
- import { useOrgUsageQuery } from '@/data/usage/org-usage-query'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- import { DOCS_URL } from '@/lib/constants'
- export interface ComputeProps {
- orgSlug: string
- projectRef?: string | null
- startDate: string | undefined
- endDate: string | undefined
- subscription: OrgSubscription | undefined
- currentBillingCycleSelected: boolean
- }
- const METRICS_TO_HIDE_WITH_NO_USAGE: PricingMetric[] = [
- PricingMetric.DISK_IOPS_IO2,
- PricingMetric.DISK_IOPS_GP3,
- PricingMetric.DISK_SIZE_GB_HOURS_GP3,
- PricingMetric.DISK_SIZE_GB_HOURS_IO2,
- PricingMetric.DISK_THROUGHPUT_GP3,
- PricingMetric.LOG_INGESTION,
- PricingMetric.LOG_STORAGE,
- PricingMetric.LOG_QUERYING,
- PricingMetric.ACTIVE_COMPUTE_HOURS,
- ]
- export const TotalUsage = ({
- orgSlug,
- projectRef,
- subscription,
- startDate,
- endDate,
- currentBillingCycleSelected,
- }: ComputeProps) => {
- const isMobile = useBreakpoint('md')
- const isUsageBillingEnabled = subscription?.usage_billing_enabled
- const { billingAll } = useIsFeatureEnabled(['billing:all'])
- const { data: org } = useSelectedOrganizationQuery()
- const hasActiveRestriction = Boolean(org?.restriction_status)
- const {
- data: usage,
- error: usageError,
- isPending: isLoadingUsage,
- isError: isErrorUsage,
- isSuccess: isSuccessUsage,
- } = useOrgUsageQuery({
- orgSlug,
- projectRef,
- start: !currentBillingCycleSelected && startDate ? new Date(startDate) : undefined,
- end: !currentBillingCycleSelected && endDate ? new Date(endDate) : undefined,
- })
- // When the user filters by project ref or selects a custom timeframe, we only display usage+project breakdown, but no costs/limits
- const showRelationToSubscription = currentBillingCycleSelected && !projectRef
- const isOnHigherPlan = ['team', 'enterprise', 'platform'].includes(subscription?.plan.id ?? '')
- const hasExceededAnyLimits =
- showRelationToSubscription &&
- Boolean(
- usage?.usages.find(
- (usageItem) =>
- // Filter out compute as compute has no quota and is always being charged for
- !usageItem.metric.startsWith('COMPUTE_') &&
- !usageItem.unlimited &&
- usageItem.usage > (usageItem?.pricing_free_units ?? 0)
- )
- )
- const sortedBillingMetrics = useMemo(() => {
- if (!usage) return []
- const breakdownMetrics = BILLING_BREAKDOWN_METRICS.filter((metric) =>
- usage.usages.some((usage) => usage.metric === metric.key)
- ).filter((metric) => {
- if (!METRICS_TO_HIDE_WITH_NO_USAGE.includes(metric.key as PricingMetric)) return true
- const metricUsage = usage.usages.find((it) => it.metric === metric.key)
- return metricUsage && metricUsage.usage > 0
- })
- return breakdownMetrics.slice().sort((a, b) => {
- const usageMetaA = usage.usages.find((x) => x.metric === a.key)
- const usageRatioA =
- typeof usageMetaA !== 'number'
- ? (usageMetaA?.usage ?? 0) / (usageMetaA?.pricing_free_units ?? 0)
- : 0
- const usageMetaB = usage.usages.find((x) => x.metric === b.key)
- const usageRatioB =
- typeof usageMetaB !== 'number'
- ? (usageMetaB?.usage ?? 0) / (usageMetaB?.pricing_free_units ?? 0)
- : 0
- return (
- // Sort unavailable features to bottom
- Number(usageMetaB?.available_in_plan) - Number(usageMetaA?.available_in_plan) ||
- // Sort high-usage features to top
- usageRatioB - usageRatioA
- )
- })
- }, [usage])
- const computeMetrics = (usage?.usages || [])
- .filter((it) => it.metric.startsWith('COMPUTE'))
- .map((it) => it.metric) as ComputeUsageMetric[]
- return (
- <div id="summary">
- <SectionContent
- section={{
- name: 'Usage Summary',
- description: isUsageBillingEnabled
- ? `Your plan includes a limited amount of usage. If exceeded, you will be charged for the overages. It may take up to 1 hour to refresh.`
- : `Your plan includes a limited amount of usage. If exceeded, you may experience restrictions, as you are currently not billed for overages. It may take up to 1 hour to refresh.`,
- links: billingAll
- ? [
- {
- name: 'How billing works',
- url: `${DOCS_URL}/guides/platform/billing-on-briven`,
- },
- {
- name: 'Briven Plans',
- url: 'https://supabase.com/pricing',
- },
- ]
- : [],
- }}
- >
- {isLoadingUsage && (
- <div className="space-y-2">
- <ShimmeringLoader />
- <ShimmeringLoader className="w-3/4" />
- <ShimmeringLoader className="w-1/2" />
- </div>
- )}
- {isErrorUsage && <AlertError subject="Failed to retrieve usage data" error={usageError} />}
- {isSuccessUsage && subscription && (
- <div>
- {showRelationToSubscription && !isOnHigherPlan && !hasActiveRestriction && (
- <p className="text-sm">
- {!hasExceededAnyLimits ? (
- <span>
- You have not exceeded your{' '}
- <span className="font-medium">{subscription?.plan.name}</span> Plan quota in
- this billing cycle.
- </span>
- ) : hasExceededAnyLimits && subscription?.plan?.id === 'free' ? (
- <span>
- You have exceeded your{' '}
- <span className="font-medium">{subscription?.plan.name}</span> Plan quota in
- this billing cycle. Upgrade your plan to continue using Briven without
- restrictions.
- </span>
- ) : hasExceededAnyLimits &&
- subscription?.usage_billing_enabled === false &&
- subscription?.plan?.id === 'pro' ? (
- <span>
- You have exceeded your{' '}
- <span className="font-medium">{subscription?.plan.name}</span> Plan quota in
- this billing cycle. Disable your spend cap to continue using Briven without
- restrictions.
- </span>
- ) : hasExceededAnyLimits && subscription?.usage_billing_enabled === true ? (
- <span>
- You have exceeded your{' '}
- <span className="font-medium">{subscription?.plan.name}</span> Plan quota in
- this billing cycle and will be charged for over-usage.
- </span>
- ) : (
- <span>
- You have not exceeded your{' '}
- <span className="font-medium">{subscription?.plan.name}</span> Plan quota in
- this billing cycle.
- </span>
- )}
- </p>
- )}
- <div className="grid grid-cols-2 mt-3 gap-px bg-border">
- {sortedBillingMetrics.map((metric, i) => {
- return (
- <div
- key={metric.key}
- className={cn('col-span-2 md:col-span-1 bg-sidebar space-y-4 py-4')}
- >
- <BillingMetric
- idx={i}
- slug={orgSlug}
- metric={metric}
- usage={usage}
- subscription={subscription!}
- relativeToSubscription={showRelationToSubscription}
- className={cn(i % 2 === 0 ? 'md:pr-4' : 'md:pl-4')}
- />
- </div>
- )
- })}
- {computeMetrics.map((metric, i) => {
- return (
- <div
- key={metric}
- className={cn('col-span-2 md:col-span-1 bg-sidebar space-y-4 py-4')}
- >
- <ComputeMetric
- slug={orgSlug}
- metric={{
- key: metric,
- name: computeUsageMetricLabel(metric) + ' Compute Hours' || metric,
- units: 'hours',
- anchor: 'compute',
- category: 'Compute',
- unitName: 'GB',
- }}
- relativeToSubscription={showRelationToSubscription}
- usage={usage}
- className={cn(
- (i + sortedBillingMetrics.length) % 2 === 0 ? 'md:pr-4' : 'md:pl-4'
- )}
- />
- </div>
- )
- })}
- {!isMobile && (sortedBillingMetrics.length + computeMetrics.length) % 2 === 1 && (
- <div className="col-span-2 md:col-span-1 bg-sidebar" />
- )}
- </div>
- </div>
- )}
- </SectionContent>
- </div>
- )
- }
|