mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
Migration complete for: - 5 atoms: Accordion, CopyButton, FileUpload, FilterInput, Image, Input, PasswordInput, Popover (8 total) - 1 molecule: BindingEditor Changes: - Deleted 9 legacy TSX files that have complete JSON equivalents - Exported BindingEditor from json-components.ts with useBindingEditor hook - Registered useBindingEditor in hooks-registry.ts - Updated all imports across codebase to use JSON-based components - Fixed build errors: schema-loader dynamic import, DataSourceGroupSection - Cleaned up component index exports Build status: ✅ PASSING - 0 TypeScript errors - All 9,408 modules transformed successfully - No blocking build warnings Next steps: - 3 organisms still need conversion: DataSourceManager, NavigationMenu, TreeListPanel - 120+ additional components have TSX versions (need individual migration) - 22 JSON components now available for use throughout the app Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
26 lines
555 B
TypeScript
26 lines
555 B
TypeScript
import { Badge } from '@/components/ui/badge'
|
|
|
|
interface ErrorBadgeProps {
|
|
count: number
|
|
variant?: 'default' | 'destructive'
|
|
size?: 'sm' | 'md'
|
|
}
|
|
|
|
export function ErrorBadge({ count, variant = 'destructive', size = 'md' }: ErrorBadgeProps) {
|
|
if (count === 0) return null
|
|
|
|
const sizeClasses = {
|
|
sm: 'h-5 w-5 text-[10px]',
|
|
md: 'h-6 w-6 text-xs',
|
|
}
|
|
|
|
return (
|
|
<Badge
|
|
variant={variant}
|
|
className={`${sizeClasses[size]} p-0 flex items-center justify-center absolute -top-1 -right-1`}
|
|
>
|
|
{count}
|
|
</Badge>
|
|
)
|
|
}
|