mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 23:16:58 +08:00
### What problem does this PR solve? Fix: Interoperate with the pipeline rerun and unbindTask interfaces. #9869 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
222 lines
7.0 KiB
TypeScript
222 lines
7.0 KiB
TypeScript
import { useFetchNextChunkList } from '@/hooks/use-chunk-request';
|
|
import { useMemo, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import DocumentPreview from './components/document-preview';
|
|
import {
|
|
useFetchPipelineFileLogDetail,
|
|
useGetChunkHighlights,
|
|
useHandleChunkCardClick,
|
|
useRerunDataflow,
|
|
useTimelineDataFlow,
|
|
} from './hooks';
|
|
|
|
import DocumentHeader from './components/document-preview/document-header';
|
|
|
|
import { TimelineNode } from '@/components/originui/timeline';
|
|
import { PageHeader } from '@/components/page-header';
|
|
import Spotlight from '@/components/spotlight';
|
|
import {
|
|
Breadcrumb,
|
|
BreadcrumbItem,
|
|
BreadcrumbLink,
|
|
BreadcrumbList,
|
|
BreadcrumbPage,
|
|
BreadcrumbSeparator,
|
|
} from '@/components/ui/breadcrumb';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Modal } from '@/components/ui/modal/modal';
|
|
import {
|
|
QueryStringMap,
|
|
useNavigatePage,
|
|
} from '@/hooks/logic-hooks/navigate-hooks';
|
|
import { useGetKnowledgeSearchParams } from '@/hooks/route-hook';
|
|
import { useGetDocumentUrl } from './components/document-preview/hooks';
|
|
import TimelineDataFlow from './components/time-line';
|
|
import { TimelineNodeType } from './constant';
|
|
import styles from './index.less';
|
|
import { IDslComponent } from './interface';
|
|
import ParserContainer from './parser';
|
|
|
|
const Chunk = () => {
|
|
const {
|
|
data: { documentInfo },
|
|
} = useFetchNextChunkList();
|
|
const { selectedChunkId } = useHandleChunkCardClick();
|
|
const [activeStepId, setActiveStepId] = useState<number | string>(2);
|
|
const { data: dataset } = useFetchPipelineFileLogDetail();
|
|
const { t } = useTranslation();
|
|
|
|
const { timelineNodes } = useTimelineDataFlow(dataset);
|
|
|
|
const { navigateToDataset, getQueryString, navigateToDatasetList } =
|
|
useNavigatePage();
|
|
const fileUrl = useGetDocumentUrl();
|
|
|
|
const { highlights, setWidthAndHeight } =
|
|
useGetChunkHighlights(selectedChunkId);
|
|
|
|
const fileType = useMemo(() => {
|
|
switch (documentInfo?.type) {
|
|
case 'doc':
|
|
return documentInfo?.name.split('.').pop() || 'doc';
|
|
case 'visual':
|
|
case 'docx':
|
|
case 'txt':
|
|
case 'md':
|
|
case 'pdf':
|
|
return documentInfo?.type;
|
|
}
|
|
return 'unknown';
|
|
}, [documentInfo]);
|
|
|
|
const {
|
|
handleReRunFunc,
|
|
isChange,
|
|
setIsChange,
|
|
loading: reRunLoading,
|
|
} = useRerunDataflow({
|
|
data: dataset,
|
|
});
|
|
const handleStepChange = (id: number | string, step: TimelineNode) => {
|
|
if (isChange) {
|
|
Modal.show({
|
|
visible: true,
|
|
className: '!w-[560px]',
|
|
title: t('dataflowParser.changeStepModalTitle'),
|
|
children: (
|
|
<div
|
|
className="text-sm text-text-secondary"
|
|
dangerouslySetInnerHTML={{
|
|
__html: t('dataflowParser.changeStepModalContent', {
|
|
step: step?.title,
|
|
}),
|
|
}}
|
|
></div>
|
|
),
|
|
onVisibleChange: () => {
|
|
Modal.destroy();
|
|
},
|
|
footer: (
|
|
<div className="flex justify-end gap-2">
|
|
<Button variant={'outline'} onClick={() => Modal.destroy()}>
|
|
{t('dataflowParser.changeStepModalCancelText')}
|
|
</Button>
|
|
<Button
|
|
variant={'secondary'}
|
|
className="!bg-state-error text-text-primary"
|
|
onClick={() => {
|
|
Modal.destroy();
|
|
setActiveStepId(id);
|
|
setIsChange(false);
|
|
}}
|
|
>
|
|
{t('dataflowParser.changeStepModalConfirmText')}
|
|
</Button>
|
|
</div>
|
|
),
|
|
});
|
|
} else {
|
|
setActiveStepId(id);
|
|
}
|
|
};
|
|
|
|
const { type } = useGetKnowledgeSearchParams();
|
|
|
|
const currentTimeNode: TimelineNode = useMemo(() => {
|
|
return (
|
|
timelineNodes.find((node) => node.id === activeStepId) ||
|
|
({} as TimelineNode)
|
|
);
|
|
}, [activeStepId, timelineNodes]);
|
|
|
|
return (
|
|
<>
|
|
<PageHeader>
|
|
<Breadcrumb>
|
|
<BreadcrumbList>
|
|
<BreadcrumbItem>
|
|
<BreadcrumbLink onClick={navigateToDatasetList}>
|
|
{t('knowledgeDetails.dataset')}
|
|
</BreadcrumbLink>
|
|
</BreadcrumbItem>
|
|
<BreadcrumbSeparator />
|
|
<BreadcrumbItem>
|
|
<BreadcrumbLink
|
|
onClick={navigateToDataset(
|
|
getQueryString(QueryStringMap.KnowledgeId) as string,
|
|
)}
|
|
>
|
|
{t('knowledgeDetails.overview')}
|
|
</BreadcrumbLink>
|
|
</BreadcrumbItem>
|
|
<BreadcrumbSeparator />
|
|
<BreadcrumbItem>
|
|
<BreadcrumbPage>{documentInfo?.name}</BreadcrumbPage>
|
|
</BreadcrumbItem>
|
|
</BreadcrumbList>
|
|
</Breadcrumb>
|
|
</PageHeader>
|
|
{type === 'dataflow' && (
|
|
<div className=" absolute ml-[50%] translate-x-[-50%] top-4 flex justify-center">
|
|
<TimelineDataFlow
|
|
activeFunc={handleStepChange}
|
|
activeId={activeStepId}
|
|
data={dataset}
|
|
timelineNodes={timelineNodes}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className={styles.chunkPage}>
|
|
<div className="flex flex-none gap-8 border border-border mt-[26px] p-3 rounded-lg h-[calc(100vh-100px)]">
|
|
<div className="w-2/5">
|
|
<div className="h-[50px] flex flex-col justify-end pb-[5px]">
|
|
<DocumentHeader {...documentInfo} />
|
|
</div>
|
|
<section className={styles.documentPreview}>
|
|
<DocumentPreview
|
|
className={styles.documentPreview}
|
|
fileType={fileType}
|
|
highlights={highlights}
|
|
setWidthAndHeight={setWidthAndHeight}
|
|
url={fileUrl}
|
|
></DocumentPreview>
|
|
</section>
|
|
</div>
|
|
<div className="h-dvh border-r -mt-3"></div>
|
|
<div className="w-3/5 h-full">
|
|
{/* {currentTimeNode?.type === TimelineNodeType.splitter && (
|
|
<ChunkerContainer
|
|
isChange={isChange}
|
|
setIsChange={setIsChange}
|
|
step={currentTimeNode as TimelineNode}
|
|
/>
|
|
)} */}
|
|
{/* {currentTimeNode?.type === TimelineNodeType.parser && ( */}
|
|
{(currentTimeNode?.type === TimelineNodeType.parser ||
|
|
currentTimeNode?.type === TimelineNodeType.characterSplitter ||
|
|
currentTimeNode?.type === TimelineNodeType.titleSplitter) && (
|
|
<ParserContainer
|
|
isChange={isChange}
|
|
reRunLoading={reRunLoading}
|
|
setIsChange={setIsChange}
|
|
step={currentTimeNode as TimelineNode}
|
|
data={
|
|
currentTimeNode.detail as {
|
|
value: IDslComponent;
|
|
key: string;
|
|
}
|
|
}
|
|
reRunFunc={handleReRunFunc}
|
|
/>
|
|
)}
|
|
{/* )} */}
|
|
<Spotlight opcity={0.6} coverage={60} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Chunk;
|