| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import Link from 'next/link'
- import { useMemo } from 'react'
- import { Alert, AlertDescription, AlertTitle, Button, CriticalIcon } from 'ui'
- import { InfoTooltip } from 'ui-patterns/info-tooltip'
- import { SectionContent } from '../SectionContent'
- import { CategoryAttribute } from '../Usage.constants'
- import Panel from '@/components/ui/Panel'
- import { PricingMetric } from '@/data/analytics/org-daily-stats-query'
- import type { OrgSubscription } from '@/data/subscriptions/types'
- import { OrgUsageResponse } from '@/data/usage/org-usage-query'
- import { formatBytes } from '@/lib/helpers'
- export interface DatabaseSizeUsageProps {
- slug: string
- projectRef?: string | null
- attribute: CategoryAttribute
- subscription?: OrgSubscription
- usage?: OrgUsageResponse
- currentBillingCycleSelected: boolean
- }
- const DatabaseSizeUsage = ({
- attribute,
- subscription,
- usage,
- currentBillingCycleSelected,
- }: DatabaseSizeUsageProps) => {
- const databaseSizeUsage = useMemo(
- () => usage?.usages.find((it) => it.metric === PricingMetric.DATABASE_SIZE),
- [usage]
- )
- const hasProjectsExceedingDatabaseSize = useMemo(() => {
- return databaseSizeUsage?.project_allocations.some((it) => it.usage > 0.5 * 1e9)
- }, [databaseSizeUsage])
- return (
- <div id={attribute.anchor} className="scroll-my-12">
- <SectionContent section={attribute}>
- <div className="space-y-4">
- {currentBillingCycleSelected && hasProjectsExceedingDatabaseSize && (
- <Alert variant="warning">
- <CriticalIcon />
- <AlertTitle>Projects exceeding quota</AlertTitle>
- <AlertDescription>
- You have projects that are exceeding 0.5 GB of database size. Reduce the database
- size or upgrade to a paid plan.
- </AlertDescription>
- </Alert>
- )}
- <div>
- <div className="flex items-center justify-between">
- <div className="flex items-center space-x-4">
- <p className="text-sm">{attribute.name} usage</p>
- </div>
- </div>
- {subscription?.plan.id !== 'platform' && (
- <>
- <div className="flex items-center justify-between border-b py-1">
- <p className="text-xs text-foreground-light">
- Included in {subscription?.plan?.name} Plan
- </p>
- <p className="text-xs">0.5 GB per project</p>
- </div>
- <div className="flex items-center justify-between">
- <p className="text-xs text-foreground-light">Max database size</p>
- <p className="text-xs">
- {databaseSizeUsage?.usage
- ? formatBytes(databaseSizeUsage?.usage_original)
- : '-'}
- </p>
- </div>
- </>
- )}
- </div>
- {currentBillingCycleSelected && subscription?.plan.id !== 'platform' ? (
- <div className="space-y-4">
- <div className="space-y-1">
- <p className="text-sm">Current database size per project</p>
- </div>
- {databaseSizeUsage?.project_allocations.length === 0 && (
- <Panel>
- <Panel.Content>
- <div className="flex flex-col items-center justify-center">
- <p className="text-sm">No active projects</p>
- <p className="text-sm text-foreground-light">
- You don't have any active projects in this organization.
- </p>
- </div>
- </Panel.Content>
- </Panel>
- )}
- {databaseSizeUsage?.project_allocations.map((project, idx) => {
- return (
- <div
- key={`usage-project-${project.ref}`}
- className={
- idx !== databaseSizeUsage.project_allocations.length - 1
- ? 'border-b pb-2'
- : ''
- }
- >
- <div className="flex justify-between">
- <span className="text-foreground-light flex items-center gap-2">
- {project.name}
- </span>
- <Button asChild type="default" size={'tiny'}>
- <Link
- href={`/project/${project.ref}/observability/database#database-size-report`}
- >
- Manage Database Size
- </Link>
- </Button>
- </div>
- <div className="flex flex-col gap-2">
- <div className="flex items-center h-6 gap-3">
- <span className="text-foreground-light text-sm font-mono flex items-center gap-2">
- <span className="text-foreground font-semibold font-mono mt-[-2px]">
- {formatBytes(project.usage)}
- </span>{' '}
- Database Size
- </span>
- <InfoTooltip side="top">
- <p>
- {formatBytes(project.usage)} GB database size as reported by Postgres.
- </p>
- </InfoTooltip>
- </div>
- </div>
- </div>
- )
- })}
- </div>
- ) : (
- <Panel>
- <Panel.Content>
- <div className="flex flex-col items-center justify-center">
- <p className="text-sm">Data not available</p>
- <p className="text-sm text-foreground-light">
- Switch to current billing cycle to see current database size per project.
- </p>
- </div>
- </Panel.Content>
- </Panel>
- )}
- </div>
- </SectionContent>
- </div>
- )
- }
- export default DatabaseSizeUsage
|