### What problem does this PR solve? Feat: Render the mcp list on the agent page #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import { IAgentForm, IToolNode } from '@/interfaces/database/agent';
|
|
import { Handle, NodeProps, Position } from '@xyflow/react';
|
|
import { get } from 'lodash';
|
|
import { memo, useCallback } from 'react';
|
|
import { NodeHandleId } from '../../constant';
|
|
import { ToolCard } from '../../form/agent-form/agent-tools';
|
|
import { useFindMcpById } from '../../hooks/use-find-mcp-by-id';
|
|
import useGraphStore from '../../store';
|
|
import { NodeWrapper } from './node-wrapper';
|
|
|
|
function InnerToolNode({ id, isConnectable = true }: NodeProps<IToolNode>) {
|
|
const { edges, getNode } = useGraphStore((state) => state);
|
|
const upstreamAgentNodeId = edges.find((x) => x.target === id)?.source;
|
|
const upstreamAgentNode = getNode(upstreamAgentNodeId);
|
|
const { findMcpById } = useFindMcpById();
|
|
|
|
const handleClick = useCallback(() => {}, []);
|
|
|
|
const tools: IAgentForm['tools'] = get(
|
|
upstreamAgentNode,
|
|
'data.form.tools',
|
|
[],
|
|
);
|
|
|
|
const mcpList: IAgentForm['mcp'] = get(
|
|
upstreamAgentNode,
|
|
'data.form.mcp',
|
|
[],
|
|
);
|
|
|
|
return (
|
|
<NodeWrapper>
|
|
<Handle
|
|
id={NodeHandleId.End}
|
|
type="target"
|
|
position={Position.Top}
|
|
isConnectable={isConnectable}
|
|
></Handle>
|
|
<ul className="space-y-2">
|
|
{tools.map((x) => (
|
|
<ToolCard
|
|
key={x.component_name}
|
|
onClick={handleClick}
|
|
className="cursor-pointer"
|
|
data-tool={x.component_name}
|
|
>
|
|
{x.component_name}
|
|
</ToolCard>
|
|
))}
|
|
{mcpList.map((x) => (
|
|
<ToolCard
|
|
key={x.mcp_id}
|
|
onClick={handleClick}
|
|
className="cursor-pointer"
|
|
data-tool={x.mcp_id}
|
|
>
|
|
{findMcpById(x.mcp_id)?.name}
|
|
</ToolCard>
|
|
))}
|
|
</ul>
|
|
</NodeWrapper>
|
|
);
|
|
}
|
|
|
|
export const ToolNode = memo(InnerToolNode);
|