mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: merge the begin operator's url and file into one field #3355 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
99 lines
2.3 KiB
TypeScript
99 lines
2.3 KiB
TypeScript
import { EditableCell, EditableRow } from '@/components/editable-cell';
|
|
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { DeleteOutlined } from '@ant-design/icons';
|
|
import { Button, Flex, Select, Table, TableProps } from 'antd';
|
|
import { IGenerateParameter } from '../../interface';
|
|
|
|
import { useBuildComponentIdSelectOptions } from '../../hooks';
|
|
import { useHandleOperateParameters } from './hooks';
|
|
import styles from './index.less';
|
|
|
|
interface IProps {
|
|
nodeId?: string;
|
|
}
|
|
|
|
const components = {
|
|
body: {
|
|
row: EditableRow,
|
|
cell: EditableCell,
|
|
},
|
|
};
|
|
|
|
const DynamicParameters = ({ nodeId }: IProps) => {
|
|
const { t } = useTranslate('flow');
|
|
|
|
const options = useBuildComponentIdSelectOptions(nodeId);
|
|
const {
|
|
dataSource,
|
|
handleAdd,
|
|
handleRemove,
|
|
handleSave,
|
|
handleComponentIdChange,
|
|
} = useHandleOperateParameters(nodeId!);
|
|
|
|
const columns: TableProps<IGenerateParameter>['columns'] = [
|
|
{
|
|
title: t('key'),
|
|
dataIndex: 'key',
|
|
key: 'key',
|
|
onCell: (record: IGenerateParameter) => ({
|
|
record,
|
|
editable: true,
|
|
dataIndex: 'key',
|
|
title: 'key',
|
|
handleSave,
|
|
}),
|
|
},
|
|
{
|
|
title: t('componentId'),
|
|
dataIndex: 'component_id',
|
|
key: 'component_id',
|
|
align: 'center',
|
|
render(text, record) {
|
|
return (
|
|
<Select
|
|
style={{ width: '100%' }}
|
|
allowClear
|
|
options={options}
|
|
value={text}
|
|
onChange={handleComponentIdChange(record)}
|
|
/>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: t('operation'),
|
|
dataIndex: 'operation',
|
|
width: 20,
|
|
key: 'operation',
|
|
align: 'center',
|
|
fixed: 'right',
|
|
render(_, record) {
|
|
return <DeleteOutlined onClick={handleRemove(record.id)} />;
|
|
},
|
|
},
|
|
];
|
|
|
|
return (
|
|
<section>
|
|
<Flex justify="end">
|
|
<Button size="small" onClick={handleAdd}>
|
|
{t('add')}
|
|
</Button>
|
|
</Flex>
|
|
<Table
|
|
dataSource={dataSource}
|
|
columns={columns}
|
|
rowKey={'id'}
|
|
className={styles.variableTable}
|
|
components={components}
|
|
rowClassName={() => styles.editableRow}
|
|
scroll={{ x: true }}
|
|
bordered
|
|
/>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default DynamicParameters;
|