49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { Box, Text } from 'ink';
|
|
import { type File, type IdeContext } from '@google/gemini-cli-core';
|
|
import { Colors } from '../colors.js';
|
|
import path from 'node:path';
|
|
|
|
interface IDEContextDetailDisplayProps {
|
|
ideContext: IdeContext | undefined;
|
|
}
|
|
|
|
export function IDEContextDetailDisplay({
|
|
ideContext,
|
|
}: IDEContextDetailDisplayProps) {
|
|
const openFiles = ideContext?.workspaceState?.openFiles;
|
|
if (!openFiles || openFiles.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Box
|
|
flexDirection="column"
|
|
marginTop={1}
|
|
borderStyle="round"
|
|
borderColor={Colors.AccentCyan}
|
|
paddingX={1}
|
|
>
|
|
<Text color={Colors.AccentCyan} bold>
|
|
IDE Context (ctrl+e to toggle)
|
|
</Text>
|
|
{openFiles.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>Open files:</Text>
|
|
{openFiles.map((file: File) => (
|
|
<Text key={file.path}>
|
|
- {path.basename(file.path)}
|
|
{file.isActive ? ' (active)' : ''}
|
|
</Text>
|
|
))}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
}
|