mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-29 07:21:27 -07:00
193 lines
6.5 KiB
TypeScript
193 lines
6.5 KiB
TypeScript
/**
|
||
* @license
|
||
* Copyright 2025 Google LLC
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*/
|
||
|
||
import type React from 'react';
|
||
import { Box, Text } from 'ink';
|
||
import { theme } from '../semantic-colors.js';
|
||
import { shortenPath, tildeifyPath } from '@google/gemini-cli-core';
|
||
import { ConsoleSummaryDisplay } from './ConsoleSummaryDisplay.js';
|
||
import process from 'node:process';
|
||
import path from 'node:path';
|
||
import Gradient from 'ink-gradient';
|
||
import { MemoryUsageDisplay } from './MemoryUsageDisplay.js';
|
||
import { ContextUsageDisplay } from './ContextUsageDisplay.js';
|
||
import { DebugProfiler } from './DebugProfiler.js';
|
||
|
||
import { useTerminalSize } from '../hooks/useTerminalSize.js';
|
||
import { isNarrowWidth } from '../utils/isNarrowWidth.js';
|
||
import { isDevelopment } from '../../utils/installationInfo.js';
|
||
|
||
import { useUIState } from '../contexts/UIStateContext.js';
|
||
import { useConfig } from '../contexts/ConfigContext.js';
|
||
import { useSettings } from '../contexts/SettingsContext.js';
|
||
import { useVimMode } from '../contexts/VimModeContext.js';
|
||
|
||
export const Footer: React.FC = () => {
|
||
const uiState = useUIState();
|
||
const config = useConfig();
|
||
const settings = useSettings();
|
||
const { vimEnabled, vimMode } = useVimMode();
|
||
|
||
const {
|
||
model,
|
||
targetDir,
|
||
debugMode,
|
||
branchName,
|
||
debugMessage,
|
||
corgiMode,
|
||
errorCount,
|
||
showErrorDetails,
|
||
promptTokenCount,
|
||
nightly,
|
||
isTrustedFolder,
|
||
} = {
|
||
model: config.getModel(),
|
||
targetDir: config.getTargetDir(),
|
||
debugMode: config.getDebugMode(),
|
||
branchName: uiState.branchName,
|
||
debugMessage: uiState.debugMessage,
|
||
corgiMode: uiState.corgiMode,
|
||
errorCount: uiState.errorCount,
|
||
showErrorDetails: uiState.showErrorDetails,
|
||
promptTokenCount: uiState.sessionStats.lastPromptTokenCount,
|
||
nightly: uiState.nightly,
|
||
isTrustedFolder: uiState.isTrustedFolder,
|
||
};
|
||
|
||
const showMemoryUsage =
|
||
config.getDebugMode() || settings.merged.ui?.showMemoryUsage || false;
|
||
const hideCWD = settings.merged.ui?.footer?.hideCWD || false;
|
||
const hideSandboxStatus =
|
||
settings.merged.ui?.footer?.hideSandboxStatus || false;
|
||
const hideModelInfo = settings.merged.ui?.footer?.hideModelInfo || false;
|
||
|
||
const { columns: terminalWidth } = useTerminalSize();
|
||
|
||
const isNarrow = isNarrowWidth(terminalWidth);
|
||
|
||
// Adjust path length based on terminal width
|
||
const pathLength = Math.max(20, Math.floor(terminalWidth * 0.4));
|
||
const displayPath = isNarrow
|
||
? path.basename(tildeifyPath(targetDir))
|
||
: shortenPath(tildeifyPath(targetDir), pathLength);
|
||
|
||
const justifyContent = hideCWD && hideModelInfo ? 'center' : 'space-between';
|
||
const displayVimMode = vimEnabled ? vimMode : undefined;
|
||
|
||
const showDebugProfiler = debugMode || isDevelopment;
|
||
|
||
return (
|
||
<Box
|
||
justifyContent={justifyContent}
|
||
width="100%"
|
||
flexDirection={isNarrow ? 'column' : 'row'}
|
||
alignItems={isNarrow ? 'flex-start' : 'center'}
|
||
>
|
||
{(showDebugProfiler || displayVimMode || !hideCWD) && (
|
||
<Box>
|
||
{showDebugProfiler && <DebugProfiler />}
|
||
{displayVimMode && (
|
||
<Text color={theme.text.secondary}>[{displayVimMode}] </Text>
|
||
)}
|
||
{!hideCWD &&
|
||
(nightly ? (
|
||
<Gradient colors={theme.ui.gradient}>
|
||
<Text>
|
||
{displayPath}
|
||
{branchName && <Text> ({branchName}*)</Text>}
|
||
</Text>
|
||
</Gradient>
|
||
) : (
|
||
<Text color={theme.text.link}>
|
||
{displayPath}
|
||
{branchName && (
|
||
<Text color={theme.text.secondary}> ({branchName}*)</Text>
|
||
)}
|
||
</Text>
|
||
))}
|
||
{debugMode && (
|
||
<Text color={theme.status.error}>
|
||
{' ' + (debugMessage || '--debug')}
|
||
</Text>
|
||
)}
|
||
</Box>
|
||
)}
|
||
|
||
{/* Middle Section: Centered Trust/Sandbox Info */}
|
||
{!hideSandboxStatus && (
|
||
<Box
|
||
flexGrow={isNarrow || hideCWD || hideModelInfo ? 0 : 1}
|
||
alignItems="center"
|
||
justifyContent={isNarrow || hideCWD ? 'flex-start' : 'center'}
|
||
display="flex"
|
||
paddingX={isNarrow ? 0 : 1}
|
||
paddingTop={isNarrow ? 1 : 0}
|
||
>
|
||
{isTrustedFolder === false ? (
|
||
<Text color={theme.status.warning}>untrusted</Text>
|
||
) : process.env['SANDBOX'] &&
|
||
process.env['SANDBOX'] !== 'sandbox-exec' ? (
|
||
<Text color="green">
|
||
{process.env['SANDBOX'].replace(/^gemini-(?:cli-)?/, '')}
|
||
</Text>
|
||
) : process.env['SANDBOX'] === 'sandbox-exec' ? (
|
||
<Text color={theme.status.warning}>
|
||
macOS Seatbelt{' '}
|
||
<Text color={theme.text.secondary}>
|
||
({process.env['SEATBELT_PROFILE']})
|
||
</Text>
|
||
</Text>
|
||
) : (
|
||
<Text color={theme.status.error}>
|
||
no sandbox <Text color={theme.text.secondary}>(see /docs)</Text>
|
||
</Text>
|
||
)}
|
||
</Box>
|
||
)}
|
||
|
||
{/* Right Section: Gemini Label and Console Summary */}
|
||
{(!hideModelInfo ||
|
||
showMemoryUsage ||
|
||
corgiMode ||
|
||
(!showErrorDetails && errorCount > 0)) && (
|
||
<Box alignItems="center" paddingTop={isNarrow ? 1 : 0}>
|
||
{!hideModelInfo && (
|
||
<Box alignItems="center">
|
||
<Text color={theme.text.accent}>
|
||
{isNarrow ? '' : ' '}
|
||
{model}{' '}
|
||
<ContextUsageDisplay
|
||
promptTokenCount={promptTokenCount}
|
||
model={model}
|
||
/>
|
||
</Text>
|
||
{showMemoryUsage && <MemoryUsageDisplay />}
|
||
</Box>
|
||
)}
|
||
<Box alignItems="center" paddingLeft={2}>
|
||
{corgiMode && (
|
||
<Text>
|
||
{!hideModelInfo && <Text color={theme.ui.comment}>| </Text>}
|
||
<Text color={theme.status.error}>▼</Text>
|
||
<Text color={theme.text.primary}>(´</Text>
|
||
<Text color={theme.status.error}>ᴥ</Text>
|
||
<Text color={theme.text.primary}>`)</Text>
|
||
<Text color={theme.status.error}>▼ </Text>
|
||
</Text>
|
||
)}
|
||
{!showErrorDetails && errorCount > 0 && (
|
||
<Box>
|
||
{!hideModelInfo && <Text color={theme.ui.comment}>| </Text>}
|
||
<ConsoleSummaryDisplay errorCount={errorCount} />
|
||
</Box>
|
||
)}
|
||
</Box>
|
||
</Box>
|
||
)}
|
||
</Box>
|
||
);
|
||
};
|