mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-20 04:39:00 +08:00
### What problem does this PR solve? Feat: Initialize the data pipeline canvas. #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
129 lines
3.8 KiB
TypeScript
129 lines
3.8 KiB
TypeScript
'use client';
|
|
|
|
import { FormContainer } from '@/components/form-container';
|
|
import { SelectWithSearch } from '@/components/originui/select-with-search';
|
|
import { BlockButton, Button } from '@/components/ui/button';
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Separator } from '@/components/ui/separator';
|
|
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { t } from 'i18next';
|
|
import { X } from 'lucide-react';
|
|
import { ReactNode, useCallback, useMemo } from 'react';
|
|
import { useFieldArray, useFormContext } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useBuildSubNodeOutputOptions } from './use-build-options';
|
|
|
|
interface IProps {
|
|
node?: RAGFlowNodeType;
|
|
}
|
|
|
|
export function DynamicOutputForm({ node }: IProps) {
|
|
const { t } = useTranslation();
|
|
const form = useFormContext();
|
|
const options = useBuildSubNodeOutputOptions(node?.id);
|
|
const name = 'outputs';
|
|
|
|
const flatOptions = useMemo(() => {
|
|
return options.reduce<{ label: string; value: string; type: string }[]>(
|
|
(pre, cur) => {
|
|
pre.push(...cur.options);
|
|
return pre;
|
|
},
|
|
[],
|
|
);
|
|
}, [options]);
|
|
|
|
const findType = useCallback(
|
|
(val: string) => {
|
|
const type = flatOptions.find((x) => x.value === val)?.type;
|
|
if (type) {
|
|
return `Array<${type}>`;
|
|
}
|
|
},
|
|
[flatOptions],
|
|
);
|
|
|
|
const { fields, remove, append } = useFieldArray({
|
|
name: name,
|
|
control: form.control,
|
|
});
|
|
|
|
return (
|
|
<div className="space-y-5">
|
|
{fields.map((field, index) => {
|
|
const nameField = `${name}.${index}.name`;
|
|
const typeField = `${name}.${index}.type`;
|
|
return (
|
|
<div key={field.id} className="flex items-center gap-2">
|
|
<FormField
|
|
control={form.control}
|
|
name={nameField}
|
|
render={({ field }) => (
|
|
<FormItem className="flex-1">
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
placeholder={t('common.pleaseInput')}
|
|
></Input>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Separator className="w-3 text-text-secondary" />
|
|
<FormField
|
|
control={form.control}
|
|
name={`${name}.${index}.ref`}
|
|
render={({ field }) => (
|
|
<FormItem className="w-2/5">
|
|
<FormControl>
|
|
<SelectWithSearch
|
|
options={options}
|
|
{...field}
|
|
onChange={(val) => {
|
|
form.setValue(typeField, findType(val));
|
|
field.onChange(val);
|
|
}}
|
|
></SelectWithSearch>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name={typeField}
|
|
render={() => <div></div>}
|
|
/>
|
|
<Button variant={'ghost'} onClick={() => remove(index)}>
|
|
<X className="text-text-sub-title-invert " />
|
|
</Button>
|
|
</div>
|
|
);
|
|
})}
|
|
<BlockButton onClick={() => append({ name: '', ref: undefined })}>
|
|
{t('common.add')}
|
|
</BlockButton>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function VariableTitle({ title }: { title: ReactNode }) {
|
|
return <div className="font-medium text-text-primary pb-2">{title}</div>;
|
|
}
|
|
|
|
export function DynamicOutput({ node }: IProps) {
|
|
return (
|
|
<FormContainer>
|
|
<VariableTitle title={t('flow.output')}></VariableTitle>
|
|
<DynamicOutputForm node={node}></DynamicOutputForm>
|
|
</FormContainer>
|
|
);
|
|
}
|