Files
supabase/apps/studio/components/layouts/AppLayout/OrgCommandItem.tsx
2026-04-01 10:22:37 +02:00

50 lines
1.3 KiB
TypeScript

import { Check } from 'lucide-react'
import Link from 'next/link'
import { cn, CommandItem_Shadcn_ } from 'ui'
import PartnerIcon from '@/components/ui/PartnerIcon'
import type { Organization } from '@/types'
export interface OrgCommandItemProps {
org: Organization
selectedSlug: string | undefined
routePathname: string
hasRouteSlug: boolean
onClose: () => void
compactPadding?: boolean
}
export function OrgCommandItem({
org,
selectedSlug,
routePathname,
hasRouteSlug,
onClose,
compactPadding = false,
}: OrgCommandItemProps) {
const href = hasRouteSlug ? routePathname.replace('[slug]', org.slug) : `/org/${org.slug}`
return (
<CommandItem_Shadcn_
key={org.slug}
value={`${org.name.replaceAll('"', '')} - ${org.slug}`}
className="cursor-pointer w-full"
onSelect={() => onClose()}
>
<Link
href={href}
className={cn(
'w-full flex items-center justify-between text-sm md:text-xs',
!compactPadding && 'p-0.5'
)}
>
<div className="flex items-center gap-2">
<span>{org.name}</span>
<PartnerIcon organization={org} />
</div>
{org.slug === selectedSlug && <Check size={16} />}
</Link>
</CommandItem_Shadcn_>
)
}