mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 15:40:57 -07:00
28 lines
860 B
TypeScript
28 lines
860 B
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';
|
|
|
|
export const App = () => {
|
|
const uiState = useUIState();
|
|
const isScreenReaderEnabled = useIsScreenReaderEnabled();
|
|
|
|
if (uiState.quittingMessages) {
|
|
return <QuittingDisplay />;
|
|
}
|
|
|
|
return (
|
|
<StreamingContext.Provider value={uiState.streamingState}>
|
|
{isScreenReaderEnabled ? <ScreenReaderAppLayout /> : <DefaultAppLayout />}
|
|
</StreamingContext.Provider>
|
|
);
|
|
};
|