claude-code/tools/LSPTool/UI.tsx

228 lines
24 KiB
TypeScript
Raw Normal View History

import { c as _c } from "react/compiler-runtime";
import type { ToolResultBlockParam } from '@anthropic-ai/sdk/resources/index.mjs';
import React from 'react';
import { CtrlOToExpand } from '../../components/CtrlOToExpand.js';
import { FallbackToolUseErrorMessage } from '../../components/FallbackToolUseErrorMessage.js';
import { MessageResponse } from '../../components/MessageResponse.js';
import { Box, Text } from '../../ink.js';
import { getDisplayPath } from '../../utils/file.js';
import { extractTag } from '../../utils/messages.js';
import type { Input, Output } from './LSPTool.js';
import { getSymbolAtPosition } from './symbolContext.js';
// Lookup map for operation-specific labels
const OPERATION_LABELS: Record<Input['operation'], {
singular: string;
plural: string;
special?: string;
}> = {
goToDefinition: {
singular: 'definition',
plural: 'definitions'
},
findReferences: {
singular: 'reference',
plural: 'references'
},
documentSymbol: {
singular: 'symbol',
plural: 'symbols'
},
workspaceSymbol: {
singular: 'symbol',
plural: 'symbols'
},
hover: {
singular: 'hover info',
plural: 'hover info',
special: 'available'
},
goToImplementation: {
singular: 'implementation',
plural: 'implementations'
},
prepareCallHierarchy: {
singular: 'call item',
plural: 'call items'
},
incomingCalls: {
singular: 'caller',
plural: 'callers'
},
outgoingCalls: {
singular: 'callee',
plural: 'callees'
}
};
/**
* Reusable component for LSP result summaries with collapsed/expanded views
*/
function LSPResultSummary(t0) {
const $ = _c(24);
const {
operation,
resultCount,
fileCount,
content,
verbose
} = t0;
let t1;
if ($[0] !== operation) {
t1 = OPERATION_LABELS[operation] || {
singular: "result",
plural: "results"
};
$[0] = operation;
$[1] = t1;
} else {
t1 = $[1];
}
const labelConfig = t1;
const countLabel = resultCount === 1 ? labelConfig.singular : labelConfig.plural;
let t2;
if ($[2] !== countLabel || $[3] !== labelConfig.special || $[4] !== operation || $[5] !== resultCount) {
t2 = operation === "hover" && resultCount > 0 && labelConfig.special ? <Text>Hover info {labelConfig.special}</Text> : <Text>Found <Text bold={true}>{resultCount} </Text>{countLabel}</Text>;
$[2] = countLabel;
$[3] = labelConfig.special;
$[4] = operation;
$[5] = resultCount;
$[6] = t2;
} else {
t2 = $[6];
}
const primaryText = t2;
let t3;
if ($[7] !== fileCount) {
t3 = fileCount > 1 ? <Text>{" "}across <Text bold={true}>{fileCount} </Text>files</Text> : null;
$[7] = fileCount;
$[8] = t3;
} else {
t3 = $[8];
}
const secondaryText = t3;
if (verbose) {
let t4;
if ($[9] === Symbol.for("react.memo_cache_sentinel")) {
t4 = <Text dimColor={true}>    </Text>;
$[9] = t4;
} else {
t4 = $[9];
}
let t5;
if ($[10] !== primaryText || $[11] !== secondaryText) {
t5 = <Box flexDirection="row"><Text>{t4}{primaryText}{secondaryText}</Text></Box>;
$[10] = primaryText;
$[11] = secondaryText;
$[12] = t5;
} else {
t5 = $[12];
}
let t6;
if ($[13] !== content) {
t6 = <Box marginLeft={5}><Text>{content}</Text></Box>;
$[13] = content;
$[14] = t6;
} else {
t6 = $[14];
}
let t7;
if ($[15] !== t5 || $[16] !== t6) {
t7 = <Box flexDirection="column">{t5}{t6}</Box>;
$[15] = t5;
$[16] = t6;
$[17] = t7;
} else {
t7 = $[17];
}
return t7;
}
let t4;
if ($[18] !== resultCount) {
t4 = resultCount > 0 && <CtrlOToExpand />;
$[18] = resultCount;
$[19] = t4;
} else {
t4 = $[19];
}
let t5;
if ($[20] !== primaryText || $[21] !== secondaryText || $[22] !== t4) {
t5 = <MessageResponse height={1}><Text>{primaryText}{secondaryText} {t4}</Text></MessageResponse>;
$[20] = primaryText;
$[21] = secondaryText;
$[22] = t4;
$[23] = t5;
} else {
t5 = $[23];
}
return t5;
}
export function userFacingName(): string {
return 'LSP';
}
export function renderToolUseMessage(input: Partial<Input>, {
verbose
}: {
verbose: boolean;
}): React.ReactNode {
if (!input.operation) {
return null;
}
const parts: string[] = [];
// For position-based operations (goToDefinition, findReferences, hover, goToImplementation),
// show the symbol at the position for better context
if ((input.operation === 'goToDefinition' || input.operation === 'findReferences' || input.operation === 'hover' || input.operation === 'goToImplementation') && input.filePath && input.line !== undefined && input.character !== undefined) {
// Convert from 1-based (user input) to 0-based (internal file reading)
const symbol = getSymbolAtPosition(input.filePath, input.line - 1, input.character - 1);
const displayPath = verbose ? input.filePath : getDisplayPath(input.filePath);
if (symbol) {
parts.push(`operation: "${input.operation}"`);
parts.push(`symbol: "${symbol}"`);
parts.push(`in: "${displayPath}"`);
} else {
parts.push(`operation: "${input.operation}"`);
parts.push(`file: "${displayPath}"`);
parts.push(`position: ${input.line}:${input.character}`);
}
return parts.join(', ');
}
// For other operations (documentSymbol, workspaceSymbol),
// show operation and file without position details
parts.push(`operation: "${input.operation}"`);
if (input.filePath) {
const displayPath = verbose ? input.filePath : getDisplayPath(input.filePath);
parts.push(`file: "${displayPath}"`);
}
return parts.join(', ');
}
export function renderToolUseErrorMessage(result: ToolResultBlockParam['content'], {
verbose
}: {
verbose: boolean;
}): React.ReactNode {
if (!verbose && typeof result === 'string' && extractTag(result, 'tool_use_error')) {
return <MessageResponse>
<Text color="error">LSP operation failed</Text>
</MessageResponse>;
}
return <FallbackToolUseErrorMessage result={result} verbose={verbose} />;
}
export function renderToolResultMessage(output: Output, _progressMessages: unknown[], {
verbose
}: {
verbose: boolean;
}): React.ReactNode {
// Use collapsed/expanded view if we have count information
if (output.resultCount !== undefined && output.fileCount !== undefined) {
return <LSPResultSummary operation={output.operation} resultCount={output.resultCount} fileCount={output.fileCount} content={output.result} verbose={verbose} />;
}
// Fallback for error cases where counts aren't available
// (e.g., LSP server initialization failures, request errors)
return <MessageResponse>
<Text>{output.result}</Text>
</MessageResponse>;
}
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJUb29sUmVzdWx0QmxvY2tQYXJhbSIsIlJlYWN0IiwiQ3RybE9Ub0V4cGFuZCIsIkZhbGxiYWNrVG9vbFVzZUVycm9yTWVzc2FnZSIsIk1lc3NhZ2VSZXNwb25zZSIsIkJveCIsIlRleHQiLCJnZXREaXNwbGF5UGF0aCIsImV4dHJhY3RUYWciLCJJbnB1dCIsIk91dHB1dCIsImdldFN5bWJvbEF0UG9zaXRpb24iLCJPUEVSQVRJT05fTEFCRUxTIiwiUmVjb3JkIiwic2luZ3VsYXIiLCJwbHVyYWwiLCJzcGVjaWFsIiwiZ29Ub0RlZmluaXRpb24iLCJmaW5kUmVmZXJlbmNlcyIsImRvY3VtZW50U3ltYm9sIiwid29ya3NwYWNlU3ltYm9sIiwiaG92ZXIiLCJnb1RvSW1wbGVtZW50YXRpb24iLCJwcmVwYXJlQ2FsbEhpZXJhcmNoeSIsImluY29taW5nQ2FsbHMiLCJvdXRnb2luZ0NhbGxzIiwiTFNQUmVzdWx0U3VtbWFyeSIsInQwIiwiJCIsIl9jIiwib3BlcmF0aW9uIiwicmVzdWx0Q291bnQiLCJmaWxlQ291bnQiLCJjb250ZW50IiwidmVyYm9zZSIsInQxIiwibGFiZWxDb25maWciLCJjb3VudExhYmVsIiwidDIiLCJwcmltYXJ5VGV4dCIsInQzIiwic2Vjb25kYXJ5VGV4dCIsInQ0IiwiU3ltYm9sIiwiZm9yIiwidDUiLCJ0NiIsInQ3IiwidXNlckZhY2luZ05hbWUiLCJyZW5kZXJUb29sVXNlTWVzc2FnZSIsImlucHV0IiwiUGFydGlhbCIsIlJlYWN0Tm9kZSIsInBhcnRzIiwiZmlsZVBhdGgiLCJsaW5lIiwidW5kZWZpbmVkIiwiY2hhcmFjdGVyIiwic3ltYm9sIiwiZGlzcGxheVBhdGgiLCJwdXNoIiwiam9pbiIsInJlbmRlclRvb2xVc2VFcnJvck1lc3NhZ2UiLCJyZXN1bHQiLCJyZW5kZXJUb29sUmVzdWx0TWVzc2FnZSIsIm91dHB1dCIsIl9wcm9ncmVzc01lc3NhZ2VzIl0sInNvdXJjZXMiOlsiVUkudHN4Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgVG9vbFJlc3VsdEJsb2NrUGFyYW0gfSBmcm9tICdAYW50aHJvcGljLWFpL3Nkay9yZXNvdXJjZXMvaW5kZXgubWpzJ1xuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0J1xuaW1wb3J0IHsgQ3RybE9Ub0V4cGFuZCB9IGZyb20gJy4uLy4uL2NvbXBvbmVudHMvQ3RybE9Ub0V4cGFuZC5qcydcbmltcG9ydCB7IEZhbGxiYWNrVG9vbFVzZUVycm9yTWVzc2FnZSB9IGZyb20gJy4uLy4uL2NvbXBvbmVudHMvRmFsbGJhY2tUb29sVXNlRXJyb3JNZXNzYWdlLmpzJ1xuaW1wb3J0IHsgTWVzc2FnZVJlc3BvbnNlIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9NZXNzYWdlUmVzcG9uc2UuanMnXG5pbXBvcnQgeyBCb3gsIFRleHQgfSBmcm9tICcuLi8uLi9pbmsuanMnXG5pbXBvcnQgeyBnZXREaXNwbGF5UGF0aCB9IGZyb20gJy4uLy4uL3V0aWxzL2ZpbGUuanMnXG5pbXBvcnQgeyBleHRyYWN0VGFnIH0gZnJvbSAnLi4vLi4vdXRpbHMvbWVzc2FnZXMuanMnXG5pbXBvcnQgdHlwZSB7IElucHV0LCBPdXRwdXQgfSBmcm9tICcuL0xTUFRvb2wuanMnXG5pbXBvcnQgeyBnZXRTeW1ib2xBdFBvc2l0aW9uIH0gZnJvbSAnLi9zeW1ib2xDb250ZXh0LmpzJ1xuXG4vLyBMb29rdXAgbWFwIGZvciBvcGVyYXRpb24tc3BlY2lmaWMgbGFiZWxzXG5jb25zdCBPUEVSQVRJT05fTEFCRUxTOiBSZWNvcmQ8XG4gIElucHV0WydvcGVyYXRpb24nXSxcbiAgeyBzaW5ndWxhcjogc3RyaW5nOyBwbHVyYWw6IHN0cmluZzsgc3BlY2lhbD86IHN0cmluZyB9XG4+ID0ge1xuICBnb1RvRGVmaW5pdGlvbjogeyBzaW5ndWxhcjogJ2RlZmluaXRpb24nLCBwbHVyYWw6ICdkZWZpbml0aW9ucycgfSxcbiAgZmluZFJlZmVyZW5jZXM6IHsgc2luZ3VsYXI6ICdyZWZlcmVuY2UnLCBwbHVyYWw6ICdyZWZlcmVuY2VzJyB9LFxuICBkb2N1bWVudFN5bWJvbDogeyBzaW5ndWxhcjogJ3N5bWJvbCcsIHBsdXJhbDogJ3N5bWJvbHMnIH0sXG4gIHdvcmtzcGFjZVN5bWJvbDogeyBzaW5ndWxhcjogJ3N5bWJvbCcsIHBsdXJhbDogJ3N5bWJvbHMnIH0sXG4gIGhvdmVyOiB7IHNpbmd1bGFyOiAnaG92ZXIgaW5mbycsIHBsdXJhbDogJ2hvdmVyIGluZm8nLCBzcGVjaWFsOiAnYXZhaWxhYmxlJyB9LFxuICBnb1RvSW1wbGVtZW50YXRpb246IHsgc2luZ3VsYXI6ICdpbXBsZW1lbnRhdGlvbicsIHBsdXJhbDogJ2ltcGxlbWVudGF0aW9ucycgfSxcbiAgcHJlcGFyZUNhbGxIaWVyYXJjaHk6IHsgc2luZ3VsYXI6ICdjYWxsIGl0ZW0nLCBwbHVyYWw6ICdjYWxsIGl0ZW1zJyB9LFxuICBpbmNvbWluZ0NhbGxzOiB7IHNpbmd1bGFyOiAnY2FsbGVyJywgcGx1cmFsOiAnY2FsbGVycycgfSxcbiAgb3V0Z29pbmdDYWxsczogeyBzaW5ndWxhcjogJ2NhbGxlZScsIHBsdXJhbDogJ2NhbGxlZXMnIH0sXG59XG5cbi8qKlxuICogUmV1c2FibGUgY29tcG9uZW50IGZvciBMU1AgcmVzdWx0IHN1bW1hcmllcyB3aXRoIGNvbGxhcHNlZC9leHBhbmRlZCB2aWV3c1xuICovXG5mdW5jdGlvbiBMU1BSZXN1bHRTdW1tYXJ5KHtcbiAgb3BlcmF0aW9uLFxuICByZXN1bHRDb3VudCxcbiAgZmlsZUNvdW50LFxuICBjb250ZW50LFxuICB2ZXJib3NlLFxufToge1xuICBvcGVyYXRpb246IElucHV0WydvcGVyYXRpb24nXVxuICByZXN1bHRDb3VudDogbnVtYmVyXG4gIGZpbGVDb3VudDogbnVtYmVyXG4gIGNvbnRlbnQ6IHN0cmluZ1xuICB2ZXJib3NlOiBib29sZWFuXG59KTogUmVhY3QuUmVhY3ROb2RlIHtcbiAgLy8gR2V0IGxhYmVsIGNvbmZpZ3VyYXRpb24gZm9yIHRoaXMgb3BlcmF0aW9uXG4gIGNvbnN0IGxhYmVsQ29uZmlnID0gT1BFUkFUSU9OX0xBQkVMU1tvcGVyYXRpb25dIHx8IHtcbiAgICBzaW5ndWxhcjogJ3Jlc3VsdCcsXG4gICAgcGx1cmFsOiAncmVzdWx0cycsXG4gIH1cbiAgY29uc3QgY291bnRMYWJlbCA9XG4gICAgcmVzdWx0Q291bnQgPT09IDEgPyBsYWJlbENvbmZpZy5zaW5ndWxhciA6IGxhYmVsQ29uZmlnLnBsdXJhbFxuXG4gIGNvbnN0IHByaW1hcnlUZXh0ID1cbiAgICBvcGVyYXRpb24gPT09ICdob3ZlcicgJiYgcmVzdWx0Q291bnQgPiAwICYmIGxhYmVsQ29uZmlnLnNwZWNpYWwgPyAoXG4gICAgICA8VGV4dD5Ib3ZlciBpbmZvIHtsYWJlbENvbmZpZy5zcGVjaWFsfTwvVGV4dD5