/** * @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'; import { BackgroundShellDisplay } from '../components/BackgroundShellDisplay.js'; import { StreamingState } from '../types.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. return ( {uiState.isBackgroundShellVisible && uiState.backgroundShells.size > 0 && uiState.activeBackgroundShellPid && uiState.backgroundShellHeight > 0 && uiState.streamingState !== StreamingState.WaitingForConfirmation && ( )} {uiState.customDialog ? ( uiState.customDialog ) : uiState.dialogsVisible ? ( ) : ( )} ); };