### What problem does this PR solve? issue: https://github.com/infiniflow/ragflow/issues/10427 change: new component list operations ### Type of change - [x] New Feature (non-breaking change which adds functionality)
22 lines
667 B
TypeScript
22 lines
667 B
TypeScript
import { BaseNode } from '@/interfaces/database/agent';
|
|
import { NodeProps } from '@xyflow/react';
|
|
import { camelCase } from 'lodash';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { RagNode } from '.';
|
|
import { ListOperationsFormSchemaType } from '../../form/list-operations-form';
|
|
import { LabelCard } from './card';
|
|
|
|
export function ListOperationsNode({
|
|
...props
|
|
}: NodeProps<BaseNode<ListOperationsFormSchemaType>>) {
|
|
const { data } = props;
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<RagNode {...props}>
|
|
<LabelCard>
|
|
{t(`flow.ListOperationsOptions.${camelCase(data.form?.operations)}`)}
|
|
</LabelCard>
|
|
</RagNode>
|
|
);
|
|
}
|