mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 19:26:58 +10:00
562 lines
63 KiB
TypeScript
562 lines
63 KiB
TypeScript
|
|
import { c as _c } from "react/compiler-runtime";
|
||
|
|
import figures from 'figures';
|
||
|
|
import React, { useCallback, useMemo, useState } from 'react';
|
||
|
|
import { mcpInfoFromString } from 'src/services/mcp/mcpStringUtils.js';
|
||
|
|
import { isMcpTool } from 'src/services/mcp/utils.js';
|
||
|
|
import type { Tool, Tools } from 'src/Tool.js';
|
||
|
|
import { filterToolsForAgent } from 'src/tools/AgentTool/agentToolUtils.js';
|
||
|
|
import { AGENT_TOOL_NAME } from 'src/tools/AgentTool/constants.js';
|
||
|
|
import { BashTool } from 'src/tools/BashTool/BashTool.js';
|
||
|
|
import { ExitPlanModeV2Tool } from 'src/tools/ExitPlanModeTool/ExitPlanModeV2Tool.js';
|
||
|
|
import { FileEditTool } from 'src/tools/FileEditTool/FileEditTool.js';
|
||
|
|
import { FileReadTool } from 'src/tools/FileReadTool/FileReadTool.js';
|
||
|
|
import { FileWriteTool } from 'src/tools/FileWriteTool/FileWriteTool.js';
|
||
|
|
import { GlobTool } from 'src/tools/GlobTool/GlobTool.js';
|
||
|
|
import { GrepTool } from 'src/tools/GrepTool/GrepTool.js';
|
||
|
|
import { ListMcpResourcesTool } from 'src/tools/ListMcpResourcesTool/ListMcpResourcesTool.js';
|
||
|
|
import { NotebookEditTool } from 'src/tools/NotebookEditTool/NotebookEditTool.js';
|
||
|
|
import { ReadMcpResourceTool } from 'src/tools/ReadMcpResourceTool/ReadMcpResourceTool.js';
|
||
|
|
import { TaskOutputTool } from 'src/tools/TaskOutputTool/TaskOutputTool.js';
|
||
|
|
import { TaskStopTool } from 'src/tools/TaskStopTool/TaskStopTool.js';
|
||
|
|
import { TodoWriteTool } from 'src/tools/TodoWriteTool/TodoWriteTool.js';
|
||
|
|
import { TungstenTool } from 'src/tools/TungstenTool/TungstenTool.js';
|
||
|
|
import { WebFetchTool } from 'src/tools/WebFetchTool/WebFetchTool.js';
|
||
|
|
import { WebSearchTool } from 'src/tools/WebSearchTool/WebSearchTool.js';
|
||
|
|
import type { KeyboardEvent } from '../../ink/events/keyboard-event.js';
|
||
|
|
import { Box, Text } from '../../ink.js';
|
||
|
|
import { useKeybinding } from '../../keybindings/useKeybinding.js';
|
||
|
|
import { count } from '../../utils/array.js';
|
||
|
|
import { plural } from '../../utils/stringUtils.js';
|
||
|
|
import { Divider } from '../design-system/Divider.js';
|
||
|
|
type Props = {
|
||
|
|
tools: Tools;
|
||
|
|
initialTools: string[] | undefined;
|
||
|
|
onComplete: (selectedTools: string[] | undefined) => void;
|
||
|
|
onCancel?: () => void;
|
||
|
|
};
|
||
|
|
type ToolBucket = {
|
||
|
|
name: string;
|
||
|
|
toolNames: Set<string>;
|
||
|
|
isMcp?: boolean;
|
||
|
|
};
|
||
|
|
type ToolBuckets = {
|
||
|
|
READ_ONLY: ToolBucket;
|
||
|
|
EDIT: ToolBucket;
|
||
|
|
EXECUTION: ToolBucket;
|
||
|
|
MCP: ToolBucket;
|
||
|
|
OTHER: ToolBucket;
|
||
|
|
};
|
||
|
|
function getToolBuckets(): ToolBuckets {
|
||
|
|
return {
|
||
|
|
READ_ONLY: {
|
||
|
|
name: 'Read-only tools',
|
||
|
|
toolNames: new Set([GlobTool.name, GrepTool.name, ExitPlanModeV2Tool.name, FileReadTool.name, WebFetchTool.name, TodoWriteTool.name, WebSearchTool.name, TaskStopTool.name, TaskOutputTool.name, ListMcpResourcesTool.name, ReadMcpResourceTool.name])
|
||
|
|
},
|
||
|
|
EDIT: {
|
||
|
|
name: 'Edit tools',
|
||
|
|
toolNames: new Set([FileEditTool.name, FileWriteTool.name, NotebookEditTool.name])
|
||
|
|
},
|
||
|
|
EXECUTION: {
|
||
|
|
name: 'Execution tools',
|
||
|
|
toolNames: new Set([BashTool.name, "external" === 'ant' ? TungstenTool.name : undefined].filter(n => n !== undefined))
|
||
|
|
},
|
||
|
|
MCP: {
|
||
|
|
name: 'MCP tools',
|
||
|
|
toolNames: new Set(),
|
||
|
|
// Dynamic - no static list
|
||
|
|
isMcp: true
|
||
|
|
},
|
||
|
|
OTHER: {
|
||
|
|
name: 'Other tools',
|
||
|
|
toolNames: new Set() // Dynamic - catch-all for uncategorized tools
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
// Helper to get MCP server buckets dynamically
|
||
|
|
function getMcpServerBuckets(tools: Tools): Array<{
|
||
|
|
serverName: string;
|
||
|
|
tools: Tools;
|
||
|
|
}> {
|
||
|
|
const serverMap = new Map<string, Tool[]>();
|
||
|
|
tools.forEach(tool => {
|
||
|
|
if (isMcpTool(tool)) {
|
||
|
|
const mcpInfo = mcpInfoFromString(tool.name);
|
||
|
|
if (mcpInfo?.serverName) {
|
||
|
|
const existing = serverMap.get(mcpInfo.serverName) || [];
|
||
|
|
existing.push(tool);
|
||
|
|
serverMap.set(mcpInfo.serverName, existing);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
return Array.from(serverMap.entries()).map(([serverName, tools]) => ({
|
||
|
|
serverName,
|
||
|
|
tools
|
||
|
|
})).sort((a, b) => a.serverName.localeCompare(b.serverName));
|
||
|
|
}
|
||
|
|
export function ToolSelector(t0) {
|
||
|
|
const $ = _c(69);
|
||
|
|
const {
|
||
|
|
tools,
|
||
|
|
initialTools,
|
||
|
|
onComplete,
|
||
|
|
onCancel
|
||
|
|
} = t0;
|
||
|
|
let t1;
|
||
|
|
if ($[0] !== tools) {
|
||
|
|
t1 = filterToolsForAgent({
|
||
|
|
tools,
|
||
|
|
isBuiltIn: false,
|
||
|
|
isAsync: false
|
||
|
|
});
|
||
|
|
$[0] = tools;
|
||
|
|
$[1] = t1;
|
||
|
|
} else {
|
||
|
|
t1 = $[1];
|
||
|
|
}
|
||
|
|
const customAgentTools = t1;
|
||
|
|
let t2;
|
||
|
|
if ($[2] !== customAgentTools || $[3] !== initialTools) {
|
||
|
|
t2 = !initialTools || initialTools.includes("*") ? customAgentTools.map(_temp) : initialTools;
|
||
|
|
$[2] = customAgentTools;
|
||
|
|
$[3] = initialTools;
|
||
|
|
$[4] = t2;
|
||
|
|
} else {
|
||
|
|
t2 = $[4];
|
||
|
|
}
|
||
|
|
const expandedInitialTools = t2;
|
||
|
|
const [selectedTools, setSelectedTools] = useState(expandedInitialTools);
|
||
|
|
const [focusIndex, setFocusIndex] = useState(0);
|
||
|
|
const [showIndividualTools, setShowIndividualTools] = useState(false);
|
||
|
|
let t3;
|
||
|
|
if ($[5] !== customAgentTools) {
|
||
|
|
t3 = new Set(customAgentTools.map(_temp2));
|
||
|
|
$[5] = customAgentTools;
|
||
|
|
$[6] = t3;
|
||
|
|
} else {
|
||
|
|
t3 = $[6];
|
||
|
|
}
|
||
|
|
const toolNames = t3;
|
||
|
|
let t4;
|
||
|
|
if ($[7] !== selectedTools || $[8] !== toolNames) {
|
||
|
|
let t5;
|
||
|
|
if ($[10] !== toolNames) {
|
||
|
|
t5 = name => toolNames.has(name);
|
||
|
|
$[10] = toolNames;
|
||
|
|
$[11] = t5;
|
||
|
|
} else {
|
||
|
|
t5 = $[11];
|
||
|
|
}
|
||
|
|
t4 = selectedTools.filter(t5);
|
||
|
|
$[7] = selectedTools;
|
||
|
|
$[8] = toolNames;
|
||
|
|
$[9] = t4;
|
||
|
|
} else {
|
||
|
|
t4 = $[9];
|
||
|
|
}
|
||
|
|
const validSelectedTools = t4;
|
||
|
|
let t5;
|
||
|
|
if ($[12] !== validSelectedTools) {
|
||
|
|
t5 = new Set(validSelectedTools);
|
||
|
|
$[12] = validSelectedTools;
|
||
|
|
$[13] = t5;
|
||
|
|
} else {
|
||
|
|
t5 = $[13];
|
||
|
|
}
|
||
|
|
const selectedSet = t5;
|
||
|
|
const isAllSelected = validSelectedTools.length === customAgentTools.length && customAgentTools.length > 0;
|
||
|
|
let t6;
|
||
|
|
if ($[14] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t6 = toolName => {
|
||
|
|
if (!toolName) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
setSelectedTools(current => current.includes(toolName) ? current.filter(t_1 => t_1 !== toolName) : [...current, toolName]);
|
||
|
|
};
|
||
|
|
$[14] = t6;
|
||
|
|
} else {
|
||
|
|
t6 = $[14];
|
||
|
|
}
|
||
|
|
const handleToggleTool = t6;
|
||
|
|
let t7;
|
||
|
|
if ($[15] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t7 = (toolNames_0, select) => {
|
||
|
|
setSelectedTools(current_0 => {
|
||
|
|
if (select) {
|
||
|
|
const toolsToAdd = toolNames_0.filter(t_2 => !current_0.includes(t_2));
|
||
|
|
return [...current_0, ...toolsToAdd];
|
||
|
|
} else {
|
||
|
|
return current_0.filter(t_3 => !toolNames_0.includes(t_3));
|
||
|
|
}
|
||
|
|
});
|
||
|
|
};
|
||
|
|
$[15] = t7;
|
||
|
|
} else {
|
||
|
|
t7 = $[15];
|
||
|
|
}
|
||
|
|
const handleToggleTools = t7;
|
||
|
|
let t8;
|
||
|
|
if ($[16] !== customAgentTools || $[17] !== onComplete || $[18] !== validSelectedTools) {
|
||
|
|
t8 = () => {
|
||
|
|
const allToolNames = customAgentTools.map(_temp3);
|
||
|
|
const areAllToolsSelected = validSelectedTools.length === allToolNames.length && allToolNames.every(name_0 => validSelectedTools.includes(name_0));
|
||
|
|
const finalTools = areAllToolsSelected ? undefined : validSelectedTools;
|
||
|
|
onComplete(finalTools);
|
||
|
|
};
|
||
|
|
$[16] = customAgentTools;
|
||
|
|
$[17] = onComplete;
|
||
|
|
$[18] = validSelectedTools;
|
||
|
|
$[19] = t8;
|
||
|
|
} else {
|
||
|
|
t8 = $[19];
|
||
|
|
}
|
||
|
|
const handleConfirm = t8;
|
||
|
|
let buckets;
|
||
|
|
if ($[20] !== customAgentTools) {
|
||
|
|
const toolBuckets = getToolBuckets();
|
||
|
|
buckets = {
|
||
|
|
readOnly: [] as Tool[],
|
||
|
|
edit: [] as Tool[],
|
||
|
|
execution: [] as Tool[],
|
||
|
|
mcp: [] as Tool[],
|
||
|
|
other: [] as Tool[]
|
||
|
|
};
|
||
|
|
customAgentTools.forEach(tool => {
|
||
|
|
if (isMcpTool(tool)) {
|
||
|
|
buckets.mcp.push(tool);
|
||
|
|
} else {
|
||
|
|
if (toolBuckets.READ_ONLY.toolNames.has(tool.name)) {
|
||
|
|
buckets.readOnly.push(tool);
|
||
|
|
} else {
|
||
|
|
if (toolBuckets.EDIT.toolNames.has(tool.name)) {
|
||
|
|
buckets.edit.push(tool);
|
||
|
|
} else {
|
||
|
|
if (toolBuckets.EXECUTION.toolNames.has(tool.name)) {
|
||
|
|
buckets.execution.push(tool);
|
||
|
|
} else {
|
||
|
|
if (tool.name !== AGENT_TOOL_NAME) {
|
||
|
|
buckets.other.push(tool);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
$[20] = customAgentTools;
|
||
|
|
$[21] = buckets;
|
||
|
|
} else {
|
||
|
|
buckets = $[21];
|
||
|
|
}
|
||
|
|
const toolsByBucket = buckets;
|
||
|
|
let t9;
|
||
|
|
if ($[22] !== selectedSet) {
|
||
|
|
t9 = bucketTools => {
|
||
|
|
const selected = count(bucketTools, t_5 => selectedSet.has(t_5.name));
|
||
|
|
const needsSelection = selected < bucketTools.length;
|
||
|
|
return () => {
|
||
|
|
const toolNames_1 = bucketTools.map(_temp4);
|
||
|
|
handleToggleTools(toolNames_1, needsSelection);
|
||
|
|
};
|
||
|
|
};
|
||
|
|
$[22] = selectedSet;
|
||
|
|
$[23] = t9;
|
||
|
|
} else {
|
||
|
|
t9 = $[23];
|
||
|
|
}
|
||
|
|
const createBucketToggleAction = t9;
|
||
|
|
let navigableItems;
|
||
|
|
if ($[24] !== createBucketToggleAction || $[25] !== customAgentTools || $[26] !== focusIndex || $[27] !== handleConfirm || $[28] !== isAllSelected || $[29] !== selectedSet || $[30] !== showIndividualTools || $[31] !== toolsByBucket.edit || $[32] !== toolsByBucket.execution || $[33] !== toolsByBucket.mcp || $[34] !== toolsByBucket.other || $[35] !== toolsByBucket.readOnly) {
|
||
|
|
navigableItems = [];
|
||
|
|
navigableItems.push({
|
||
|
|
id: "continue",
|
||
|
|
label: "Continue",
|
||
|
|
action: handleConfirm,
|
||
|
|
isContinue: true
|
||
|
|
});
|
||
|
|
let t10;
|
||
|
|
if ($[37] !== customAgentTools || $[38] !== isAllSelected) {
|
||
|
|
t10 = () => {
|
||
|
|
const allToolNames_0 = customAgentTools.map(_temp5);
|
||
|
|
handleToggleTools(allToolNames_0, !isAllSelected);
|
||
|
|
};
|
||
|
|
$[37] = customAgentTools;
|
||
|
|
$[38] = isAllSelected;
|
||
|
|
$[39] = t10;
|
||
|
|
} else {
|
||
|
|
t10 = $[39];
|
||
|
|
}
|
||
|
|
navigableItems.push({
|
||
|
|
id: "bucket-all",
|
||
|
|
label: `${isAllSelected ? figures.checkboxOn : figures.checkboxOff} All tools`,
|
||
|
|
action: t10
|
||
|
|
});
|
||
|
|
const toolBuckets_0 = getToolBuckets();
|
||
|
|
const bucketConfigs = [{
|
||
|
|
id: "bucket-readonly",
|
||
|
|
name: toolBuckets_0.READ_ONLY.name,
|
||
|
|
tools: toolsByBucket.readOnly
|
||
|
|
}, {
|
||
|
|
id: "bucket-edit",
|
||
|
|
name: toolBuckets_0.EDIT.name,
|
||
|
|
tools: toolsByBucket.edit
|
||
|
|
}, {
|
||
|
|
id: "bucket-execution",
|
||
|
|
name: toolBuckets_0.EXECUTION.name,
|
||
|
|
tools: toolsByBucket.execution
|
||
|
|
}, {
|
||
|
|
id: "bucket-mcp",
|
||
|
|
name: toolBuckets_0.MCP.name,
|
||
|
|
tools: toolsByBucket.mcp
|
||
|
|
}, {
|
||
|
|
id: "bucket-other",
|
||
|
|
name: toolBuckets_0.OTHER.name,
|
||
|
|
tools: toolsByBucket.other
|
||
|
|
}];
|
||
|
|
bucketConfigs.forEach(t11 => {
|
||
|
|
const {
|
||
|
|
id,
|
||
|
|
name: name_1,
|
||
|
|
tools: bucketTools_0
|
||
|
|
} = t11;
|
||
|
|
if (bucketTools_0.length === 0) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
const selected_0 = count(bucketTools_0, t_8 => selectedSet.has(t_8.name));
|
||
|
|
const isFullySelected = selected_0 === bucketTools_0.length;
|
||
|
|
navigableItems.push({
|
||
|
|
id,
|
||
|
|
label: `${isFullySelected ? figures.checkboxOn : figures.checkboxOff} ${name_1}`,
|
||
|
|
action: createBucketToggleAction(bucketTools_0)
|
||
|
|
});
|
||
|
|
});
|
||
|
|
const toggleButtonIndex = navigableItems.length;
|
||
|
|
let t12;
|
||
|
|
if ($[40] !== focusIndex || $[41] !== showIndividualTools || $[42] !== toggleButtonIndex) {
|
||
|
|
t12 = () => {
|
||
|
|
setShowIndividualTools(!showIndividualTools);
|
||
|
|
if (showIndividualTools && focusIndex > toggleButtonIndex) {
|
||
|
|
setFocusIndex(toggleButtonIndex);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
$[40] = focusIndex;
|
||
|
|
$[41] = showIndividualTools;
|
||
|
|
$[42] = toggleButtonIndex;
|
||
|
|
$[43] = t12;
|
||
|
|
} else {
|
||
|
|
t12 = $[43];
|
||
|
|
}
|
||
|
|
navigableItems.push({
|
||
|
|
id: "toggle-individual",
|
||
|
|
label: showIndividualTools ? "Hide advanced options" : "Show advanced options",
|
||
|
|
action: t12,
|
||
|
|
isToggle: true
|
||
|
|
});
|
||
|
|
const mcpServerBuckets = getMcpServerBuckets(customAgentTools);
|
||
|
|
if (showIndividualTools) {
|
||
|
|
if (mcpServerBuckets.length > 0) {
|
||
|
|
navigableItems.push({
|
||
|
|
id: "mcp-servers-header",
|
||
|
|
label: "MCP Servers:",
|
||
|
|
action: _temp6,
|
||
|
|
isHeader: true
|
||
|
|
});
|
||
|
|
mcpServerBuckets.forEach(t13 => {
|
||
|
|
const {
|
||
|
|
serverName,
|
||
|
|
tools: serverTools
|
||
|
|
} = t13;
|
||
|
|
const selected_1 = count(serverTools, t_9 => selectedSet.has(t_9.name));
|
||
|
|
const isFullySelected_0 = selected_1 === serverTools.length;
|
||
|
|
navigableItems.push({
|
||
|
|
id: `mcp-server-${serverName}`,
|
||
|
|
label: `${isFullySelected_0 ? figures.checkboxOn : figures.checkboxOff} ${serverName} (${serverTools.length} ${plural(serverTools.length, "tool")})`,
|
||
|
|
action: () => {
|
||
|
|
const toolNames_2 = serverTools.map(_temp7);
|
||
|
|
handleToggleTools(toolNames_2, !isFullySelected_0);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
navigableItems.push({
|
||
|
|
id: "tools-header",
|
||
|
|
label: "Individual Tools:",
|
||
|
|
action: _temp8,
|
||
|
|
isHeader: true
|
||
|
|
});
|
||
|
|
}
|
||
|
|
customAgentTools.forEach(tool_0 => {
|
||
|
|
let displayName = tool_0.name;
|
||
|
|
if (tool_0.name.startsWith("mcp__")) {
|
||
|
|
const mcpInfo = mcpInfoFromString(tool_0.name);
|
||
|
|
displayName = mcpInfo ? `${mcpInfo.toolName} (${mcpInfo.serverName})` : tool_0.name;
|
||
|
|
}
|
||
|
|
navigableItems.push({
|
||
|
|
id: `tool-${tool_0.name}`,
|
||
|
|
label: `${selectedSet.has(tool_0.name) ? figures.checkboxOn : figures.checkboxOff} ${displayName}`,
|
||
|
|
action: () => handleToggleTool(tool_0.name)
|
||
|
|
});
|
||
|
|
});
|
||
|
|
}
|
||
|
|
$[24] = createBucketToggleAction;
|
||
|
|
$[25] = customAgentTools;
|
||
|
|
$[26] = focusIndex;
|
||
|
|
$[27] = handleConfirm;
|
||
|
|
$[28] = isAllSelected;
|
||
|
|
$[29] = selectedSet;
|
||
|
|
$[30] = showIndividualTools;
|
||
|
|
$[31] = toolsByBucket.edit;
|
||
|
|
$[32] = toolsByBucket.execution;
|
||
|
|
$[33] = toolsByBucket.mcp;
|
||
|
|
$[34] = toolsByBucket.other;
|
||
|
|
$[35] = toolsByBucket.readOnly;
|
||
|
|
$[36] = navigableItems;
|
||
|
|
} else {
|
||
|
|
navigableItems = $[36];
|
||
|
|
}
|
||
|
|
let t10;
|
||
|
|
if ($[44] !== initialTools || $[45] !== onCancel || $[46] !== onComplete) {
|
||
|
|
t10 = () => {
|
||
|
|
if (onCancel) {
|
||
|
|
onCancel();
|
||
|
|
} else {
|
||
|
|
onComplete(initialTools);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
$[44] = initialTools;
|
||
|
|
$[45] = onCancel;
|
||
|
|
$[46] = onComplete;
|
||
|
|
$[47] = t10;
|
||
|
|
} else {
|
||
|
|
t10 = $[47];
|
||
|
|
}
|
||
|
|
const handleCancel = t10;
|
||
|
|
let t11;
|
||
|
|
if ($[48] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t11 = {
|
||
|
|
context: "Confirmation"
|
||
|
|
};
|
||
|
|
$[48] = t11;
|
||
|
|
} else {
|
||
|
|
t11 = $[48];
|
||
|
|
}
|
||
|
|
useKeybinding("confirm:no", handleCancel, t11);
|
||
|
|
let t12;
|
||
|
|
if ($[49] !== focusIndex || $[50] !== navigableItems) {
|
||
|
|
t12 = e => {
|
||
|
|
if (e.key === "return") {
|
||
|
|
e.preventDefault();
|
||
|
|
const item = navigableItems[focusIndex];
|
||
|
|
if (item && !item.isHeader) {
|
||
|
|
item.action();
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
if (e.key === "up") {
|
||
|
|
e.preventDefault();
|
||
|
|
let newIndex = focusIndex - 1;
|
||
|
|
while (newIndex > 0 && navigableItems[newIndex]?.isHeader) {
|
||
|
|
newIndex--;
|
||
|
|
}
|
||
|
|
setFocusIndex(Math.max(0, newIndex));
|
||
|
|
} else {
|
||
|
|
if (e.key === "down") {
|
||
|
|
e.preventDefault();
|
||
|
|
let newIndex_0 = focusIndex + 1;
|
||
|
|
while (newIndex_0 < navigableItems.length - 1 && navigableItems[newIndex_0]?.isHeader) {
|
||
|
|
newIndex_0++;
|
||
|
|
}
|
||
|
|
setFocusIndex(Math.min(navigableItems.length - 1, newIndex_0));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
$[49] = focusIndex;
|
||
|
|
$[50] = navigableItems;
|
||
|
|
$[51] = t12;
|
||
|
|
} else {
|
||
|
|
t12 = $[51];
|
||
|
|
}
|
||
|
|
const handleKeyDown = t12;
|
||
|
|
const t13 = focusIndex === 0 ? "suggestion" : undefined;
|
||
|
|
const t14 = focusIndex === 0;
|
||
|
|
const t15 = focusIndex === 0 ? `${figures.pointer} ` : " ";
|
||
|
|
let t16;
|
||
|
|
if ($[52] !== t13 || $[53] !== t14 || $[54] !== t15) {
|
||
|
|
t16 = <Text color={t13} bold={t14}>{t15}[ Continue ]</Text>;
|
||
|
|
$[52] = t13;
|
||
|
|
$[53] = t14;
|
||
|
|
$[54] = t15;
|
||
|
|
$[55] = t16;
|
||
|
|
} else {
|
||
|
|
t16 = $[55];
|
||
|
|
}
|
||
|
|
let t17;
|
||
|
|
if ($[56] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t17 = <Divider width={40} />;
|
||
|
|
$[56] = t17;
|
||
|
|
} else {
|
||
|
|
t17 = $[56];
|
||
|
|
}
|
||
|
|
let t18;
|
||
|
|
if ($[57] !== navigableItems) {
|
||
|
|
t18 = navigableItems.slice(1);
|
||
|
|
$[57] = navigableItems;
|
||
|
|
$[58] = t18;
|
||
|
|
} else {
|
||
|
|
t18 = $[58];
|
||
|
|
}
|
||
|
|
let t19;
|
||
|
|
if ($[59] !== focusIndex || $[60] !== t18) {
|
||
|
|
t19 = t18.map((item_0, index) => {
|
||
|
|
const isCurrentlyFocused = index + 1 === focusIndex;
|
||
|
|
const isToggleButton = item_0.isToggle;
|
||
|
|
const isHeader = item_0.isHeader;
|
||
|
|
return <React.Fragment key={item_0.id}>{isToggleButton && <Divider width={40} />}{isHeader && index > 0 && <Box marginTop={1} />}<Text color={isHeader ? undefined : isCurrentlyFocused ? "suggestion" : undefined} dimColor={isHeader} bold={isToggleButton && isCurrentlyFocused}>{isHeader ? "" : isCurrentlyFocused ? `${figures.pointer} ` : " "}{isToggleButton ? `[ ${item_0.label} ]` : item_0.label}</Text></React.Fragment>;
|
||
|
|
});
|
||
|
|
$[59] = focusIndex;
|
||
|
|
$[60] = t18;
|
||
|
|
$[61] = t19;
|
||
|
|
} else {
|
||
|
|
t19 = $[61];
|
||
|
|
}
|
||
|
|
const t20 = isAllSelected ? "All tools selected" : `${selectedSet.size} of ${customAgentTools.length} tools selected`;
|
||
|
|
let t21;
|
||
|
|
if ($[62] !== t20) {
|
||
|
|
t21 = <Box marginTop={1} flexDirection="column"><Text dimColor={true}>{t20}</Text></Box>;
|
||
|
|
$[62] = t20;
|
||
|
|
$[63] = t21;
|
||
|
|
} else {
|
||
|
|
t21 = $[63];
|
||
|
|
}
|
||
|
|
let t22;
|
||
|
|
if ($[64] !== handleKeyDown || $[65] !== t16 || $[66] !== t19 || $[67] !== t21) {
|
||
|
|
t22 = <Box flexDirection="column" marginTop={1} tabIndex={0} autoFocus={true} onKeyDown={handleKeyDown}>{t16}{t17}{t19}{t21}</Box>;
|
||
|
|
$[64] = handleKeyDown;
|
||
|
|
$[65] = t16;
|
||
|
|
$[66] = t19;
|
||
|
|
$[67] = t21;
|
||
|
|
$[68] = t22;
|
||
|
|
} else {
|
||
|
|
t22 = $[68];
|
||
|
|
}
|
||
|
|
return t22;
|
||
|
|
}
|
||
|
|
function _temp8() {}
|
||
|
|
function _temp7(t_10) {
|
||
|
|
return t_10.name;
|
||
|
|
}
|
||
|
|
function _temp6() {}
|
||
|
|
function _temp5(t_7) {
|
||
|
|
return t_7.name;
|
||
|
|
}
|
||
|
|
function _temp4(t_6) {
|
||
|
|
return t_6.name;
|
||
|
|
}
|
||
|
|
function _temp3(t_4) {
|
||
|
|
return t_4.name;
|
||
|
|
}
|
||
|
|
function _temp2(t_0) {
|
||
|
|
return t_0.name;
|
||
|
|
}
|
||
|
|
function _temp(t) {
|
||
|
|
return t.name;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJmaWd1cmVzIiwiUmVhY3QiLCJ1c2VDYWxsYmFjayIsInVzZU1lbW8iLCJ1c2VTdGF0ZSIsIm1jcEluZm9Gcm9tU3RyaW5nIiwiaXNNY3BUb29sIiwiVG9vbCIsIlRvb2xzIiwiZmlsdGVyVG9vbHNGb3JBZ2VudCIsIkFHRU5UX1RPT0xfTkFNRSIsIkJhc2hUb29sIiwiRXhpdFBsYW5Nb2RlVjJUb29sIiwiRmlsZUVkaXRUb29sIiwiRmlsZVJlYWRUb29sIiwiRmlsZVdyaXRlVG9vbCIsIkdsb2JUb29sIiwiR3JlcFRvb2wiLCJMaXN0TWNwUmVzb3VyY2VzVG9vbCIsIk5vdGVib29rRWRpdFRvb2wiLCJSZWFkTWNwUmVzb3VyY2VUb29sIiwiVGFza091dHB1dFRvb2wiLCJUYXNrU3RvcFRvb2wiLCJUb2RvV3JpdGVUb29sIiwiVHVuZ3N0ZW5Ub29sIiwiV2ViRmV0Y2hUb29sIiwiV2ViU2VhcmNoVG9vbCIsIktleWJvYXJkRXZlbnQiLCJCb3giLCJUZXh0IiwidXNlS2V5YmluZGluZyIsImNvdW50IiwicGx1cmFsIiwiRGl2aWRlciIsIlByb3BzIiwidG9vbHMiLCJpbml0aWFsVG9vbHMiLCJvbkNvbXBsZXRlIiwic2VsZWN0ZWRUb29scyIsIm9uQ2FuY2VsIiwiVG9vbEJ1Y2tldCIsIm5hbWUiLCJ0b29sTmFtZXMiLCJTZXQiLCJpc01jcCIsIlRvb2xCdWNrZXRzIiwiUkVBRF9PTkxZIiwiRURJVCIsIkVYRUNVVElPTiIsIk1DUCIsIk9USEVSIiwiZ2V0VG9vbEJ1Y2tldHMiLCJ1bmRlZmluZWQiLCJmaWx0ZXIiLCJuIiwiZ2V0TWNwU2VydmVyQnVja2V0cyIsIkFycmF5Iiwic2VydmVyTmFtZSIsInNlcnZlck1hcCIsIk1hcCIsImZvckVhY2giLCJ0b29sIiwibWNwSW5mbyIsImV4aXN0aW5nIiwiZ2V0IiwicHVzaCIsInNldCIsImZyb20iLCJlbnRyaWVzIiwibWFwIiwic29ydCIsImEiLCJiIiwibG9jYWxlQ29tcGFyZSIsIlRvb2xTZWxlY3RvciIsInQwIiwiJCIsIl9jIiwidDEiLCJpc0J1aWx0SW4iLCJpc0FzeW5jIiwiY3VzdG9tQWdlbnRUb29scyIsInQyIiwiaW5jbHVkZXMiLCJfdGVtcCIsImV4cGFuZGVkSW5pdGlhbFRvb2xzIiwic2V0U2VsZWN0ZWRUb29scyIsImZvY3VzSW5kZXgiLCJzZXRGb2N1c0luZGV4Iiwic2hvd0luZGl2aWR1YWxUb29scyIsInNldFNob3dJbmRpdmlkdWFsVG9vbHMiLCJ0MyIsIl90ZW1wMiIsInQ0IiwidDUiLCJoYXMiLCJ2YWxpZFNlbGVjdGVkVG9vbHMiLCJzZWxlY3RlZFNldCIsImlzQWxsU2VsZWN0ZWQiLCJsZW5ndGgiLCJ0NiIsIlN5bWJvbCIsImZvciIsInRvb2xOYW1lIiwiY3VycmVudCIsInRfMSIsInQiLCJoYW5kbGVUb2dnbGVUb29sIiwidDciLCJ0b29sTmFtZXNfMCIsInNlbGVjdCIsImN1cnJlbnRfMCIsInRvb2xzVG9BZGQiLCJ0XzIiLCJ0XzMiLCJoYW5kbGVUb2dnbGVUb29scyIsInQ4IiwiYWxsVG9vbE5hbWVzIiwiX3RlbXAzIiwiYXJlQWxsVG9vbHNTZWxlY3RlZCIsImV2ZXJ5IiwibmFtZV8wIiwiZmluYWxUb29scyIsImhhbmRsZUNvbmZpcm0iLCJidWNrZXRzIiwidG9vbEJ1Y2tldHMiLCJyZWFkT25seSIsImVkaXQiLCJleGVjdXRpb24iLCJtY3AiLCJvdGhlciIsInRvb2xzQnlCdWNrZXQiLCJ0OSIsImJ1Y2tldFRvb2xzIiwic2VsZWN0ZWQiLCJ0XzUiLCJuZWVkc1NlbGVjdGlvbiIsInRvb2xOYW1lc18xIiwiX3RlbXA0IiwiY3JlYXRlQnVja2V0VG9nZ2xlQWN0aW9uIiwibmF2aWdhYmxlSXRlbXMiLCJpZCIsImxhYmVsIiwiYWN0aW9uIiwiaXNDb250aW51ZSIsInQxMCIsImFsbFRvb2xOYW1lc18wIiwiX3RlbXA1IiwiY2hlY2tib3hPbiIsImNoZWNrYm94T2ZmIiwidG9vbEJ1Y2tldHNfMCIsImJ1Y2tldENvbmZpZ3MiLCJ0MTEiLCJuYW1lXzEiLCJidWNrZXRUb29sc18wIiwic2VsZWN0ZWRfMCIsInRfOCIsImlzRnVsbHlTZWxlY3RlZCIsInRvZ2dsZUJ1dHRvbkluZGV4IiwidDEyIiwiaXNUb2dnbGUiLCJtY3BTZXJ2ZXJCdWNrZXRzIiwiX3RlbXA2IiwiaXNIZWFkZXIiLCJ0MTMiLCJzZXJ2ZXJUb29scyIsInNlbGVjdGVkXzEiLCJ0XzkiLCJpc0Z1bGx5U2VsZWN0ZWRfMCIsInRvb2xOYW1lc18yIiwiX3RlbXA3IiwiX3RlbXA4IiwidG9vbF8wIiwiZGlzcGxheU5hbWUiLCJzdGFydHNXaXRoIiwiaGFuZGxlQ2FuY2VsIiwiY29udGV4dCIsImUiLCJrZXkiLCJwcmV2ZW50RGVmYXVsdCIsIml0ZW0iLCJuZXdJbmRleCIsIk1hdGgiLCJtYXgiLCJuZXdJbmRleF8wIiwibWluIiwiaGFuZGxlS2V5RG93biIsInQxNCIsInQxNSIsInBvaW50ZXIiLCJ0MTYiLCJ0MTciLCJ0MTgiLCJzbGljZSIsInQxOSIsIml0ZW1fMCIsImluZGV4IiwiaXNDdXJyZW50bHlGb2N1c2VkIiwiaXNUb2dnbGVCdXR0b24iLCJ0MjAiLCJzaXplIiwidDIxIiwidDIyIiwidF8xMCIsInRfNyIsInRfNiIsInRfNCIsInRfMCJdLCJzb3VyY2VzIjpbIlRvb2xTZWxlY3Rvci50c3giXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IGZpZ3VyZXMgZnJvbSAnZmlndXJlcydcbmltcG9ydCBSZWFjdCwgeyB1c2VDYWxsYmFjaywgdXNlTWVtbywgdXNlU3RhdGUgfSBmcm9tICdyZWFjdCdcbmltcG9ydCB7IG1jcEluZm9Gcm9tU3RyaW5nIH0gZnJvbSAnc3JjL3NlcnZpY2VzL21jcC9tY3BTdHJpbmdVdGlscy5qcydcbmltcG9ydCB7IGlzTWNwVG9vbCB9IGZyb20gJ3NyYy9zZXJ2aWNlcy9tY3AvdXRpbHMuanMnXG5pbXBvcnQgdHlwZSB7IFRvb2wsIFRvb2xzIH0gZnJvbSAnc3JjL1Rvb2wuanMnXG5pbXBvcnQgeyBmaWx0ZXJUb29sc0ZvckFnZW50IH0gZnJvbSAnc3JjL3Rvb2xzL0FnZW50VG9vbC9hZ2VudFRvb2xVdGlscy5qcydcbmltcG9ydCB7IEFHRU5UX1RPT0xfTkFNRSB9IGZyb20gJ3NyYy90b29scy9BZ2VudFRvb2wvY29uc3RhbnRzLmpzJ1xuaW1wb3J0IHsgQmFzaFRvb2wgfSBmcm9tICdzcmMvdG9vbHMvQmFzaFRvb2wvQmFzaFRvb2wuanMnXG5pbXBvcnQgeyBFeGl0UGxhbk1vZGVWMlRvb2wgfSBmcm9tICdzcmMvdG9vbHMvRXhpdFBsYW5Nb2RlVG9vbC9FeGl0UGxhbk1vZGVWMlRvb2wuanMnXG5pbXBvcnQgeyBGaWxlRWRpdFRvb2wgfSBmcm9tICdzcmMvdG9vbHMvRmlsZUVkaXRUb29sL0ZpbGVFZGl0VG9vbC5qcydcbmltcG9ydCB7IEZpbGVSZWF
|