// ***************************************************************************** // Copyright (C) 2025 EclipseSource GmbH. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** import { ChatResponsePartRenderer } from '@theia/ai-chat-ui/lib/browser/chat-response-part-renderer'; import { ResponseNode } from '@theia/ai-chat-ui/lib/browser/chat-tree-view'; import { ChatResponseContent, ToolCallChatResponseContent } from '@theia/ai-chat/lib/common'; import { codicon, LabelProvider } from '@theia/core/lib/browser'; import { URI } from '@theia/core/lib/common/uri'; import { inject, injectable } from '@theia/core/shared/inversify'; import * as React from '@theia/core/shared/react'; import { ReactNode } from '@theia/core/shared/react'; import { WorkspaceService } from '@theia/workspace/lib/browser'; import { ClaudeCodeToolCallChatResponseContent } from '../claude-code-tool-call-content'; import { CollapsibleToolRenderer } from './collapsible-tool-renderer'; import { nls } from '@theia/core'; interface GlobToolInput { pattern: string; path?: string; } @injectable() export class GlobToolRenderer implements ChatResponsePartRenderer { @inject(WorkspaceService) protected readonly workspaceService: WorkspaceService; @inject(LabelProvider) protected readonly labelProvider: LabelProvider; canHandle(response: ChatResponseContent): number { if (ClaudeCodeToolCallChatResponseContent.is(response) && response.name === 'Glob') { return 15; // Higher than default ToolCallPartRenderer (10) } return -1; } render(response: ToolCallChatResponseContent, parentNode: ResponseNode): ReactNode { try { const input = JSON.parse(response.arguments || '{}') as GlobToolInput; return ; } catch (error) { console.warn('Failed to parse Glob tool input:', error); return
{nls.localize('theia/ai/claude-code/failedToParseGlobToolData', 'Failed to parse Glob tool data')}
; } } } const GlobToolComponent: React.FC<{ input: GlobToolInput; workspaceService: WorkspaceService; labelProvider: LabelProvider; }> = ({ input, workspaceService, labelProvider }) => { const getSearchScope = (): string => { if (input.path) { return input.path.split('/').pop() || input.path; } return nls.localize('theia/ai/claude-code/project', 'project'); }; const getWorkspaceRelativePath = async (filePath: string): Promise => { try { const absoluteUri = new URI(filePath); const workspaceRelativePath = await workspaceService.getWorkspaceRelativePath(absoluteUri); return workspaceRelativePath || ''; } catch { return ''; } }; const [relativePath, setRelativePath] = React.useState(''); React.useEffect(() => { if (input.path) { getWorkspaceRelativePath(input.path).then(setRelativePath); } }, [input.path]); const compactHeader = ( <>
{nls.localize('theia/ai/claude-code/finding', 'Finding')} {input.pattern} {nls.localizeByDefault('in {0}', getSearchScope())} {relativePath && {relativePath}}
{nls.localize('theia/ai/claude-code/globPattern', 'glob pattern')}
); const expandedContent = (
{nls.localizeByDefault('Pattern')} {input.pattern}
{nls.localize('theia/ai/claude-code/searchPath', 'Search Path')} {input.path || nls.localize('theia/ai/claude-code/currentDirectory', 'current directory')}
{nls.localizeByDefault('Description')} {input.path ? nls.localize('theia/ai/claude-code/findMatchingFilesWithPath', 'Find files matching the glob pattern "{0}" within {1}', input.pattern, input.path) : nls.localize('theia/ai/claude-code/findMatchingFiles', 'Find files matching the glob pattern "{0}" in the current directory', input.pattern)}
); return ( ); };