mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-05-31 10:35:24 +08:00

### What problem does this PR solve? feat: Delete the files uploaded in the external dialog box #1880 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
336 lines
8.3 KiB
TypeScript
336 lines
8.3 KiB
TypeScript
import { IDocumentInfo } from '@/interfaces/database/document';
|
|
import { IChunk, IKnowledgeFile } from '@/interfaces/database/knowledge';
|
|
import { IChangeParserConfigRequestBody } from '@/interfaces/request/document';
|
|
import kbService from '@/services/knowledge-service';
|
|
import { api_host } from '@/utils/api';
|
|
import { buildChunkHighlights } from '@/utils/document-util';
|
|
import { useMutation, useQuery } from '@tanstack/react-query';
|
|
import { UploadFile } from 'antd';
|
|
import { useCallback, useMemo, useState } from 'react';
|
|
import { IHighlight } from 'react-pdf-highlighter';
|
|
import { useDispatch, useSelector } from 'umi';
|
|
import { useGetKnowledgeSearchParams } from './route-hook';
|
|
import { useOneNamespaceEffectsLoading } from './store-hooks';
|
|
|
|
export const useGetDocumentUrl = (documentId?: string) => {
|
|
const getDocumentUrl = useCallback(
|
|
(id?: string) => {
|
|
return `${api_host}/document/get/${documentId || id}`;
|
|
},
|
|
[documentId],
|
|
);
|
|
|
|
return getDocumentUrl;
|
|
};
|
|
|
|
export const useGetChunkHighlights = (selectedChunk: IChunk) => {
|
|
const [size, setSize] = useState({ width: 849, height: 1200 });
|
|
|
|
const highlights: IHighlight[] = useMemo(() => {
|
|
return buildChunkHighlights(selectedChunk, size);
|
|
}, [selectedChunk, size]);
|
|
|
|
const setWidthAndHeight = (width: number, height: number) => {
|
|
setSize((pre) => {
|
|
if (pre.height !== height || pre.width !== width) {
|
|
return { height, width };
|
|
}
|
|
return pre;
|
|
});
|
|
};
|
|
|
|
return { highlights, setWidthAndHeight };
|
|
};
|
|
|
|
export const useFetchDocumentList = () => {
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const fetchKfList = useCallback(() => {
|
|
return dispatch<any>({
|
|
type: 'kFModel/getKfList',
|
|
payload: {
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
}, [dispatch, knowledgeId]);
|
|
|
|
return fetchKfList;
|
|
};
|
|
|
|
export const useSetDocumentStatus = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const setDocumentStatus = useCallback(
|
|
(status: boolean, documentId: string) => {
|
|
dispatch({
|
|
type: 'kFModel/updateDocumentStatus',
|
|
payload: {
|
|
doc_id: documentId,
|
|
status: Number(status),
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return setDocumentStatus;
|
|
};
|
|
|
|
export const useSelectDocumentList = () => {
|
|
const list: IKnowledgeFile[] = useSelector(
|
|
(state: any) => state.kFModel.data,
|
|
);
|
|
return list;
|
|
};
|
|
|
|
export const useSaveDocumentName = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const saveName = useCallback(
|
|
(documentId: string, name: string) => {
|
|
return dispatch<any>({
|
|
type: 'kFModel/document_rename',
|
|
payload: {
|
|
doc_id: documentId,
|
|
name: name,
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return saveName;
|
|
};
|
|
|
|
export const useCreateDocument = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const createDocument = useCallback(
|
|
(name: string) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/document_create',
|
|
payload: {
|
|
name,
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return createDocument;
|
|
};
|
|
|
|
export const useSetDocumentParser = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const setDocumentParser = useCallback(
|
|
(
|
|
parserId: string,
|
|
documentId: string,
|
|
parserConfig: IChangeParserConfigRequestBody,
|
|
) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/document_change_parser',
|
|
payload: {
|
|
parser_id: parserId,
|
|
doc_id: documentId,
|
|
kb_id: knowledgeId,
|
|
parser_config: parserConfig,
|
|
},
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return setDocumentParser;
|
|
};
|
|
|
|
export const useRemoveDocument = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const removeDocument = useCallback(
|
|
(documentIds: string[]) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/document_rm',
|
|
payload: {
|
|
doc_id: documentIds,
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return removeDocument;
|
|
};
|
|
|
|
export const useUploadDocument = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
|
|
const uploadDocument = useCallback(
|
|
(fileList: UploadFile[]) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/upload_document',
|
|
payload: {
|
|
fileList,
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch, knowledgeId],
|
|
);
|
|
|
|
return uploadDocument;
|
|
};
|
|
|
|
export const useWebCrawl = () => {
|
|
const dispatch = useDispatch();
|
|
const { knowledgeId } = useGetKnowledgeSearchParams();
|
|
return useCallback(
|
|
(name: string, url: string) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/web_crawl',
|
|
payload: {
|
|
name,
|
|
url,
|
|
kb_id: knowledgeId,
|
|
},
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch],
|
|
);
|
|
};
|
|
|
|
export const useRunDocument = () => {
|
|
const dispatch = useDispatch();
|
|
|
|
const runDocumentByIds = useCallback(
|
|
(payload: any) => {
|
|
try {
|
|
return dispatch<any>({
|
|
type: 'kFModel/document_run',
|
|
payload,
|
|
});
|
|
} catch (errorInfo) {
|
|
console.log('Failed:', errorInfo);
|
|
}
|
|
},
|
|
[dispatch],
|
|
);
|
|
|
|
return runDocumentByIds;
|
|
};
|
|
|
|
export const useSelectRunDocumentLoading = () => {
|
|
const loading = useOneNamespaceEffectsLoading('kFModel', ['document_run']);
|
|
return loading;
|
|
};
|
|
|
|
export const useFetchDocumentInfosByIds = () => {
|
|
const [ids, setDocumentIds] = useState<string[]>([]);
|
|
const { data } = useQuery<IDocumentInfo[]>({
|
|
queryKey: ['fetchDocumentInfos', ids],
|
|
enabled: ids.length > 0,
|
|
initialData: [],
|
|
queryFn: async () => {
|
|
const { data } = await kbService.document_infos({ doc_ids: ids });
|
|
if (data.retcode === 0) {
|
|
return data.data;
|
|
}
|
|
|
|
return [];
|
|
},
|
|
});
|
|
|
|
return { data, setDocumentIds };
|
|
};
|
|
|
|
export const useFetchDocumentThumbnailsByIds = () => {
|
|
const [ids, setDocumentIds] = useState<string[]>([]);
|
|
const { data } = useQuery<Record<string, string>>({
|
|
queryKey: ['fetchDocumentThumbnails', ids],
|
|
enabled: ids.length > 0,
|
|
initialData: {},
|
|
queryFn: async () => {
|
|
const { data } = await kbService.document_thumbnails({ doc_ids: ids });
|
|
if (data.retcode === 0) {
|
|
return data.data;
|
|
}
|
|
return {};
|
|
},
|
|
});
|
|
|
|
return { data, setDocumentIds };
|
|
};
|
|
|
|
export const useRemoveNextDocument = () => {
|
|
// const queryClient = useQueryClient();
|
|
const {
|
|
data,
|
|
isPending: loading,
|
|
mutateAsync,
|
|
} = useMutation({
|
|
mutationKey: ['removeDocument'],
|
|
mutationFn: async (documentId: string) => {
|
|
const data = await kbService.document_rm({ doc_id: documentId });
|
|
// if (data.retcode === 0) {
|
|
// queryClient.invalidateQueries({ queryKey: ['fetchFlowList'] });
|
|
// }
|
|
return data;
|
|
},
|
|
});
|
|
|
|
return { data, loading, removeDocument: mutateAsync };
|
|
};
|
|
|
|
export const useDeleteDocument = () => {
|
|
// const queryClient = useQueryClient();
|
|
const {
|
|
data,
|
|
isPending: loading,
|
|
mutateAsync,
|
|
} = useMutation({
|
|
mutationKey: ['deleteDocument'],
|
|
mutationFn: async (documentIds: string[]) => {
|
|
const data = await kbService.document_delete({ doc_ids: documentIds });
|
|
// if (data.retcode === 0) {
|
|
// queryClient.invalidateQueries({ queryKey: ['fetchFlowList'] });
|
|
// }
|
|
return data;
|
|
},
|
|
});
|
|
|
|
return { data, loading, deleteDocument: mutateAsync };
|
|
};
|