mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-18 18:11:02 -07:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box } from 'ink';
|
|
import { MarkdownDisplay } from '../../utils/MarkdownDisplay.js';
|
|
import { ShowMoreLines } from '../ShowMoreLines.js';
|
|
import { useUIState } from '../../contexts/UIStateContext.js';
|
|
import { useAlternateBuffer } from '../../hooks/useAlternateBuffer.js';
|
|
|
|
interface GeminiMessageContentProps {
|
|
text: string;
|
|
isPending: boolean;
|
|
availableTerminalHeight?: number;
|
|
terminalWidth: number;
|
|
}
|
|
|
|
/*
|
|
* Gemini message content is a semi-hacked component. The intention is to represent a partial
|
|
* of GeminiMessage and is only used when a response gets too long. In that instance messages
|
|
* are split into multiple GeminiMessageContent's to enable the root <Static> component in
|
|
* App.tsx to be as performant as humanly possible.
|
|
*/
|
|
export const GeminiMessageContent: React.FC<GeminiMessageContentProps> = ({
|
|
text,
|
|
isPending,
|
|
availableTerminalHeight,
|
|
terminalWidth,
|
|
}) => {
|
|
const { renderMarkdown } = useUIState();
|
|
const isAlternateBuffer = useAlternateBuffer();
|
|
const originalPrefix = '✦ ';
|
|
const prefixWidth = originalPrefix.length;
|
|
|
|
return (
|
|
<Box flexDirection="column" paddingLeft={prefixWidth}>
|
|
<MarkdownDisplay
|
|
text={text}
|
|
isPending={isPending}
|
|
availableTerminalHeight={
|
|
isAlternateBuffer || availableTerminalHeight === undefined
|
|
? undefined
|
|
: Math.max(availableTerminalHeight - 1, 1)
|
|
}
|
|
terminalWidth={terminalWidth}
|
|
renderMarkdown={renderMarkdown}
|
|
/>
|
|
<Box
|
|
marginTop={isAlternateBuffer ? 0 : 1}
|
|
marginBottom={isAlternateBuffer ? 1 : 0}
|
|
>
|
|
<ShowMoreLines
|
|
constrainHeight={availableTerminalHeight !== undefined}
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|