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 variable aggregator node #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
101 lines
3.1 KiB
TypeScript
101 lines
3.1 KiB
TypeScript
import { SelectWithSearch } from '@/components/originui/select-with-search';
|
|
import { RAGFlowFormItem } from '@/components/ragflow-form';
|
|
import { Form } from '@/components/ui/form';
|
|
import { Separator } from '@/components/ui/separator';
|
|
import { buildOptions } from '@/utils/form';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { memo } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { z } from 'zod';
|
|
import {
|
|
JsonSchemaDataType,
|
|
Operations,
|
|
initialDataOperationsValues,
|
|
} from '../../constant';
|
|
import { useFormValues } from '../../hooks/use-form-values';
|
|
import { useWatchFormChange } from '../../hooks/use-watch-form-change';
|
|
import { INextOperatorForm } from '../../interface';
|
|
import { buildOutputList } from '../../utils/build-output-list';
|
|
import { FormWrapper } from '../components/form-wrapper';
|
|
import { Output, OutputSchema } from '../components/output';
|
|
import { QueryVariableList } from '../components/query-variable-list';
|
|
|
|
export const RetrievalPartialSchema = {
|
|
query: z.array(z.object({ input: z.string().optional() })),
|
|
operations: z.string(),
|
|
select_keys: z.array(z.object({ name: z.string().optional() })).optional(),
|
|
remove_keys: z.array(z.object({ name: z.string().optional() })).optional(),
|
|
updates: z
|
|
.array(
|
|
z.object({ key: z.string().optional(), value: z.string().optional() }),
|
|
)
|
|
.optional(),
|
|
rename_keys: z
|
|
.array(
|
|
z.object({
|
|
old_key: z.string().optional(),
|
|
new_key: z.string().optional(),
|
|
}),
|
|
)
|
|
.optional(),
|
|
filter_values: z
|
|
.array(
|
|
z.object({
|
|
key: z.string().optional(),
|
|
value: z.string().optional(),
|
|
operator: z.string().optional(),
|
|
}),
|
|
)
|
|
.optional(),
|
|
...OutputSchema,
|
|
};
|
|
|
|
export const FormSchema = z.object(RetrievalPartialSchema);
|
|
|
|
export type DataOperationsFormSchemaType = z.infer<typeof FormSchema>;
|
|
|
|
const outputList = buildOutputList(initialDataOperationsValues.outputs);
|
|
|
|
function VariableAssignerForm({ node }: INextOperatorForm) {
|
|
const { t } = useTranslation();
|
|
|
|
const defaultValues = useFormValues(initialDataOperationsValues, node);
|
|
|
|
const form = useForm<DataOperationsFormSchemaType>({
|
|
defaultValues: defaultValues,
|
|
mode: 'onChange',
|
|
resolver: zodResolver(FormSchema),
|
|
shouldUnregister: true,
|
|
});
|
|
|
|
const OperationsOptions = buildOptions(
|
|
Operations,
|
|
t,
|
|
`flow.operationsOptions`,
|
|
true,
|
|
);
|
|
|
|
useWatchFormChange(node?.id, form, true);
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<FormWrapper>
|
|
<QueryVariableList
|
|
tooltip={t('flow.queryTip')}
|
|
label={t('flow.query')}
|
|
types={[JsonSchemaDataType.Array, JsonSchemaDataType.Object]}
|
|
></QueryVariableList>
|
|
<Separator />
|
|
<RAGFlowFormItem name="operations" label={t('flow.operations')}>
|
|
<SelectWithSearch options={OperationsOptions} allowClear />
|
|
</RAGFlowFormItem>
|
|
|
|
<Output list={outputList} isFormRequired></Output>
|
|
</FormWrapper>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
export default memo(VariableAssignerForm);
|