mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-29 20:19:24 +08:00
### What problem does this PR solve? 1. Split dataset api to gateway and service, and modify web UI to use restful http api. 2. Old KB releated APIs are commented. ### Type of change - [x] Refactoring --------- Co-authored-by: Yingfeng <yingfeng.zhang@gmail.com>
65 lines
2.4 KiB
TypeScript
65 lines
2.4 KiB
TypeScript
import { useFormContext, useWatch } from 'react-hook-form';
|
|
|
|
import { DocumentParserType } from '@/constants/knowledge';
|
|
import { useMemo } from 'react';
|
|
import { AudioConfiguration } from './configuration/audio';
|
|
import { BookConfiguration } from './configuration/book';
|
|
import { EmailConfiguration } from './configuration/email';
|
|
import { KnowledgeGraphConfiguration } from './configuration/knowledge-graph';
|
|
import { LawsConfiguration } from './configuration/laws';
|
|
import { ManualConfiguration } from './configuration/manual';
|
|
import { NaiveConfiguration } from './configuration/naive';
|
|
import { OneConfiguration } from './configuration/one';
|
|
import { PaperConfiguration } from './configuration/paper';
|
|
import { PictureConfiguration } from './configuration/picture';
|
|
import { PresentationConfiguration } from './configuration/presentation';
|
|
import { QAConfiguration } from './configuration/qa';
|
|
import { ResumeConfiguration } from './configuration/resume';
|
|
import { TableConfiguration } from './configuration/table';
|
|
import { TagConfiguration } from './configuration/tag';
|
|
|
|
const ConfigurationComponentMap = {
|
|
[DocumentParserType.Naive]: NaiveConfiguration,
|
|
[DocumentParserType.Qa]: QAConfiguration,
|
|
[DocumentParserType.Resume]: ResumeConfiguration,
|
|
[DocumentParserType.Manual]: ManualConfiguration,
|
|
[DocumentParserType.Table]: TableConfiguration,
|
|
[DocumentParserType.Paper]: PaperConfiguration,
|
|
[DocumentParserType.Book]: BookConfiguration,
|
|
[DocumentParserType.Laws]: LawsConfiguration,
|
|
[DocumentParserType.Presentation]: PresentationConfiguration,
|
|
[DocumentParserType.Picture]: PictureConfiguration,
|
|
[DocumentParserType.One]: OneConfiguration,
|
|
[DocumentParserType.Audio]: AudioConfiguration,
|
|
[DocumentParserType.Email]: EmailConfiguration,
|
|
[DocumentParserType.Tag]: TagConfiguration,
|
|
[DocumentParserType.KnowledgeGraph]: KnowledgeGraphConfiguration,
|
|
};
|
|
|
|
function EmptyComponent() {
|
|
return <div></div>;
|
|
}
|
|
|
|
export function ChunkMethodForm() {
|
|
const form = useFormContext();
|
|
|
|
const finalParserId: DocumentParserType = useWatch({
|
|
control: form.control,
|
|
name: 'chunk_method',
|
|
});
|
|
|
|
const ConfigurationComponent = useMemo(() => {
|
|
return finalParserId
|
|
? ConfigurationComponentMap[finalParserId]
|
|
: EmptyComponent;
|
|
}, [finalParserId]);
|
|
|
|
return (
|
|
<section className="h-full flex flex-col">
|
|
<div className="overflow-auto flex-1 min-h-0">
|
|
<ConfigurationComponent></ConfigurationComponent>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|