mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 10:34:35 -07:00
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
/**
|
||
* @license
|
||
* Copyright 2025 Google LLC
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*/
|
||
|
||
import React from 'react';
|
||
import { Box, Text } from 'ink';
|
||
import { Colors } from '../colors.js';
|
||
import { Config } from '@gemini-code/server';
|
||
|
||
interface FooterProps {
|
||
config: Config;
|
||
debugMode: boolean;
|
||
debugMessage: string;
|
||
cliVersion: string;
|
||
geminiMdFileCount: number;
|
||
corgiMode: boolean;
|
||
}
|
||
|
||
export const Footer: React.FC<FooterProps> = ({
|
||
config,
|
||
debugMode,
|
||
debugMessage,
|
||
cliVersion,
|
||
geminiMdFileCount,
|
||
corgiMode,
|
||
}) => (
|
||
<Box marginTop={1}>
|
||
<Box>
|
||
{geminiMdFileCount > 0 && (
|
||
<Text color={Colors.SubtleComment}>
|
||
Using {geminiMdFileCount} GEMINI.md files
|
||
</Text>
|
||
)}
|
||
{debugMode && (
|
||
<Text color={Colors.AccentRed}>
|
||
{debugMessage || ' | Running in debug mode.'}
|
||
</Text>
|
||
)}
|
||
</Box>
|
||
|
||
{/* Middle Section: Centered Sandbox Info */}
|
||
<Box
|
||
flexGrow={1}
|
||
alignItems="center"
|
||
justifyContent="center"
|
||
display="flex"
|
||
>
|
||
{process.env.SANDBOX && process.env.SANDBOX !== 'sandbox-exec' ? (
|
||
<Text color="green">
|
||
{process.env.SANDBOX.replace(/^gemini-(?:code-)?/, '')}
|
||
</Text>
|
||
) : process.env.SANDBOX === 'sandbox-exec' ? (
|
||
<Text color={Colors.AccentYellow}>
|
||
sandbox-exec ({process.env.SEATBELT_PROFILE})
|
||
</Text>
|
||
) : (
|
||
<Text color={Colors.AccentRed}>no sandbox (see README)</Text>
|
||
)}
|
||
</Box>
|
||
|
||
{/* Right Section: Gemini Label */}
|
||
<Box>
|
||
<Text color={Colors.AccentBlue}> {config.getModel()} </Text>
|
||
<Text color={Colors.SubtleComment}>| CLI {cliVersion} </Text>
|
||
{corgiMode && (
|
||
<Text>
|
||
<Text color={Colors.SubtleComment}>| </Text>
|
||
<Text color={Colors.AccentRed}>▼</Text>
|
||
<Text color={Colors.Foreground}>(´</Text>
|
||
<Text color={Colors.AccentRed}>ᴥ</Text>
|
||
<Text color={Colors.Foreground}>`)</Text>
|
||
<Text color={Colors.AccentRed}>▼ </Text>
|
||
</Text>
|
||
)}
|
||
{process.env.GEMINI_SYSTEM_MD && (
|
||
<Text color={Colors.AccentRed}>|⌐■_■|</Text>
|
||
)}
|
||
</Box>
|
||
</Box>
|
||
);
|