mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-18 10:01:29 -07:00
134 lines
3.5 KiB
TypeScript
134 lines
3.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box } from 'ink';
|
|
import type { IndividualToolCallDisplay } from '../../types.js';
|
|
import { StickyHeader } from '../StickyHeader.js';
|
|
import { ToolResultDisplay } from './ToolResultDisplay.js';
|
|
import {
|
|
ToolStatusIndicator,
|
|
ToolInfo,
|
|
TrailingIndicator,
|
|
type TextEmphasis,
|
|
STATUS_INDICATOR_WIDTH,
|
|
isThisShellFocusable as checkIsShellFocusable,
|
|
isThisShellFocused as checkIsShellFocused,
|
|
useFocusHint,
|
|
FocusHint,
|
|
} from './ToolShared.js';
|
|
import { type Config } from '@google/gemini-cli-core';
|
|
import { ShellInputPrompt } from '../ShellInputPrompt.js';
|
|
|
|
export type { TextEmphasis };
|
|
|
|
export interface ToolMessageProps extends IndividualToolCallDisplay {
|
|
availableTerminalHeight?: number;
|
|
terminalWidth: number;
|
|
emphasis?: TextEmphasis;
|
|
renderOutputAsMarkdown?: boolean;
|
|
isFirst: boolean;
|
|
borderColor: string;
|
|
borderDimColor: boolean;
|
|
activeShellPtyId?: number | null;
|
|
embeddedShellFocused?: boolean;
|
|
ptyId?: number;
|
|
config?: Config;
|
|
}
|
|
|
|
export const ToolMessage: React.FC<ToolMessageProps> = ({
|
|
name,
|
|
description,
|
|
resultDisplay,
|
|
status,
|
|
availableTerminalHeight,
|
|
terminalWidth,
|
|
emphasis = 'medium',
|
|
renderOutputAsMarkdown = true,
|
|
isFirst,
|
|
borderColor,
|
|
borderDimColor,
|
|
activeShellPtyId,
|
|
embeddedShellFocused,
|
|
ptyId,
|
|
config,
|
|
progressMessage,
|
|
progressPercent,
|
|
}) => {
|
|
const isThisShellFocused = checkIsShellFocused(
|
|
name,
|
|
status,
|
|
ptyId,
|
|
activeShellPtyId,
|
|
embeddedShellFocused,
|
|
);
|
|
|
|
const isThisShellFocusable = checkIsShellFocusable(name, status, config);
|
|
|
|
const { shouldShowFocusHint } = useFocusHint(
|
|
isThisShellFocusable,
|
|
isThisShellFocused,
|
|
resultDisplay,
|
|
);
|
|
|
|
return (
|
|
// It is crucial we don't replace this <> with a Box because otherwise the
|
|
// sticky header inside it would be sticky to that box rather than to the
|
|
// parent component of this ToolMessage.
|
|
<>
|
|
<StickyHeader
|
|
width={terminalWidth}
|
|
isFirst={isFirst}
|
|
borderColor={borderColor}
|
|
borderDimColor={borderDimColor}
|
|
>
|
|
<ToolStatusIndicator status={status} name={name} />
|
|
<ToolInfo
|
|
name={name}
|
|
status={status}
|
|
description={description}
|
|
emphasis={emphasis}
|
|
progressMessage={progressMessage}
|
|
progressPercent={progressPercent}
|
|
/>
|
|
<FocusHint
|
|
shouldShowFocusHint={shouldShowFocusHint}
|
|
isThisShellFocused={isThisShellFocused}
|
|
/>
|
|
{emphasis === 'high' && <TrailingIndicator />}
|
|
</StickyHeader>
|
|
<Box
|
|
width={terminalWidth}
|
|
borderStyle="round"
|
|
borderColor={borderColor}
|
|
borderDimColor={borderDimColor}
|
|
borderTop={false}
|
|
borderBottom={false}
|
|
borderLeft={true}
|
|
borderRight={true}
|
|
paddingX={1}
|
|
flexDirection="column"
|
|
>
|
|
<ToolResultDisplay
|
|
resultDisplay={resultDisplay}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
terminalWidth={terminalWidth}
|
|
renderOutputAsMarkdown={renderOutputAsMarkdown}
|
|
hasFocus={isThisShellFocused}
|
|
/>
|
|
{isThisShellFocused && config && (
|
|
<Box paddingLeft={STATUS_INDICATOR_WIDTH} marginTop={1}>
|
|
<ShellInputPrompt
|
|
activeShellPtyId={activeShellPtyId ?? null}
|
|
focus={embeddedShellFocused}
|
|
/>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
</>
|
|
);
|
|
};
|