mirror of
https://github.com/supabase/supabase.git
synced 2026-05-19 19:37:22 +08:00
127 lines
4.4 KiB
TypeScript
127 lines
4.4 KiB
TypeScript
import { Github } from 'lucide-react'
|
||
import { useRouter } from 'next/router'
|
||
import InlineSVG from 'react-inlinesvg'
|
||
|
||
import { ComputeBadgeWrapper } from 'components/ui/ComputeBadgeWrapper'
|
||
import type { IntegrationProjectConnection } from 'data/integrations/integrations.types'
|
||
import { getComputeSize, OrgProject } from 'data/projects/org-projects-infinite-query'
|
||
import type { ResourceWarning } from 'data/usage/resource-warnings-query'
|
||
import { BASE_PATH } from 'lib/constants'
|
||
import { createNavigationHandler } from 'lib/navigation'
|
||
import type { Organization } from 'types'
|
||
import { TableCell, TableRow } from 'ui'
|
||
import { TimestampInfo } from 'ui-patterns'
|
||
import { inferProjectStatus } from './ProjectCard.utils'
|
||
import { ProjectCardStatus } from './ProjectCardStatus'
|
||
|
||
export interface ProjectTableRowProps {
|
||
project: OrgProject
|
||
organization?: Organization
|
||
rewriteHref?: string
|
||
githubIntegration?: IntegrationProjectConnection
|
||
vercelIntegration?: IntegrationProjectConnection
|
||
resourceWarnings?: ResourceWarning
|
||
}
|
||
|
||
export const ProjectTableRow = ({
|
||
project,
|
||
organization,
|
||
rewriteHref,
|
||
githubIntegration,
|
||
vercelIntegration,
|
||
resourceWarnings,
|
||
}: ProjectTableRowProps) => {
|
||
const router = useRouter()
|
||
const { name, ref: projectRef } = project
|
||
const projectStatus = inferProjectStatus(project.status)
|
||
|
||
const url = rewriteHref ?? `/project/${project.ref}`
|
||
const isGithubIntegrated = githubIntegration !== undefined
|
||
const isVercelIntegrated = vercelIntegration !== undefined
|
||
const githubRepository = githubIntegration?.metadata.name ?? undefined
|
||
|
||
const infraInformation = project.databases.find((x) => x.identifier === project.ref)
|
||
|
||
const handleNavigation = createNavigationHandler(url, router)
|
||
|
||
return (
|
||
<TableRow
|
||
className="cursor-pointer hover:bg-surface-200 inset-focus"
|
||
onClick={handleNavigation}
|
||
onAuxClick={handleNavigation}
|
||
onKeyDown={handleNavigation}
|
||
tabIndex={0}
|
||
>
|
||
<TableCell>
|
||
<div className="flex flex-col gap-y-2">
|
||
{/* Text */}
|
||
<div>
|
||
<h5 className="text-sm">{name}</h5>
|
||
<p className="text-sm text-foreground-lighter">ID: {projectRef}</p>
|
||
</div>
|
||
{/* Integrations */}
|
||
{(isGithubIntegrated || isVercelIntegrated) && (
|
||
<div className="flex items-center gap-x-1.5">
|
||
{isVercelIntegrated && (
|
||
<div className="bg-surface-100 w-5 h-5 p-1 border border-strong rounded-md flex items-center text-black dark:text-white">
|
||
<InlineSVG
|
||
src={`${BASE_PATH}/img/icons/vercel-icon.svg`}
|
||
title="Vercel Icon"
|
||
className="w-3"
|
||
/>
|
||
</div>
|
||
)}
|
||
{isGithubIntegrated && (
|
||
<div className="bg-surface-100 flex items-center gap-x-0.5 h-5 pr-1 border border-strong rounded-md">
|
||
<div className="w-5 h-5 p-1 flex items-center">
|
||
<Github size={12} strokeWidth={1.5} />
|
||
</div>
|
||
{githubRepository && (
|
||
<p className="text-xs text-foreground-light truncate">{githubRepository}</p>
|
||
)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
</TableCell>
|
||
<TableCell>
|
||
<ProjectCardStatus
|
||
projectStatus={projectStatus}
|
||
resourceWarnings={resourceWarnings}
|
||
renderMode="badge"
|
||
/>
|
||
</TableCell>
|
||
<TableCell>
|
||
<div className="w-fit">
|
||
{project.status !== 'INACTIVE' ? (
|
||
<ComputeBadgeWrapper
|
||
slug={organization?.slug}
|
||
projectRef={project.ref}
|
||
cloudProvider={project.cloud_provider}
|
||
computeSize={getComputeSize(project)}
|
||
/>
|
||
) : (
|
||
<span className="text-xs text-foreground-muted">–</span>
|
||
)}
|
||
</div>
|
||
</TableCell>
|
||
<TableCell>
|
||
<span className="lowercase text-sm text-foreground-light">
|
||
{project.cloud_provider} | {project.region || 'N/A'}
|
||
</span>
|
||
</TableCell>
|
||
<TableCell>
|
||
{project.inserted_at ? (
|
||
<TimestampInfo
|
||
className="text-sm text-foreground-light"
|
||
utcTimestamp={project.inserted_at}
|
||
/>
|
||
) : (
|
||
<span className="text-sm text-foreground-light">N/A</span>
|
||
)}
|
||
</TableCell>
|
||
</TableRow>
|
||
)
|
||
}
|