feat(accessibility): implement centralized screen reader layout system (#8155)

This commit is contained in:
Victor Tsaran
2025-09-23 11:04:49 -07:00
committed by GitHub
parent f46e50b271
commit bfd904bfc8
10 changed files with 348 additions and 64 deletions
@@ -0,0 +1,48 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type React from 'react';
import { Box, Text } 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 { useUIState } from '../contexts/UIStateContext.js';
import { useFooterProps } from '../hooks/useFooterProps.js';
import { theme } from '../semantic-colors.js';
export const ScreenReaderAppLayout: React.FC = () => {
const uiState = useUIState();
const footerProps = useFooterProps();
return (
<Box flexDirection="column" width="90%" height="100%">
<Notifications />
<Footer {...footerProps} />
<Box flexGrow={1} overflow="hidden">
<MainContent />
</Box>
{uiState.dialogsVisible ? (
<DialogManager addItem={uiState.historyManager.addItem} />
) : (
<Composer />
)}
{uiState.dialogsVisible && uiState.ctrlDPressedOnce && (
<Box marginTop={1}>
<Text color={theme.status.warning}>Press Ctrl+C again to exit.</Text>
</Box>
)}
{uiState.dialogsVisible && uiState.ctrlDPressedOnce && (
<Box marginTop={1}>
<Text color={theme.status.warning}>Press Ctrl+D again to exit.</Text>
</Box>
)}
</Box>
);
};