mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Add the iteration Node #4242 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Form, Input, Select } from 'antd';
|
|
import { useMemo } from 'react';
|
|
import { CrawlerResultOptions } from '../../constant';
|
|
import { IOperatorForm } from '../../interface';
|
|
import DynamicInputVariable from '../components/dynamic-input-variable';
|
|
const CrawlerForm = ({ onValuesChange, form, node }: IOperatorForm) => {
|
|
const { t } = useTranslate('flow');
|
|
const crawlerResultOptions = useMemo(() => {
|
|
return CrawlerResultOptions.map((x) => ({
|
|
value: x,
|
|
label: t(`crawlerResultOptions.${x}`),
|
|
}));
|
|
}, [t]);
|
|
return (
|
|
<Form
|
|
name="basic"
|
|
autoComplete="off"
|
|
form={form}
|
|
onValuesChange={onValuesChange}
|
|
layout={'vertical'}
|
|
>
|
|
<DynamicInputVariable node={node}></DynamicInputVariable>
|
|
<Form.Item label={t('proxy')} name={'proxy'}>
|
|
<Input placeholder="like: http://127.0.0.1:8888"></Input>
|
|
</Form.Item>
|
|
<Form.Item
|
|
label={t('extractType')}
|
|
name={'extract_type'}
|
|
initialValue="markdown"
|
|
>
|
|
<Select options={crawlerResultOptions}></Select>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default CrawlerForm;
|