import { useState, useEffect, useCallback, useRef } from 'react' import { useTranslation } from 'react-i18next' import { useSettingsStore } from '@/stores/settings' import Button from '@/components/ui/Button' import { cn } from '@/lib/utils' import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/Table' import { Card, CardHeader, CardTitle, CardContent, CardDescription } from '@/components/ui/Card' import EmptyCard from '@/components/ui/EmptyCard' import UploadDocumentsDialog from '@/components/documents/UploadDocumentsDialog' import ClearDocumentsDialog from '@/components/documents/ClearDocumentsDialog' import { getDocuments, scanNewDocuments, DocsStatusesResponse } from '@/api/lightrag' import { errorMessage } from '@/lib/utils' import { toast } from 'sonner' import { useBackendState } from '@/stores/state' import { RefreshCwIcon, ActivityIcon, ArrowUpIcon, ArrowDownIcon } from 'lucide-react' import { DocStatusResponse } from '@/api/lightrag' import PipelineStatusDialog from '@/components/documents/PipelineStatusDialog' const getDisplayFileName = (doc: DocStatusResponse, maxLength: number = 20): string => { // Check if file_path exists and is a non-empty string if (!doc.file_path || typeof doc.file_path !== 'string' || doc.file_path.trim() === '') { return doc.id; } // Try to extract filename from path const parts = doc.file_path.split('/'); const fileName = parts[parts.length - 1]; // Ensure extracted filename is valid if (!fileName || fileName.trim() === '') { return doc.id; } // If filename is longer than maxLength, truncate it and add ellipsis return fileName.length > maxLength ? fileName.slice(0, maxLength) + '...' : fileName; }; const pulseStyle = ` /* Tooltip styles */ .tooltip-container { position: relative; overflow: visible !important; } .tooltip { position: fixed; /* Use fixed positioning to escape overflow constraints */ z-index: 9999; /* Ensure tooltip appears above all other elements */ max-width: 600px; white-space: normal; border-radius: 0.375rem; padding: 0.5rem 0.75rem; background-color: rgba(0, 0, 0, 0.95); color: white; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); pointer-events: none; /* Prevent tooltip from interfering with mouse events */ opacity: 0; visibility: hidden; transition: opacity 0.15s, visibility 0.15s; } .tooltip.visible { opacity: 1; visibility: visible; } .dark .tooltip { background-color: rgba(255, 255, 255, 0.95); color: black; } /* Position tooltip helper class */ .tooltip-helper { position: absolute; visibility: hidden; pointer-events: none; top: 0; left: 0; width: 100%; height: 0; } @keyframes pulse { 0% { background-color: rgb(255 0 0 / 0.1); border-color: rgb(255 0 0 / 0.2); } 50% { background-color: rgb(255 0 0 / 0.2); border-color: rgb(255 0 0 / 0.4); } 100% { background-color: rgb(255 0 0 / 0.1); border-color: rgb(255 0 0 / 0.2); } } .dark .pipeline-busy { animation: dark-pulse 2s infinite; } @keyframes dark-pulse { 0% { background-color: rgb(255 0 0 / 0.2); border-color: rgb(255 0 0 / 0.4); } 50% { background-color: rgb(255 0 0 / 0.3); border-color: rgb(255 0 0 / 0.6); } 100% { background-color: rgb(255 0 0 / 0.2); border-color: rgb(255 0 0 / 0.4); } } .pipeline-busy { animation: pulse 2s infinite; border: 1px solid; } `; // Type definitions for sort field and direction type SortField = 'created_at' | 'updated_at' | 'id'; type SortDirection = 'asc' | 'desc'; export default function DocumentManager() { const [showPipelineStatus, setShowPipelineStatus] = useState(false) const { t } = useTranslation() const health = useBackendState.use.health() const pipelineBusy = useBackendState.use.pipelineBusy() const [docs, setDocs] = useState(null) const currentTab = useSettingsStore.use.currentTab() const showFileName = useSettingsStore.use.showFileName() const setShowFileName = useSettingsStore.use.setShowFileName() // Sort state const [sortField, setSortField] = useState('updated_at') const [sortDirection, setSortDirection] = useState('desc') // Handle sort column click const handleSort = (field: SortField) => { if (sortField === field) { // Toggle sort direction if clicking the same field setSortDirection(prev => prev === 'asc' ? 'desc' : 'asc') } else { // Set new sort field with default desc direction setSortField(field) setSortDirection('desc') } } // Sort documents based on current sort field and direction const sortDocuments = (documents: DocStatusResponse[]) => { return [...documents].sort((a, b) => { let valueA, valueB; // Special handling for ID field based on showFileName setting if (sortField === 'id' && showFileName) { valueA = getDisplayFileName(a); valueB = getDisplayFileName(b); } else if (sortField === 'id') { valueA = a.id; valueB = b.id; } else { // Date fields valueA = new Date(a[sortField]).getTime(); valueB = new Date(b[sortField]).getTime(); } // Apply sort direction const sortMultiplier = sortDirection === 'asc' ? 1 : -1; // Compare values if (typeof valueA === 'string' && typeof valueB === 'string') { return sortMultiplier * valueA.localeCompare(valueB); } else { return sortMultiplier * (valueA > valueB ? 1 : valueA < valueB ? -1 : 0); } }); } // Store previous status counts const prevStatusCounts = useRef({ processed: 0, processing: 0, pending: 0, failed: 0 }) // Add pulse style to document useEffect(() => { const style = document.createElement('style') style.textContent = pulseStyle document.head.appendChild(style) return () => { document.head.removeChild(style) } }, []) // Reference to the card content element const cardContentRef = useRef(null); // Add tooltip position adjustment for fixed positioning useEffect(() => { if (!docs) return; // Function to position tooltips const positionTooltips = () => { // Get all tooltip containers const containers = document.querySelectorAll('.tooltip-container'); containers.forEach(container => { const tooltip = container.querySelector('.tooltip'); if (!tooltip) return; // Skip tooltips that aren't visible if (!tooltip.classList.contains('visible')) return; // Get container position const rect = container.getBoundingClientRect(); // Position tooltip above the container tooltip.style.left = `${rect.left}px`; tooltip.style.top = `${rect.top - 5}px`; tooltip.style.transform = 'translateY(-100%)'; }); }; // Set up event listeners const handleMouseOver = (e: MouseEvent) => { // Check if target or its parent is a tooltip container const target = e.target as HTMLElement; const container = target.closest('.tooltip-container'); if (!container) return; // Find tooltip and make it visible const tooltip = container.querySelector('.tooltip'); if (tooltip) { tooltip.classList.add('visible'); // Position immediately without delay positionTooltips(); } }; const handleMouseOut = (e: MouseEvent) => { const target = e.target as HTMLElement; const container = target.closest('.tooltip-container'); if (!container) return; const tooltip = container.querySelector('.tooltip'); if (tooltip) { tooltip.classList.remove('visible'); } }; document.addEventListener('mouseover', handleMouseOver); document.addEventListener('mouseout', handleMouseOut); return () => { document.removeEventListener('mouseover', handleMouseOver); document.removeEventListener('mouseout', handleMouseOut); }; }, [docs]); const fetchDocuments = useCallback(async () => { try { const docs = await getDocuments() // Get new status counts (treat null as all zeros) const newStatusCounts = { processed: docs?.statuses?.processed?.length || 0, processing: docs?.statuses?.processing?.length || 0, pending: docs?.statuses?.pending?.length || 0, failed: docs?.statuses?.failed?.length || 0 } // Check if any status count has changed const hasStatusCountChange = (Object.keys(newStatusCounts) as Array).some( status => newStatusCounts[status] !== prevStatusCounts.current[status] ) // Trigger health check if changes detected if (hasStatusCountChange) { useBackendState.getState().check() } // Update previous status counts prevStatusCounts.current = newStatusCounts // Update docs state if (docs && docs.statuses) { const numDocuments = Object.values(docs.statuses).reduce( (acc, status) => acc + status.length, 0 ) if (numDocuments > 0) { setDocs(docs) } else { setDocs(null) } } else { setDocs(null) } } catch (err) { toast.error(t('documentPanel.documentManager.errors.loadFailed', { error: errorMessage(err) })) } }, [setDocs, t]) // Fetch documents when the tab becomes visible useEffect(() => { if (currentTab === 'documents') { fetchDocuments() } }, [currentTab, fetchDocuments]) const scanDocuments = useCallback(async () => { try { const { status } = await scanNewDocuments() toast.message(status) } catch (err) { toast.error(t('documentPanel.documentManager.errors.scanFailed', { error: errorMessage(err) })) } }, [t]) // Set up polling when the documents tab is active and health is good useEffect(() => { if (currentTab !== 'documents' || !health) { return } const interval = setInterval(async () => { try { await fetchDocuments() } catch (err) { toast.error(t('documentPanel.documentManager.errors.scanProgressFailed', { error: errorMessage(err) })) } }, 5000) return () => clearInterval(interval) }, [health, fetchDocuments, t, currentTab]) // Add dependency on sort state to re-render when sort changes useEffect(() => { // This effect ensures the component re-renders when sort state changes }, [sortField, sortDirection]); return ( {t('documentPanel.documentManager.title')}
{t('documentPanel.documentManager.uploadedTitle')}
{t('documentPanel.documentManager.fileNameLabel')}
{!docs && (
)} {docs && (
handleSort('id')} className="cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800 select-none" >
{t('documentPanel.documentManager.columns.id')} {sortField === 'id' && ( {sortDirection === 'asc' ? : } )}
{t('documentPanel.documentManager.columns.summary')} {t('documentPanel.documentManager.columns.status')} {t('documentPanel.documentManager.columns.length')} {t('documentPanel.documentManager.columns.chunks')} handleSort('created_at')} className="cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800 select-none" >
{t('documentPanel.documentManager.columns.created')} {sortField === 'created_at' && ( {sortDirection === 'asc' ? : } )}
handleSort('updated_at')} className="cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-800 select-none" >
{t('documentPanel.documentManager.columns.updated')} {sortField === 'updated_at' && ( {sortDirection === 'asc' ? : } )}
{Object.entries(docs.statuses).flatMap(([status, documents]) => { // Apply sorting to documents const sortedDocuments = sortDocuments(documents); return sortedDocuments.map(doc => ( {showFileName ? ( <>
{getDisplayFileName(doc, 30)}
{doc.file_path}
{doc.id}
) : (
{doc.id}
{doc.file_path}
)}
{doc.content_summary}
{doc.content_summary}
{status === 'processed' && ( {t('documentPanel.documentManager.status.completed')} )} {status === 'processing' && ( {t('documentPanel.documentManager.status.processing')} )} {status === 'pending' && {t('documentPanel.documentManager.status.pending')}} {status === 'failed' && {t('documentPanel.documentManager.status.failed')}} {doc.error && ( ⚠️ )} {doc.content_length ?? '-'} {doc.chunks_count ?? '-'} {new Date(doc.created_at).toLocaleString()} {new Date(doc.updated_at).toLocaleString()}
)); })}
)}
) }