mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-18 18:11:02 -07:00
68 lines
2.0 KiB
TypeScript
68 lines
2.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box } from 'ink';
|
|
import { Notifications } from '../components/Notifications.js';
|
|
import { MainContent } from '../components/MainContent.js';
|
|
import { DialogManager } from '../components/DialogManager.js';
|
|
import { Composer } from '../components/Composer.js';
|
|
import { ExitWarning } from '../components/ExitWarning.js';
|
|
import { useUIState } from '../contexts/UIStateContext.js';
|
|
import { useFlickerDetector } from '../hooks/useFlickerDetector.js';
|
|
import { useAlternateBuffer } from '../hooks/useAlternateBuffer.js';
|
|
import { CopyModeWarning } from '../components/CopyModeWarning.js';
|
|
|
|
export const DefaultAppLayout: React.FC = () => {
|
|
const uiState = useUIState();
|
|
const isAlternateBuffer = useAlternateBuffer();
|
|
|
|
const { rootUiRef, terminalHeight } = uiState;
|
|
useFlickerDetector(rootUiRef, terminalHeight);
|
|
// If in alternate buffer mode, need to leave room to draw the scrollbar on
|
|
// the right side of the terminal.
|
|
const width = isAlternateBuffer
|
|
? uiState.terminalWidth
|
|
: uiState.mainAreaWidth;
|
|
return (
|
|
<Box
|
|
flexDirection="column"
|
|
width={width}
|
|
height={isAlternateBuffer ? terminalHeight : undefined}
|
|
paddingBottom={isAlternateBuffer ? 1 : undefined}
|
|
flexShrink={0}
|
|
flexGrow={0}
|
|
overflow="hidden"
|
|
ref={uiState.rootUiRef}
|
|
>
|
|
<MainContent />
|
|
|
|
<Box
|
|
flexDirection="column"
|
|
ref={uiState.mainControlsRef}
|
|
flexShrink={0}
|
|
flexGrow={0}
|
|
>
|
|
<Notifications />
|
|
<CopyModeWarning />
|
|
|
|
{uiState.customDialog ? (
|
|
uiState.customDialog
|
|
) : uiState.dialogsVisible ? (
|
|
<DialogManager
|
|
terminalWidth={uiState.mainAreaWidth}
|
|
addItem={uiState.historyManager.addItem}
|
|
/>
|
|
) : (
|
|
<Composer />
|
|
)}
|
|
|
|
<ExitWarning />
|
|
</Box>
|
|
</Box>
|
|
);
|
|
};
|