mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 17:16:52 +08:00
### What problem does this PR solve? Feat: View data flow test results #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import { useGetKnowledgeSearchParams } from '@/hooks/route-hook';
|
|
import api, { api_host } from '@/utils/api';
|
|
import { useSize } from 'ahooks';
|
|
import { CustomTextRenderer } from 'node_modules/react-pdf/dist/esm/shared/types';
|
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
import { useGetPipelineResultSearchParams } from '../../hooks';
|
|
|
|
export const useDocumentResizeObserver = () => {
|
|
const [containerWidth, setContainerWidth] = useState<number>();
|
|
const [containerRef, setContainerRef] = useState<HTMLElement | null>(null);
|
|
const size = useSize(containerRef);
|
|
|
|
const onResize = useCallback((width?: number) => {
|
|
if (width) {
|
|
setContainerWidth(width);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
onResize(size?.width);
|
|
}, [size?.width, onResize]);
|
|
|
|
return { containerWidth, setContainerRef };
|
|
};
|
|
|
|
function highlightPattern(text: string, pattern: string, pageNumber: number) {
|
|
if (pageNumber === 2) {
|
|
return `<mark>${text}</mark>`;
|
|
}
|
|
if (text.trim() !== '' && pattern.match(text)) {
|
|
// return pattern.replace(text, (value) => `<mark>${value}</mark>`);
|
|
return `<mark>${text}</mark>`;
|
|
}
|
|
return text.replace(pattern, (value) => `<mark>${value}</mark>`);
|
|
}
|
|
|
|
export const useHighlightText = (searchText: string = '') => {
|
|
const textRenderer: CustomTextRenderer = useCallback(
|
|
(textItem) => {
|
|
return highlightPattern(textItem.str, searchText, textItem.pageNumber);
|
|
},
|
|
[searchText],
|
|
);
|
|
|
|
return textRenderer;
|
|
};
|
|
|
|
export const useGetDocumentUrl = (isAgent: boolean) => {
|
|
const { documentId } = useGetKnowledgeSearchParams();
|
|
const { createdBy, documentId: id } = useGetPipelineResultSearchParams();
|
|
|
|
const url = useMemo(() => {
|
|
if (isAgent) {
|
|
return api.downloadFile + `?id=${id}&created_by=${createdBy}`;
|
|
}
|
|
return `${api_host}/document/get/${documentId}`;
|
|
}, [createdBy, documentId, id, isAgent]);
|
|
|
|
return url;
|
|
};
|