import { formatDistanceToNowStrict } from 'date-fns'; import { useDeleteGrpcConnection } from '../hooks/useDeleteGrpcConnection'; import { useDeleteGrpcConnections } from '../hooks/useDeleteGrpcConnections'; import type { GrpcConnection } from '@yaakapp-internal/models'; import { pluralizeCount } from '../lib/pluralize'; import { Dropdown } from './core/Dropdown'; import { Icon } from './core/Icon'; import { IconButton } from './core/IconButton'; import { HStack } from './core/Stacks'; interface Props { connections: GrpcConnection[]; activeConnection: GrpcConnection; onPinnedConnectionId: (id: string) => void; } export function RecentConnectionsDropdown({ activeConnection, connections, onPinnedConnectionId, }: Props) { const deleteConnection = useDeleteGrpcConnection(activeConnection?.id ?? null); const deleteAllConnections = useDeleteGrpcConnections(activeConnection?.requestId); const latestConnectionId = connections[0]?.id ?? 'n/a'; return ( ({ key: c.id, label: ( {formatDistanceToNowStrict(c.createdAt + 'Z')} ago •{' '} {c.elapsed}ms ), leftSlot: activeConnection?.id === c.id ? : , onSelect: () => onPinnedConnectionId(c.id), })), ]} > ); }