qwen-code/packages/webui/src/components/toolcalls/SearchToolCall.tsx
yiliang114 df787fff64 feat(webui): enhance ChatViewer and AssistantMessage with timeline positioning
- Update ChatViewer to calculate and pass timeline positions (isFirst/isLast) to messages
- Enhance AssistantMessage with timeline connector visualization
- Add storybook stories for AssistantMessage component
- Update SearchToolCall and LayoutComponents for improved UI consistency
- Export new adapters in main index file
- Add timeline styling to components

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-01-20 21:33:49 +08:00

193 lines
5.2 KiB
TypeScript

/**
* @license
* Copyright 2025 Qwen Team
* SPDX-License-Identifier: Apache-2.0
*
* Search tool call component - specialized for search operations
*/
import type { FC } from 'react';
import {
safeTitle,
groupContent,
mapToolStatusToContainerStatus,
ToolCallContainer,
} from './shared/index.js';
import type { BaseToolCallProps, ContainerStatus } from './shared/index.js';
import { FileLink } from '../layout/FileLink.js';
/**
* Row component for search card layout
*/
const SearchRow: FC<{ label: string; children: React.ReactNode }> = ({
label,
children,
}) => (
<div className="grid grid-cols-[80px_1fr] gap-medium min-w-0">
<div className="text-xs text-[var(--app-secondary-foreground)] font-medium pt-[2px]">
{label}
</div>
<div className="text-[var(--app-primary-foreground)] min-w-0 break-words">
{children}
</div>
</div>
);
/**
* Card content wrapper for search results
*/
const SearchCardContent: FC<{ children: React.ReactNode }> = ({ children }) => (
<div className="bg-[var(--app-input-background)] border border-[var(--app-input-border)] rounded-md p-3 mt-1">
<div className="flex flex-col gap-3 min-w-0">{children}</div>
</div>
);
/**
* Local locations list component
*/
const LocationsListLocal: FC<{
locations: Array<{ path: string; line?: number | null }>;
}> = ({ locations }) => (
<div className="flex flex-col gap-1 max-w-full">
{locations.map((loc, idx) => (
<FileLink key={idx} path={loc.path} line={loc.line} showFullPath={true} />
))}
</div>
);
/**
* Map tool call kind to appropriate display name
*/
const getDisplayLabel = (kind: string): string => {
const normalizedKind = kind.toLowerCase();
if (normalizedKind === 'grep' || normalizedKind === 'grep_search') {
return 'Grep';
} else if (normalizedKind === 'glob') {
return 'Glob';
} else if (normalizedKind === 'web_search') {
return 'WebSearch';
} else {
return 'Search';
}
};
/**
* Specialized component for Search tool calls
* Optimized for displaying search operations and results
*/
export const SearchToolCall: FC<BaseToolCallProps> = ({
toolCall,
isFirst,
isLast,
}) => {
const { kind, title, content, locations } = toolCall;
const queryText = safeTitle(title);
const displayLabel = getDisplayLabel(kind);
const containerStatus: ContainerStatus = mapToolStatusToContainerStatus(
toolCall.status,
);
// Group content by type
const { errors, textOutputs } = groupContent(content);
// Error case: show search query + error in card layout
if (errors.length > 0) {
return (
<ToolCallContainer
label={displayLabel}
labelSuffix={queryText}
status="error"
isFirst={isFirst}
isLast={isLast}
>
<SearchCardContent>
<SearchRow label="Query">
<div className="font-mono">{queryText}</div>
</SearchRow>
<SearchRow label="Error">
<div className="text-[#c74e39] font-medium">
{errors.join('\n')}
</div>
</SearchRow>
</SearchCardContent>
</ToolCallContainer>
);
}
// Success case with results: show search query + file list
if (locations && locations.length > 0) {
// Multiple results use card layout
if (locations.length > 1) {
return (
<ToolCallContainer
label={displayLabel}
labelSuffix={queryText}
status={containerStatus}
isFirst={isFirst}
isLast={isLast}
>
<SearchCardContent>
<SearchRow label={displayLabel}>
<div className="font-mono">{queryText}</div>
</SearchRow>
<SearchRow label={`Found (${locations.length})`}>
<LocationsListLocal locations={locations} />
</SearchRow>
</SearchCardContent>
</ToolCallContainer>
);
}
// Single result - compact format
return (
<ToolCallContainer
label={displayLabel}
labelSuffix={queryText}
status={containerStatus}
isFirst={isFirst}
isLast={isLast}
>
<LocationsListLocal locations={locations} />
</ToolCallContainer>
);
}
// Show content text if available
if (textOutputs.length > 0) {
return (
<ToolCallContainer
label={displayLabel}
labelSuffix={queryText || undefined}
status={containerStatus}
isFirst={isFirst}
isLast={isLast}
>
<div className="flex flex-col">
{textOutputs.map((text: string, index: number) => (
<div
key={index}
className="inline-flex text-[var(--app-secondary-foreground)] text-[0.85em] opacity-70 mt-[2px] mb-[2px] flex-row items-start w-full gap-1"
>
<span className="flex-shrink-0 relative top-[-0.1em]"></span>
<span className="flex-shrink-0 w-full">{text}</span>
</div>
))}
</div>
</ToolCallContainer>
);
}
// No results - show query only
if (queryText) {
return (
<ToolCallContainer
label={displayLabel}
labelSuffix={queryText}
status={containerStatus}
isFirst={isFirst}
isLast={isLast}
/>
);
}
return null;
};