mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-15 16:41:11 -07:00
38 lines
973 B
TypeScript
38 lines
973 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { Box } from 'ink';
|
|
import { useUIState } from '../contexts/UIStateContext.js';
|
|
import { HistoryItemDisplay } from './HistoryItemDisplay.js';
|
|
import { useTerminalSize } from '../hooks/useTerminalSize.js';
|
|
|
|
export const QuittingDisplay = () => {
|
|
const uiState = useUIState();
|
|
const { rows: terminalHeight, columns: terminalWidth } = useTerminalSize();
|
|
|
|
const availableTerminalHeight = terminalHeight;
|
|
|
|
if (!uiState.quittingMessages) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Box flexDirection="column" marginBottom={1}>
|
|
{uiState.quittingMessages.map((item) => (
|
|
<HistoryItemDisplay
|
|
key={item.id}
|
|
availableTerminalHeight={
|
|
uiState.constrainHeight ? availableTerminalHeight : undefined
|
|
}
|
|
terminalWidth={terminalWidth}
|
|
item={item}
|
|
isPending={false}
|
|
/>
|
|
))}
|
|
</Box>
|
|
);
|
|
};
|