Files
wehub-resource-sync e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:00:43 +08:00

79 lines
2.6 KiB
TypeScript

"use client";
import { useEffect, useMemo, useState } from "react";
import {
knowledgeBaseFilePath,
knowledgeBaseFilePreviewTextPath,
type KnowledgeBaseFile,
} from "@/lib/knowledge-api";
import type { KnowledgeBase } from "@/lib/knowledge-helpers";
import type { TaskState } from "@/hooks/useKnowledgeProgress";
import type { FilePreviewSource } from "@/components/chat/preview/previewerFor";
import { useCollapsiblePanel } from "@/hooks/useCollapsiblePanel";
import KbDocumentList from "./KbDocumentList";
import KbFilePreview from "./KbFilePreview";
interface KbFilesTabProps {
kb: KnowledgeBase;
task?: TaskState;
}
/**
* Master-detail view for the "Files" tab: list of raw documents on the
* left, inline preview pane on the right. Both the parent KB list (in
* `/knowledge`) and this file list can be collapsed to icon-only strips
* to reclaim horizontal space for the actual preview content.
*/
export default function KbFilesTab({ kb, task }: KbFilesTabProps) {
const [selectedFile, setSelectedFile] = useState<KnowledgeBaseFile | null>(
null,
);
const fileListPanel = useCollapsiblePanel("knowledge-file-list");
// Bump refreshKey when the active create/upload task settles so newly
// indexed files appear automatically.
const taskExecuting = task?.executing === true;
const [refreshKey, setRefreshKey] = useState(0);
useEffect(() => {
if (!taskExecuting) {
// eslint-disable-next-line react-hooks/set-state-in-effect
setRefreshKey((n) => n + 1);
}
}, [taskExecuting]);
const previewSource = useMemo<FilePreviewSource | null>(() => {
if (!selectedFile) return null;
return {
filename: selectedFile.name,
mimeType: selectedFile.mime_type ?? undefined,
url: knowledgeBaseFilePath(kb.name, selectedFile.name),
extractedTextUrl: knowledgeBaseFilePreviewTextPath(
kb.name,
selectedFile.name,
),
size: selectedFile.size,
id: `${kb.name}/${selectedFile.name}`,
};
}, [kb.name, selectedFile]);
return (
<div className="flex h-full min-h-0">
<KbDocumentList
kbName={kb.name}
refreshKey={refreshKey}
selectedFile={selectedFile?.name ?? null}
onSelect={setSelectedFile}
collapsed={fileListPanel.collapsed}
onToggleCollapsed={fileListPanel.toggle}
/>
<div className="flex min-h-0 min-w-0 flex-1 flex-col">
<KbFilePreview
source={previewSource}
fileListCollapsed={fileListPanel.collapsed}
onToggleFileList={fileListPanel.toggle}
/>
</div>
</div>
);
}