mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
87 lines
2.8 KiB
TypeScript
87 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import React from 'react';
|
|
import Image from 'next/image';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '@/components/ui/accordion';
|
|
|
|
import { SearchResult } from '@/components/types';
|
|
|
|
interface SearchResultCardProps {
|
|
result: SearchResult;
|
|
}
|
|
|
|
const SearchResultCard: React.FC<SearchResultCardProps> = ({ result }) => {
|
|
// Helper to render content based on content type
|
|
const renderContent = (content: string, contentType: string) => {
|
|
if (contentType.startsWith('image/')) {
|
|
return (
|
|
<div className="flex justify-center p-4 bg-muted rounded-md">
|
|
<Image
|
|
src={content}
|
|
alt="Document content"
|
|
className="max-w-full max-h-96 object-contain"
|
|
width={500}
|
|
height={300}
|
|
/>
|
|
</div>
|
|
);
|
|
} else if (content.startsWith('data:image/png;base64,') || content.startsWith('data:image/jpeg;base64,')) {
|
|
return (
|
|
<div className="flex justify-center p-4 bg-muted rounded-md">
|
|
<Image
|
|
src={content}
|
|
alt="Base64 image content"
|
|
className="max-w-full max-h-96 object-contain"
|
|
width={500}
|
|
height={300}
|
|
/>
|
|
</div>
|
|
);
|
|
} else {
|
|
return (
|
|
<div className="bg-muted p-4 rounded-md whitespace-pre-wrap font-mono text-sm">
|
|
{content}
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Card key={`${result.document_id}-${result.chunk_number}`}>
|
|
<CardHeader className="pb-2">
|
|
<div className="flex justify-between items-start">
|
|
<div>
|
|
<CardTitle className="text-base">
|
|
{result.filename || `Document ${result.document_id.substring(0, 8)}...`}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
Chunk {result.chunk_number} • Score: {result.score.toFixed(2)}
|
|
</CardDescription>
|
|
</div>
|
|
<Badge variant="outline">
|
|
{result.content_type}
|
|
</Badge>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent>
|
|
{renderContent(result.content, result.content_type)}
|
|
|
|
<Accordion type="single" collapsible className="mt-4">
|
|
<AccordionItem value="metadata">
|
|
<AccordionTrigger className="text-sm">Metadata</AccordionTrigger>
|
|
<AccordionContent>
|
|
<pre className="bg-muted p-2 rounded text-xs overflow-x-auto">
|
|
{JSON.stringify(result.metadata, null, 2)}
|
|
</pre>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default SearchResultCard;
|