| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import { useParams } from 'common'
- import dayjs from 'dayjs'
- import { Archive, Cpu, Database, GitBranch, Github } from 'lucide-react'
- import { useMemo } from 'react'
- import { cn, Skeleton } from 'ui'
- import { TimestampInfo } from 'ui-patterns'
- import { HighAvailabilityBadge } from './HighAvailabilityBadge'
- import { ServiceStatus } from './ServiceStatus'
- import { ComputeBadgeWrapper } from '@/components/ui/ComputeBadgeWrapper'
- import { SingleStat } from '@/components/ui/SingleStat'
- import { useBranchesQuery } from '@/data/branches/branches-query'
- import { useBackupsQuery } from '@/data/database/backups-query'
- import { DatabaseMigration, useMigrationsQuery } from '@/data/database/migrations-query'
- import { useGitHubConnectionsQuery } from '@/data/integrations/github-connections-query'
- import { useResourceWarningsQuery } from '@/data/usage/resource-warnings-query'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- import { PROJECT_STATUS } from '@/lib/constants'
- import { EMPTY_ARR } from '@/lib/void'
- export const ActivityStats = () => {
- const { ref } = useParams()
- const { data: project } = useSelectedProjectQuery()
- const { data: organization } = useSelectedOrganizationQuery()
- const { data: resourceWarnings } = useResourceWarningsQuery({ slug: organization?.slug })
- const projectResourceWarnings = resourceWarnings?.find((warning) => warning.project === ref)
- const parentProjectRef = project?.parent_project_ref ?? project?.ref
- const { data: branchesData, isPending: isLoadingBranches } = useBranchesQuery({
- projectRef: parentProjectRef,
- })
- const isDefaultProject = project?.parent_project_ref === undefined
- const currentBranch = useMemo(
- () => (branchesData ?? []).find((b) => b.project_ref === ref),
- [branchesData, ref]
- )
- const latestNonDefaultBranch = useMemo(() => {
- const list = (branchesData ?? []).filter((b) => !b.is_default)
- if (list.length === 0) return undefined
- return list
- .slice()
- .sort(
- (a, b) =>
- new Date(b.created_at ?? b.updated_at).valueOf() -
- new Date(a.created_at ?? a.updated_at).valueOf()
- )[0]
- }, [branchesData])
- const { data: migrationsData = EMPTY_ARR, isPending: isLoadingMigrations } = useMigrationsQuery({
- projectRef: project?.ref,
- projectStatus: project?.status,
- connectionString: project?.connectionString,
- })
- const latestMigration = useMemo<DatabaseMigration | undefined>(
- () => migrationsData[0],
- [migrationsData]
- )
- const migrationLabelText =
- migrationsData.length === 0 ? 'No migrations' : (latestMigration?.name ?? 'Unknown')
- const { data: backupsData, isPending: isLoadingBackups } = useBackupsQuery({
- projectRef: project?.ref,
- projectStatus: project?.status,
- })
- const latestBackup = useMemo(() => {
- const list = backupsData?.backups ?? []
- if (list.length === 0) return undefined
- return list
- .slice()
- .sort((a, b) => new Date(b.inserted_at).valueOf() - new Date(a.inserted_at).valueOf())[0]
- }, [backupsData])
- const { data: githubConnections, isPending: isLoadingGithubConnections } =
- useGitHubConnectionsQuery({ organizationId: organization?.id }, { enabled: !!organization?.id })
- const githubConnection = githubConnections?.find(
- (connection) => connection.project.ref === parentProjectRef
- )
- const isProjectComingUp = [PROJECT_STATUS.COMING_UP, PROJECT_STATUS.UNKNOWN].includes(
- project?.status ?? PROJECT_STATUS.UNKNOWN
- )
- const githubLabelText = githubConnection?.repository.name
- ? githubConnection.repository.name
- : isProjectComingUp
- ? 'Waiting for project...'
- : 'No repository connected'
- const integrationsPath = parentProjectRef
- ? `/project/${parentProjectRef}/settings/integrations`
- : undefined
- return (
- <div className="@container">
- <div className="grid grid-cols-1 @md:grid-cols-2 gap-2 @md:gap-6 flex-wrap">
- <ServiceStatus />
- <SingleStat
- icon={<Cpu size={18} strokeWidth={1.5} className="text-foreground" />}
- label={<span>Compute</span>}
- value={
- <div className="flex items-center gap-2 flex-wrap">
- {project?.infra_compute_size ? (
- <ComputeBadgeWrapper
- projectRef={project?.ref}
- slug={organization?.slug}
- cloudProvider={project?.cloud_provider}
- computeSize={project.infra_compute_size}
- resourceWarnings={projectResourceWarnings}
- />
- ) : (
- <p className="text-foreground-lighter">Unknown</p>
- )}
- {project?.high_availability && <HighAvailabilityBadge />}
- </div>
- }
- />
- <SingleStat
- href={integrationsPath}
- icon={<Github size={18} strokeWidth={1.5} className="text-foreground" />}
- label={<span>GitHub</span>}
- value={
- isLoadingGithubConnections ? (
- <Skeleton className="h-6 w-24" />
- ) : (
- <p
- className={cn('truncate', !githubConnection && 'text-foreground-lighter')}
- title={githubLabelText}
- >
- {githubLabelText}
- </p>
- )
- }
- />
- <SingleStat
- href={`/project/${ref}/branches`}
- icon={<GitBranch size={18} strokeWidth={1.5} className="text-foreground" />}
- label={<span>{isDefaultProject ? 'Recent branch' : 'Branch Created'}</span>}
- trackingProperties={{
- stat_type: 'branches',
- stat_value: branchesData?.length ?? 0,
- }}
- value={
- isLoadingBranches ? (
- <Skeleton className="h-6 w-24" />
- ) : isDefaultProject ? (
- <p
- className={cn(
- 'truncate',
- !latestNonDefaultBranch && 'text-foreground-lighter truncate'
- )}
- title={latestNonDefaultBranch?.name ?? 'No branches'}
- >
- {latestNonDefaultBranch?.name ?? 'No branches'}
- </p>
- ) : currentBranch?.created_at ? (
- <TimestampInfo
- className="text-base"
- label={dayjs(currentBranch.created_at).fromNow()}
- utcTimestamp={currentBranch.created_at}
- />
- ) : (
- <p className="text-foreground-lighter">Unknown</p>
- )
- }
- />
- <SingleStat
- href={`/project/${ref}/database/migrations`}
- icon={<Database size={18} strokeWidth={1.5} className="text-foreground" />}
- label={<span>Last migration</span>}
- trackingProperties={{
- stat_type: 'migrations',
- stat_value: migrationsData?.length ?? 0,
- }}
- value={
- isLoadingMigrations ? (
- <Skeleton className="h-6 w-24" />
- ) : (
- <p className={!!latestMigration ? 'text-foreground' : 'text-foreground-lighter'}>
- {migrationLabelText}
- </p>
- )
- }
- />
- <SingleStat
- href={`/project/${ref}/database/backups/scheduled`}
- icon={<Archive size={18} strokeWidth={1.5} className="text-foreground" />}
- label={<span>Last backup</span>}
- trackingProperties={{
- stat_type: 'backups',
- stat_value: backupsData?.backups?.length ?? 0,
- }}
- value={
- isLoadingBackups ? (
- <Skeleton className="h-6 w-24" />
- ) : backupsData?.pitr_enabled ? (
- <p>PITR enabled</p>
- ) : latestBackup ? (
- <TimestampInfo
- className="text-base"
- displayAs="utc"
- label={dayjs(latestBackup.inserted_at).fromNow()}
- utcTimestamp={latestBackup.inserted_at}
- />
- ) : (
- <p className="text-foreground-lighter">No backups</p>
- )
- }
- />
- </div>
- </div>
- )
- }
|