Files
supabase/apps/studio/components/interfaces/App/CommandMenu/ContextSearchResults.shared.tsx
Gildas Garcia b30db91d71 chore: cleanup UI patterns exports (#47406)
## Problem

We now export components under a subpath in ui-patterns to avoid barrel
files as they slow down every tools (from IDE to linters, etc.) and may
also affect bundles our users have to download.

## Solution

- Remove the UI patterns index file
- Fix invalid impors
2026-06-30 09:23:17 +02:00

113 lines
3.5 KiB
TypeScript

import { cn, CommandList } from 'ui'
import { TextHighlighter } from 'ui-patterns/CommandMenu'
import { CommandMenuGroup } from 'ui-patterns/CommandMenu/internal/CommandMenuGroup'
import { CommandMenuItem } from 'ui-patterns/CommandMenu/internal/CommandMenuItem'
import type { IActionCommand, IRouteCommand } from 'ui-patterns/CommandMenu/internal/types'
import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader'
export interface SearchResult {
id: string
name: string
description?: string
}
export function SkeletonResults() {
return (
<div className="p-2 space-y-1">
{[0, 1, 2, 3].map((i) => (
<div key={i} className="flex items-center gap-3 px-2 py-2">
<ShimmeringLoader className="w-4! h-4! py-0! rounded-sm" delayIndex={i} />
<div className="flex-1 space-y-1">
<ShimmeringLoader className="w-32! py-1.5!" delayIndex={i} />
<ShimmeringLoader className="w-48! py-1!" delayIndex={i + 1} />
</div>
</div>
))}
</div>
)
}
interface EmptyStateProps {
icon: React.ComponentType<React.SVGProps<SVGSVGElement>>
label: string
query: string
}
export function EmptyState({ icon: Icon, label, query }: EmptyStateProps) {
return (
<div className="h-full flex flex-col items-center justify-center py-12 px-4 gap-4 text-center text-foreground-lighter">
<Icon className="h-6 w-6" strokeWidth={1.5} />
<p className="text-sm">
{query ? `No results found for "${query}"` : `Type to search in ${label}`}
</p>
</div>
)
}
interface ResultsListProps {
results: SearchResult[]
icon: React.ComponentType<React.SVGProps<SVGSVGElement>>
getIcon?: (result: SearchResult) => React.ComponentType<React.SVGProps<SVGSVGElement>>
onResultClick?: (result: SearchResult) => void
getRoute?: (result: SearchResult) => `/${string}` | `http${string}`
className?: string
infiniteLoadingObserverRef?: (node: Element | null) => void
}
export function ResultsList({
results,
icon: Icon,
getIcon,
onResultClick,
getRoute,
className,
infiniteLoadingObserverRef,
}: ResultsListProps) {
const commands = results.map((result): IRouteCommand | IActionCommand => {
const ResultIcon = getIcon ? getIcon(result) : Icon
const baseCommand = {
id: result.id,
name: result.name,
value: result.description ? `${result.name} ${result.description}` : result.name,
icon: () => <ResultIcon className="h-4 w-4" strokeWidth={1.5} />,
}
if (getRoute) {
return {
...baseCommand,
route: getRoute(result),
} as IRouteCommand
}
return {
...baseCommand,
action: () => onResultClick?.(result),
} as IActionCommand
})
return (
<CommandList
className={cn(
'max-h-full! flex-1 min-h-0 overflow-y-auto overflow-x-hidden bg-transparent',
className
)}
>
<CommandMenuGroup className="py-2">
{commands.map((command) => (
<CommandMenuItem key={command.id} command={command}>
<div className="flex flex-col min-w-0 text-foreground-light">
<TextHighlighter>{command.name}</TextHighlighter>
{command.value && command.value !== command.name && (
<p className="text-xs text-foreground-lighter/70 truncate mt-0.5">
{command.value.replace(command.name, '').trim()}
</p>
)}
</div>
</CommandMenuItem>
))}
</CommandMenuGroup>
{infiniteLoadingObserverRef && <div ref={infiniteLoadingObserverRef} />}
</CommandList>
)
}