Files
supabase/apps/studio/components/interfaces/Settings/Infrastructure/InfrastructureInfo.tsx
Ali Waseem a0b4eeb770 chore: fix undefined check for type warnings (#46111)
## I have read the
[CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md)
file.

YES

## What kind of change does this PR introduce?

Minor type check to resolve sentry issue

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Fixed an issue where validation warnings could display even when no
warnings were present, improving clarity in infrastructure settings
display.

<!-- review_stack_entry_start -->

[![Review Change
Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/supabase/supabase/pull/46111?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)

<!-- review_stack_entry_end -->

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-05-19 17:28:39 +02:00

249 lines
9.9 KiB
TypeScript

import { useParams } from 'common'
import Link from 'next/link'
import {
Badge,
Button,
Input,
InputGroup,
InputGroupAddon,
InputGroupInput,
Tooltip,
TooltipContent,
TooltipTrigger,
} from 'ui'
import { Admonition } from 'ui-patterns/admonition'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { GenericSkeletonLoader } from 'ui-patterns/ShimmeringLoader'
import { ProjectUpgradeAlert } from '../General/Infrastructure/ProjectUpgradeAlert'
import {
ReadReplicasWarning,
ValidationErrorsWarning,
ValidationWarningsAdmonition,
} from './UpgradeWarnings'
import { NoticeBar } from '@/components/interfaces/DiskManagement/ui/NoticeBar'
import {
ScaffoldContainer,
ScaffoldDivider,
ScaffoldSection,
ScaffoldSectionContent,
ScaffoldSectionDetail,
} from '@/components/layouts/Scaffold'
import AlertError from '@/components/ui/AlertError'
import { useProjectUpgradeEligibilityQuery } from '@/data/config/project-upgrade-eligibility-query'
import { useProjectServiceVersionsQuery } from '@/data/projects/project-service-versions'
import { useReadReplicasQuery } from '@/data/read-replicas/replicas-query'
import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
import { useIsOrioleDb, useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
export const InfrastructureInfo = () => {
const { ref } = useParams()
const { data: project } = useSelectedProjectQuery()
const {
projectAuthAll: authEnabled,
projectSettingsDatabaseUpgrades: showDatabaseUpgrades,
databaseReplication: showReplication,
} = useIsFeatureEnabled([
'project_auth:all',
'project_settings:database_upgrades',
'database:replication',
])
const {
data,
error,
isPending: isLoadingUpgradeEligibility,
isError: isErrorUpgradeEligibility,
isSuccess: isSuccessUpgradeEligibility,
} = useProjectUpgradeEligibilityQuery({
projectRef: ref,
})
const {
data: serviceVersions,
error: serviceVersionsError,
isPending: isLoadingServiceVersions,
isError: isErrorServiceVersions,
isSuccess: isSuccessServiceVersions,
} = useProjectServiceVersionsQuery({ projectRef: ref })
const { data: databases } = useReadReplicasQuery({ projectRef: ref })
const { current_app_version, current_app_version_release_channel, latest_app_version } =
data || {}
const isOnLatestVersion = current_app_version === latest_app_version
const currentPgVersion = (current_app_version ?? '')
.split('supabase-postgres-')[1]
?.replace('-orioledb', '')
const isVisibleReleaseChannel =
current_app_version_release_channel &&
!['ga', 'withdrawn'].includes(current_app_version_release_channel)
? current_app_version_release_channel
: undefined
const isOrioleDb = useIsOrioleDb()
const latestPgVersion = (latest_app_version ?? '').split('supabase-postgres-')[1]
const isInactive = project?.status === 'INACTIVE'
const hasReadReplicas = (databases ?? []).length > 1
return (
<>
<ScaffoldDivider />
{project?.cloud_provider !== 'FLY' && showReplication && (
<ScaffoldContainer>
<ScaffoldSection isFullWidth>
<NoticeBar
visible={true}
type="default"
title="Management of read replicas has moved"
description="Read replicas is now managed under Replication in the Database section."
actions={
<Button type="default" asChild>
<Link href={`/project/${ref}/database/replication`} className="no-underline!">
Go to Replication
</Link>
</Button>
}
/>
</ScaffoldSection>
</ScaffoldContainer>
)}
<ScaffoldContainer>
<ScaffoldSection>
<ScaffoldSectionDetail>
<h4 className="text-base capitalize m-0">Service versions</h4>
<p className="text-foreground-light text-sm pr-8 mt-1">
Service versions and upgrade eligibility for your provisioned instance.
</p>
</ScaffoldSectionDetail>
<ScaffoldSectionContent>
{isInactive ? (
<Admonition
type="note"
showIcon={false}
title="Service versions cannot be retrieved while project is paused"
description="Restoring the project will update Postgres to the newest version"
/>
) : (
<>
{/* [Joshen] Double check why we need this waterfall loading behaviour here */}
{isLoadingUpgradeEligibility && <GenericSkeletonLoader />}
{isErrorUpgradeEligibility && (
<AlertError error={error} subject="Failed to retrieve Postgres version" />
)}
{isSuccessUpgradeEligibility && (
<>
{isLoadingServiceVersions && <GenericSkeletonLoader />}
{isErrorServiceVersions && (
<AlertError
error={serviceVersionsError}
subject="Failed to retrieve versions"
/>
)}
{isSuccessServiceVersions && (
<>
{authEnabled && (
<FormItemLayout
label="Auth version"
layout="vertical"
isReactForm={false}
>
<Input readOnly disabled value={serviceVersions?.gotrue ?? ''} />
</FormItemLayout>
)}
<FormItemLayout
label="PostgREST version"
layout="vertical"
isReactForm={false}
>
<Input readOnly disabled value={serviceVersions?.postgrest ?? ''} />
</FormItemLayout>
<FormItemLayout
label="Postgres version"
layout="vertical"
isReactForm={false}
>
<InputGroup>
<InputGroupInput
readOnly
disabled
value={
currentPgVersion || serviceVersions?.['supabase-postgres'] || ''
}
/>
<InputGroupAddon align="inline-end">
{[
isVisibleReleaseChannel && (
<Tooltip key="release-channel">
<TooltipTrigger>
<Badge variant="warning" className="mr-1">
{isVisibleReleaseChannel}
</Badge>
</TooltipTrigger>
<TooltipContent side="bottom" className="w-44 text-center">
This project uses a {isVisibleReleaseChannel} database version
release
</TooltipContent>
</Tooltip>
),
isOrioleDb && (
<Tooltip key="orioledb">
<TooltipTrigger>
<Badge variant="default" className="mr-1">
OrioleDB
</Badge>
</TooltipTrigger>
<TooltipContent side="bottom" className="w-44 text-center">
This project uses OrioleDB
</TooltipContent>
</Tooltip>
),
isOnLatestVersion && (
<Tooltip key="latest-version">
<TooltipTrigger>
<Badge variant="success" className="mr-1">
Latest
</Badge>
</TooltipTrigger>
<TooltipContent side="bottom" className="w-52 text-center">
Project is on the latest version of Postgres that Supabase
supports
</TooltipContent>
</Tooltip>
),
]}
</InputGroupAddon>
</InputGroup>
</FormItemLayout>
</>
)}
{showDatabaseUpgrades && data && data.eligible ? (
hasReadReplicas ? (
<ReadReplicasWarning latestPgVersion={latestPgVersion} />
) : (
<ProjectUpgradeAlert />
)
) : null}
{showDatabaseUpgrades && data && !data.eligible && (
<ValidationErrorsWarning validationErrors={data.validation_errors} />
)}
{showDatabaseUpgrades && data && data.warnings && (
<ValidationWarningsAdmonition warnings={data.warnings} />
)}
</>
)}
</>
)}
</ScaffoldSectionContent>
</ScaffoldSection>
</ScaffoldContainer>
</>
)
}