98 lines
3.3 KiB
TypeScript
98 lines
3.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import type { HistoryItem } from '../types.js';
|
|
import { UserMessage } from './messages/UserMessage.js';
|
|
import { UserShellMessage } from './messages/UserShellMessage.js';
|
|
import { GeminiMessage } from './messages/GeminiMessage.js';
|
|
import { InfoMessage } from './messages/InfoMessage.js';
|
|
import { ErrorMessage } from './messages/ErrorMessage.js';
|
|
import { ToolGroupMessage } from './messages/ToolGroupMessage.js';
|
|
import { GeminiMessageContent } from './messages/GeminiMessageContent.js';
|
|
import { CompressionMessage } from './messages/CompressionMessage.js';
|
|
import { Box } from 'ink';
|
|
import { AboutBox } from './AboutBox.js';
|
|
import { StatsDisplay } from './StatsDisplay.js';
|
|
import { ModelStatsDisplay } from './ModelStatsDisplay.js';
|
|
import { ToolStatsDisplay } from './ToolStatsDisplay.js';
|
|
import { SessionSummaryDisplay } from './SessionSummaryDisplay.js';
|
|
import { Config } from '@google/gemini-cli-core';
|
|
import { Help } from './Help.js';
|
|
import { SlashCommand } from '../commands/types.js';
|
|
|
|
interface HistoryItemDisplayProps {
|
|
item: HistoryItem;
|
|
availableTerminalHeight?: number;
|
|
terminalWidth: number;
|
|
isPending: boolean;
|
|
config?: Config;
|
|
isFocused?: boolean;
|
|
commands?: readonly SlashCommand[];
|
|
}
|
|
|
|
export const HistoryItemDisplay: React.FC<HistoryItemDisplayProps> = ({
|
|
item,
|
|
availableTerminalHeight,
|
|
terminalWidth,
|
|
isPending,
|
|
config,
|
|
commands,
|
|
isFocused = true,
|
|
}) => (
|
|
<Box flexDirection="column" key={item.id}>
|
|
{/* Render standard message types */}
|
|
{item.type === 'user' && <UserMessage text={item.text} />}
|
|
{item.type === 'user_shell' && <UserShellMessage text={item.text} />}
|
|
{item.type === 'gemini' && (
|
|
<GeminiMessage
|
|
text={item.text}
|
|
isPending={isPending}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
terminalWidth={terminalWidth}
|
|
/>
|
|
)}
|
|
{item.type === 'gemini_content' && (
|
|
<GeminiMessageContent
|
|
text={item.text}
|
|
isPending={isPending}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
terminalWidth={terminalWidth}
|
|
/>
|
|
)}
|
|
{item.type === 'info' && <InfoMessage text={item.text} />}
|
|
{item.type === 'error' && <ErrorMessage text={item.text} />}
|
|
{item.type === 'about' && (
|
|
<AboutBox
|
|
cliVersion={item.cliVersion}
|
|
osVersion={item.osVersion}
|
|
sandboxEnv={item.sandboxEnv}
|
|
modelVersion={item.modelVersion}
|
|
selectedAuthType={item.selectedAuthType}
|
|
gcpProject={item.gcpProject}
|
|
/>
|
|
)}
|
|
{item.type === 'help' && commands && <Help commands={commands} />}
|
|
{item.type === 'stats' && <StatsDisplay duration={item.duration} />}
|
|
{item.type === 'model_stats' && <ModelStatsDisplay />}
|
|
{item.type === 'tool_stats' && <ToolStatsDisplay />}
|
|
{item.type === 'quit' && <SessionSummaryDisplay duration={item.duration} />}
|
|
{item.type === 'tool_group' && (
|
|
<ToolGroupMessage
|
|
toolCalls={item.tools}
|
|
groupId={item.id}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
terminalWidth={terminalWidth}
|
|
config={config}
|
|
isFocused={isFocused}
|
|
/>
|
|
)}
|
|
{item.type === 'compression' && (
|
|
<CompressionMessage compression={item.compression} />
|
|
)}
|
|
</Box>
|
|
);
|