mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Fix: Fixed the issue where the initial value of the slice method was not displayed in the dialog box #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
113 lines
2.2 KiB
TypeScript
113 lines
2.2 KiB
TypeScript
import { useSelectParserList } from '@/hooks/user-setting-hooks';
|
|
import { useCallback, useMemo } from 'react';
|
|
|
|
const ParserListMap = new Map([
|
|
[
|
|
['pdf'],
|
|
[
|
|
'naive',
|
|
'resume',
|
|
'manual',
|
|
'paper',
|
|
'book',
|
|
'laws',
|
|
'presentation',
|
|
'one',
|
|
'qa',
|
|
'knowledge_graph',
|
|
],
|
|
],
|
|
[
|
|
['doc', 'docx'],
|
|
[
|
|
'naive',
|
|
'resume',
|
|
'book',
|
|
'laws',
|
|
'one',
|
|
'qa',
|
|
'manual',
|
|
'knowledge_graph',
|
|
],
|
|
],
|
|
[
|
|
['xlsx', 'xls'],
|
|
['naive', 'qa', 'table', 'one', 'knowledge_graph'],
|
|
],
|
|
[['ppt', 'pptx'], ['presentation']],
|
|
[
|
|
['jpg', 'jpeg', 'png', 'gif', 'bmp', 'tif', 'tiff', 'webp', 'svg', 'ico'],
|
|
['picture'],
|
|
],
|
|
[
|
|
['txt'],
|
|
[
|
|
'naive',
|
|
'resume',
|
|
'book',
|
|
'laws',
|
|
'one',
|
|
'qa',
|
|
'table',
|
|
'knowledge_graph',
|
|
],
|
|
],
|
|
[
|
|
['csv'],
|
|
[
|
|
'naive',
|
|
'resume',
|
|
'book',
|
|
'laws',
|
|
'one',
|
|
'qa',
|
|
'table',
|
|
'knowledge_graph',
|
|
],
|
|
],
|
|
[['md'], ['naive', 'qa', 'knowledge_graph']],
|
|
[['json'], ['naive', 'knowledge_graph']],
|
|
[['eml'], ['email']],
|
|
]);
|
|
|
|
const getParserList = (
|
|
values: string[],
|
|
parserList: Array<{
|
|
value: string;
|
|
label: string;
|
|
}>,
|
|
) => {
|
|
return parserList.filter((x) => values?.some((y) => y === x.value));
|
|
};
|
|
|
|
export const useFetchParserListOnMount = (documentExtension: string) => {
|
|
const parserList = useSelectParserList();
|
|
|
|
const nextParserList = useMemo(() => {
|
|
const key = [...ParserListMap.keys()].find((x) =>
|
|
x.some((y) => y === documentExtension),
|
|
);
|
|
if (key) {
|
|
const values = ParserListMap.get(key);
|
|
return getParserList(values ?? [], parserList);
|
|
}
|
|
|
|
return getParserList(
|
|
['naive', 'resume', 'book', 'laws', 'one', 'qa', 'table'],
|
|
parserList,
|
|
);
|
|
}, [parserList, documentExtension]);
|
|
|
|
return { parserList: nextParserList };
|
|
};
|
|
|
|
const hideAutoKeywords = ['qa', 'table', 'resume', 'knowledge_graph', 'tag'];
|
|
|
|
export const useShowAutoKeywords = () => {
|
|
const showAutoKeywords = useCallback((selectedTag: string) => {
|
|
return hideAutoKeywords.every((x) => selectedTag !== x);
|
|
}, []);
|
|
|
|
return showAutoKeywords;
|
|
};
|