Optimize tooltips and layout
This commit is contained in:
@@ -47,14 +47,6 @@ const getDisplayFileName = (doc: DocStatusResponse, maxLength: number = 20): str
|
|||||||
};
|
};
|
||||||
|
|
||||||
const pulseStyle = `
|
const pulseStyle = `
|
||||||
/* Custom tooltip styles */
|
|
||||||
.tooltip-top {
|
|
||||||
bottom: 100% !important;
|
|
||||||
top: auto !important;
|
|
||||||
margin-bottom: 0.25rem !important;
|
|
||||||
margin-top: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Fixed tooltip styles for small tables */
|
/* Fixed tooltip styles for small tables */
|
||||||
.tooltip-fixed {
|
.tooltip-fixed {
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
@@ -142,13 +134,21 @@ export default function DocumentManager() {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!docs) return;
|
if (!docs) return;
|
||||||
|
|
||||||
// Function to handle mouse movement
|
// Function to handle mouse movement - throttled to reduce layout calculations
|
||||||
const handleMouseMove = (event: MouseEvent) => {
|
let lastExecution = 0;
|
||||||
|
const throttleInterval = 50; // ms
|
||||||
|
|
||||||
|
const handleMouseMove = () => {
|
||||||
|
const now = Date.now();
|
||||||
|
if (now - lastExecution < throttleInterval) return;
|
||||||
|
lastExecution = now;
|
||||||
|
|
||||||
const cardContent = cardContentRef.current;
|
const cardContent = cardContentRef.current;
|
||||||
if (!cardContent) return;
|
if (!cardContent) return;
|
||||||
|
|
||||||
// Get all visible tooltips
|
// Get all visible tooltips
|
||||||
const visibleTooltips = document.querySelectorAll<HTMLElement>('.group:hover > div[class*="invisible group-hover:visible absolute"]');
|
const visibleTooltips = document.querySelectorAll<HTMLElement>('.group:hover > div[class*="invisible group-hover:visible absolute"]');
|
||||||
|
if (visibleTooltips.length === 0) return;
|
||||||
|
|
||||||
visibleTooltips.forEach(tooltip => {
|
visibleTooltips.forEach(tooltip => {
|
||||||
// Get the parent element that triggered the tooltip
|
// Get the parent element that triggered the tooltip
|
||||||
@@ -160,12 +160,12 @@ export default function DocumentManager() {
|
|||||||
// Use fixed positioning for all tooltips
|
// Use fixed positioning for all tooltips
|
||||||
tooltip.classList.add('tooltip-fixed');
|
tooltip.classList.add('tooltip-fixed');
|
||||||
|
|
||||||
// Calculate position based on trigger element and mouse
|
// Calculate position based on trigger element
|
||||||
const tooltipHeight = tooltip.offsetHeight;
|
const tooltipHeight = tooltip.offsetHeight;
|
||||||
const viewportHeight = window.innerHeight;
|
const viewportHeight = window.innerHeight;
|
||||||
|
|
||||||
// Check if tooltip would go off the bottom of the viewport
|
// Check if tooltip would go off the bottom of the viewport
|
||||||
const wouldOverflowBottom = event.clientY + tooltipHeight > viewportHeight;
|
const wouldOverflowBottom = triggerRect.bottom + tooltipHeight + 5 > viewportHeight;
|
||||||
|
|
||||||
if (wouldOverflowBottom) {
|
if (wouldOverflowBottom) {
|
||||||
// Position above the trigger
|
// Position above the trigger
|
||||||
@@ -273,7 +273,7 @@ export default function DocumentManager() {
|
|||||||
<CardHeader className="py-2 px-6">
|
<CardHeader className="py-2 px-6">
|
||||||
<CardTitle className="text-lg">{t('documentPanel.documentManager.title')}</CardTitle>
|
<CardTitle className="text-lg">{t('documentPanel.documentManager.title')}</CardTitle>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="flex-1 flex flex-col min-h-0 overflow-hidden">
|
<CardContent className="flex-1 flex flex-col min-h-0 overflow-auto">
|
||||||
<div className="flex gap-2 mb-2">
|
<div className="flex gap-2 mb-2">
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Button
|
<Button
|
||||||
@@ -340,87 +340,85 @@ export default function DocumentManager() {
|
|||||||
)}
|
)}
|
||||||
{docs && (
|
{docs && (
|
||||||
<div className="absolute inset-0 flex flex-col p-0">
|
<div className="absolute inset-0 flex flex-col p-0">
|
||||||
<div className="w-full h-full flex flex-col rounded-lg border border-gray-200 dark:border-gray-700">
|
<div className="w-full h-full flex flex-col rounded-lg border border-gray-200 dark:border-gray-700 overflow-auto">
|
||||||
<div className="flex-1 overflow-hidden flex flex-col">
|
<Table className="w-full">
|
||||||
<Table className="w-full" style={{ minHeight: '100%', height: '100%'}}>
|
<TableHeader className="sticky top-0 bg-background z-10 shadow-sm">
|
||||||
<TableHeader className="sticky top-0 bg-background z-10 shadow-sm">
|
<TableRow className="border-b bg-card/95 backdrop-blur supports-[backdrop-filter]:bg-card/75 shadow-[inset_0_-1px_0_rgba(0,0,0,0.1)]">
|
||||||
<TableRow className="border-b bg-card/95 backdrop-blur supports-[backdrop-filter]:bg-card/75 shadow-[inset_0_-1px_0_rgba(0,0,0,0.1)]">
|
<TableHead>{t('documentPanel.documentManager.columns.id')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.id')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.summary')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.summary')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.status')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.status')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.length')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.length')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.chunks')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.chunks')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.created')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.created')}</TableHead>
|
<TableHead>{t('documentPanel.documentManager.columns.updated')}</TableHead>
|
||||||
<TableHead>{t('documentPanel.documentManager.columns.updated')}</TableHead>
|
</TableRow>
|
||||||
</TableRow>
|
</TableHeader>
|
||||||
</TableHeader>
|
<TableBody className="text-sm overflow-auto">
|
||||||
<TableBody className="text-sm overflow-auto">
|
{Object.entries(docs.statuses).map(([status, documents]) =>
|
||||||
{Object.entries(docs.statuses).map(([status, documents]) =>
|
documents.map((doc) => (
|
||||||
documents.map((doc) => (
|
<TableRow key={doc.id}>
|
||||||
<TableRow key={doc.id}>
|
<TableCell className="truncate font-mono overflow-visible max-w-[250px]">
|
||||||
<TableCell className="truncate font-mono overflow-visible max-w-[250px]">
|
{showFileName ? (
|
||||||
{showFileName ? (
|
<>
|
||||||
<>
|
|
||||||
<div className="group relative overflow-visible tooltip-container">
|
|
||||||
<div className="truncate">
|
|
||||||
{getDisplayFileName(doc, 30)}
|
|
||||||
</div>
|
|
||||||
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
|
||||||
{doc.file_path}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="text-xs text-gray-500">{doc.id}</div>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<div className="group relative overflow-visible tooltip-container">
|
<div className="group relative overflow-visible tooltip-container">
|
||||||
<div className="truncate">
|
<div className="truncate">
|
||||||
{doc.id}
|
{getDisplayFileName(doc, 30)}
|
||||||
</div>
|
</div>
|
||||||
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
||||||
{doc.file_path}
|
{doc.file_path}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
<div className="text-xs text-gray-500">{doc.id}</div>
|
||||||
</TableCell>
|
</>
|
||||||
<TableCell className="max-w-xs min-w-45 truncate overflow-visible">
|
) : (
|
||||||
<div className="group relative overflow-visible tooltip-container">
|
<div className="group relative overflow-visible tooltip-container">
|
||||||
<div className="truncate">
|
<div className="truncate">
|
||||||
{doc.content_summary}
|
{doc.id}
|
||||||
</div>
|
</div>
|
||||||
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
||||||
{doc.content_summary}
|
{doc.file_path}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</TableCell>
|
)}
|
||||||
<TableCell>
|
</TableCell>
|
||||||
{status === 'processed' && (
|
<TableCell className="max-w-xs min-w-45 truncate overflow-visible">
|
||||||
<span className="text-green-600">{t('documentPanel.documentManager.status.completed')}</span>
|
<div className="group relative overflow-visible tooltip-container">
|
||||||
)}
|
<div className="truncate">
|
||||||
{status === 'processing' && (
|
{doc.content_summary}
|
||||||
<span className="text-blue-600">{t('documentPanel.documentManager.status.processing')}</span>
|
</div>
|
||||||
)}
|
<div className="invisible group-hover:visible absolute z-[9999] mt-1 max-w-[600px] whitespace-normal break-all rounded-md bg-black/95 px-3 py-2 text-sm text-white shadow-lg dark:bg-white/95 dark:text-black">
|
||||||
{status === 'pending' && <span className="text-yellow-600">{t('documentPanel.documentManager.status.pending')}</span>}
|
{doc.content_summary}
|
||||||
{status === 'failed' && <span className="text-red-600">{t('documentPanel.documentManager.status.failed')}</span>}
|
</div>
|
||||||
{doc.error && (
|
</div>
|
||||||
<span className="ml-2 text-red-500" title={doc.error}>
|
</TableCell>
|
||||||
⚠️
|
<TableCell>
|
||||||
</span>
|
{status === 'processed' && (
|
||||||
)}
|
<span className="text-green-600">{t('documentPanel.documentManager.status.completed')}</span>
|
||||||
</TableCell>
|
)}
|
||||||
<TableCell>{doc.content_length ?? '-'}</TableCell>
|
{status === 'processing' && (
|
||||||
<TableCell>{doc.chunks_count ?? '-'}</TableCell>
|
<span className="text-blue-600">{t('documentPanel.documentManager.status.processing')}</span>
|
||||||
<TableCell className="truncate">
|
)}
|
||||||
{new Date(doc.created_at).toLocaleString()}
|
{status === 'pending' && <span className="text-yellow-600">{t('documentPanel.documentManager.status.pending')}</span>}
|
||||||
</TableCell>
|
{status === 'failed' && <span className="text-red-600">{t('documentPanel.documentManager.status.failed')}</span>}
|
||||||
<TableCell className="truncate">
|
{doc.error && (
|
||||||
{new Date(doc.updated_at).toLocaleString()}
|
<span className="ml-2 text-red-500" title={doc.error}>
|
||||||
</TableCell>
|
⚠️
|
||||||
</TableRow>
|
</span>
|
||||||
))
|
)}
|
||||||
)}
|
</TableCell>
|
||||||
</TableBody>
|
<TableCell>{doc.content_length ?? '-'}</TableCell>
|
||||||
</Table>
|
<TableCell>{doc.chunks_count ?? '-'}</TableCell>
|
||||||
</div>
|
<TableCell className="truncate">
|
||||||
|
{new Date(doc.created_at).toLocaleString()}
|
||||||
|
</TableCell>
|
||||||
|
<TableCell className="truncate">
|
||||||
|
{new Date(doc.updated_at).toLocaleString()}
|
||||||
|
</TableCell>
|
||||||
|
</TableRow>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</TableBody>
|
||||||
|
</Table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
Reference in New Issue
Block a user