mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Refactor the MessageForm with shadcn #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
122 lines
3.4 KiB
TypeScript
122 lines
3.4 KiB
TypeScript
'use client';
|
|
|
|
import { FormContainer } from '@/components/form-container';
|
|
import { BlockButton, Button } from '@/components/ui/button';
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { Input } from '@/components/ui/input';
|
|
import { RAGFlowSelect } from '@/components/ui/select';
|
|
import { Separator } from '@/components/ui/separator';
|
|
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { X } from 'lucide-react';
|
|
import { ReactNode } from 'react';
|
|
import { useFieldArray, useFormContext } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useBuildComponentIdSelectOptions } from '../../hooks/use-get-begin-query';
|
|
|
|
interface IProps {
|
|
node?: RAGFlowNodeType;
|
|
name?: string;
|
|
}
|
|
|
|
export const TypeOptions = [
|
|
'String',
|
|
'Number',
|
|
'Boolean',
|
|
'Array[String]',
|
|
'Array[Number]',
|
|
'Object',
|
|
].map((x) => ({ label: x, value: x }));
|
|
|
|
export function DynamicVariableForm({ node, name = 'arguments' }: IProps) {
|
|
const { t } = useTranslation();
|
|
const form = useFormContext();
|
|
|
|
const { fields, remove, append } = useFieldArray({
|
|
name: name,
|
|
control: form.control,
|
|
});
|
|
|
|
const valueOptions = useBuildComponentIdSelectOptions(
|
|
node?.id,
|
|
node?.parentId,
|
|
);
|
|
|
|
return (
|
|
<div className="space-y-5">
|
|
{fields.map((field, index) => {
|
|
const typeField = `${name}.${index}.name`;
|
|
return (
|
|
<div key={field.id} className="flex items-center gap-2">
|
|
<FormField
|
|
control={form.control}
|
|
name={typeField}
|
|
render={({ field }) => (
|
|
<FormItem className="w-2/5">
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
placeholder={t('common.pleaseInput')}
|
|
></Input>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Separator className="w-3 text-text-sub-title" />
|
|
<FormField
|
|
control={form.control}
|
|
name={`${name}.${index}.component_id`}
|
|
render={({ field }) => (
|
|
<FormItem className="flex-1">
|
|
<FormControl>
|
|
<RAGFlowSelect
|
|
placeholder={t('common.pleaseSelect')}
|
|
options={
|
|
name === 'arguments' ? valueOptions : TypeOptions
|
|
}
|
|
{...field}
|
|
></RAGFlowSelect>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Button variant={'ghost'} onClick={() => remove(index)}>
|
|
<X className="text-text-sub-title-invert " />
|
|
</Button>
|
|
</div>
|
|
);
|
|
})}
|
|
<BlockButton
|
|
onClick={() => append({ name: '', component_id: undefined })}
|
|
>
|
|
{t('flow.addVariable')}
|
|
</BlockButton>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function VariableTitle({ title }: { title: ReactNode }) {
|
|
return <div className="font-medium text-text-title pb-2">{title}</div>;
|
|
}
|
|
|
|
export function DynamicInputVariable({
|
|
node,
|
|
name,
|
|
title,
|
|
}: IProps & { title: ReactNode }) {
|
|
return (
|
|
<section>
|
|
<VariableTitle title={title}></VariableTitle>
|
|
<FormContainer>
|
|
<DynamicVariableForm node={node} name={name}></DynamicVariableForm>
|
|
</FormContainer>
|
|
</section>
|
|
);
|
|
}
|