mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
Related to https://b.corp.google.com/issues/423605555 - I figured this might be a simpler solution to start with, while still also being useful on its own even if we do implement that.
90 lines
2.8 KiB
TypeScript
90 lines
2.8 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 { SessionSummaryDisplay } from './SessionSummaryDisplay.js';
|
|
import { Config } from '@gemini-cli/core';
|
|
|
|
interface HistoryItemDisplayProps {
|
|
item: HistoryItem;
|
|
availableTerminalHeight: number;
|
|
isPending: boolean;
|
|
config?: Config;
|
|
isFocused?: boolean;
|
|
}
|
|
|
|
export const HistoryItemDisplay: React.FC<HistoryItemDisplayProps> = ({
|
|
item,
|
|
availableTerminalHeight,
|
|
isPending,
|
|
config,
|
|
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}
|
|
/>
|
|
)}
|
|
{item.type === 'gemini_content' && (
|
|
<GeminiMessageContent
|
|
text={item.text}
|
|
isPending={isPending}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
/>
|
|
)}
|
|
{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}
|
|
/>
|
|
)}
|
|
{item.type === 'stats' && (
|
|
<StatsDisplay
|
|
stats={item.stats}
|
|
lastTurnStats={item.lastTurnStats}
|
|
duration={item.duration}
|
|
/>
|
|
)}
|
|
{item.type === 'quit' && (
|
|
<SessionSummaryDisplay stats={item.stats} duration={item.duration} />
|
|
)}
|
|
{item.type === 'tool_group' && (
|
|
<ToolGroupMessage
|
|
toolCalls={item.tools}
|
|
groupId={item.id}
|
|
availableTerminalHeight={availableTerminalHeight}
|
|
config={config}
|
|
isFocused={isFocused}
|
|
/>
|
|
)}
|
|
{item.type === 'compression' && (
|
|
<CompressionMessage compression={item.compression} />
|
|
)}
|
|
</Box>
|
|
);
|