feat(docs-ui): include new FileIcon shared module (continuation)

Companion to prior commit — the untracked file-icon.tsx that both
EntityFolderView and FileGrid now import.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-25 13:02:41 +02:00
parent dd6e8ee968
commit 9138932d1b

View File

@@ -0,0 +1,30 @@
import { FileText, Film, Image, Sheet } from 'lucide-react';
import { cn } from '@/lib/utils';
interface FileIconProps {
mimeType: string | null;
className?: string;
}
/**
* Shared file-type icon mapping. Same colour/glyph palette across FileGrid
* and EntityFolderView so rows in the two surfaces read identically.
*/
export function FileIcon({ mimeType, className }: FileIconProps) {
const base = cn('shrink-0', className ?? 'h-3.5 w-3.5');
if (!mimeType) return <FileText className={cn(base, 'text-muted-foreground')} />;
// eslint-disable-next-line jsx-a11y/alt-text
if (mimeType.startsWith('image/')) return <Image className={cn(base, 'text-blue-500')} />;
if (mimeType === 'application/pdf') return <FileText className={cn(base, 'text-red-500')} />;
if (
mimeType === 'application/vnd.ms-excel' ||
mimeType === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' ||
mimeType === 'text/csv'
) {
return <Sheet className={cn(base, 'text-green-600')} />;
}
if (mimeType.startsWith('video/')) return <Film className={cn(base, 'text-purple-500')} />;
return <FileText className={cn(base, 'text-muted-foreground')} />;
}