mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: monitor changes in the table of relevant operators and synchronize them to the edge #918 feat: fixed the issue of repeated requests when opening the graph page #918 feat: cache node anchor coordinate information #918 feat: monitor changes in the data.form field of the categorize and relevant operators and then synchronize them to the edge #918 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
90 lines
2.4 KiB
TypeScript
90 lines
2.4 KiB
TypeScript
import get from 'lodash/get';
|
|
import { useCallback, useMemo } from 'react';
|
|
import { v4 as uuid } from 'uuid';
|
|
import { Operator } from '../constant';
|
|
import { IGenerateParameter } from '../interface';
|
|
import useGraphStore from '../store';
|
|
|
|
// exclude nodes with branches
|
|
const ExcludedNodes = [Operator.Categorize, Operator.Relevant];
|
|
|
|
export const useBuildComponentIdSelectOptions = (nodeId?: string) => {
|
|
const nodes = useGraphStore((state) => state.nodes);
|
|
|
|
const options = useMemo(() => {
|
|
return nodes
|
|
.filter(
|
|
(x) =>
|
|
x.id !== nodeId && !ExcludedNodes.some((y) => y === x.data.label),
|
|
)
|
|
.map((x) => ({ label: x.data.name, value: x.id }));
|
|
}, [nodes, nodeId]);
|
|
|
|
return options;
|
|
};
|
|
|
|
export const useHandleOperateParameters = (nodeId: string) => {
|
|
const { getNode, updateNodeForm } = useGraphStore((state) => state);
|
|
const node = getNode(nodeId);
|
|
const dataSource: IGenerateParameter[] = useMemo(
|
|
() => get(node, 'data.form.parameters', []) as IGenerateParameter[],
|
|
[node],
|
|
);
|
|
|
|
const handleComponentIdChange = useCallback(
|
|
(row: IGenerateParameter) => (value: string) => {
|
|
const newData = [...dataSource];
|
|
const index = newData.findIndex((item) => row.id === item.id);
|
|
const item = newData[index];
|
|
newData.splice(index, 1, {
|
|
...item,
|
|
component_id: value,
|
|
});
|
|
|
|
updateNodeForm(nodeId, { parameters: newData });
|
|
},
|
|
[updateNodeForm, nodeId, dataSource],
|
|
);
|
|
|
|
const handleRemove = useCallback(
|
|
(id?: string) => () => {
|
|
const newData = dataSource.filter((item) => item.id !== id);
|
|
updateNodeForm(nodeId, { parameters: newData });
|
|
},
|
|
[updateNodeForm, nodeId, dataSource],
|
|
);
|
|
|
|
const handleAdd = useCallback(() => {
|
|
updateNodeForm(nodeId, {
|
|
parameters: [
|
|
...dataSource,
|
|
{
|
|
id: uuid(),
|
|
key: '',
|
|
component_id: undefined,
|
|
},
|
|
],
|
|
});
|
|
}, [dataSource, nodeId, updateNodeForm]);
|
|
|
|
const handleSave = (row: IGenerateParameter) => {
|
|
const newData = [...dataSource];
|
|
const index = newData.findIndex((item) => row.id === item.id);
|
|
const item = newData[index];
|
|
newData.splice(index, 1, {
|
|
...item,
|
|
...row,
|
|
});
|
|
|
|
updateNodeForm(nodeId, { parameters: newData });
|
|
};
|
|
|
|
return {
|
|
handleAdd,
|
|
handleRemove,
|
|
handleComponentIdChange,
|
|
handleSave,
|
|
dataSource,
|
|
};
|
|
};
|