mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-12 15:10:59 -07:00
48 lines
1.3 KiB
TypeScript
48 lines
1.3 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 { Footer } from '../components/Footer.js';
|
|
import { ExitWarning } from '../components/ExitWarning.js';
|
|
import { useUIState } from '../contexts/UIStateContext.js';
|
|
import { useFlickerDetector } from '../hooks/useFlickerDetector.js';
|
|
|
|
export const ScreenReaderAppLayout: React.FC = () => {
|
|
const uiState = useUIState();
|
|
const { rootUiRef, terminalHeight } = uiState;
|
|
useFlickerDetector(rootUiRef, terminalHeight);
|
|
|
|
return (
|
|
<Box
|
|
flexDirection="column"
|
|
width="90%"
|
|
height="100%"
|
|
ref={uiState.rootUiRef}
|
|
>
|
|
<Notifications />
|
|
<Footer />
|
|
<Box flexGrow={1} overflow="hidden">
|
|
<MainContent />
|
|
</Box>
|
|
{uiState.dialogsVisible ? (
|
|
<DialogManager
|
|
terminalWidth={uiState.terminalWidth}
|
|
addItem={uiState.historyManager.addItem}
|
|
/>
|
|
) : (
|
|
<Composer isFocused={true} />
|
|
)}
|
|
|
|
<ExitWarning />
|
|
</Box>
|
|
);
|
|
};
|