mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-12 23:21:27 -07:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useIsScreenReaderEnabled } from 'ink';
|
|
import { useUIState } from './contexts/UIStateContext.js';
|
|
import { StreamingContext } from './contexts/StreamingContext.js';
|
|
import { QuittingDisplay } from './components/QuittingDisplay.js';
|
|
import { ScreenReaderAppLayout } from './layouts/ScreenReaderAppLayout.js';
|
|
import { DefaultAppLayout } from './layouts/DefaultAppLayout.js';
|
|
import { AlternateBufferQuittingDisplay } from './components/AlternateBufferQuittingDisplay.js';
|
|
import { useAlternateBuffer } from './hooks/useAlternateBuffer.js';
|
|
|
|
export const App = () => {
|
|
const uiState = useUIState();
|
|
const isAlternateBuffer = useAlternateBuffer();
|
|
const isScreenReaderEnabled = useIsScreenReaderEnabled();
|
|
|
|
if (uiState.quittingMessages) {
|
|
if (isAlternateBuffer) {
|
|
return (
|
|
<StreamingContext.Provider value={uiState.streamingState}>
|
|
<AlternateBufferQuittingDisplay />
|
|
</StreamingContext.Provider>
|
|
);
|
|
} else {
|
|
return <QuittingDisplay />;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<StreamingContext.Provider value={uiState.streamingState}>
|
|
{isScreenReaderEnabled ? <ScreenReaderAppLayout /> : <DefaultAppLayout />}
|
|
</StreamingContext.Provider>
|
|
);
|
|
};
|