mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-20 19:11:23 -07:00
62 lines
1.4 KiB
TypeScript
62 lines
1.4 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;
|
|
queryLength: number;
|
|
debugMode: boolean;
|
|
debugMessage: string;
|
|
cliVersion: string;
|
|
}
|
|
|
|
export const Footer: React.FC<FooterProps> = ({
|
|
config,
|
|
queryLength,
|
|
debugMode,
|
|
debugMessage,
|
|
cliVersion,
|
|
}) => (
|
|
<Box marginTop={1} display="flex" justifyContent="space-between" width="100%">
|
|
{/* Left Section: Help/DebugMode */}
|
|
<Box>
|
|
<Text color={Colors.SubtleComment}>
|
|
{queryLength === 0 ? '? for shortcuts' : ''}
|
|
{debugMode && (
|
|
<Text color={Colors.AccentRed}>
|
|
{' '}
|
|
{debugMessage || 'Running in debug mode.'}
|
|
</Text>
|
|
)}
|
|
</Text>
|
|
</Box>
|
|
|
|
{/* Middle Section: Centered Sandbox Info */}
|
|
<Box
|
|
flexGrow={1}
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
display="flex"
|
|
>
|
|
{process.env.SANDBOX ? (
|
|
<Text color="green"> {process.env.SANDBOX} </Text>
|
|
) : (
|
|
<Text color={Colors.AccentRed}> WARNING: OUTSIDE SANDBOX </Text>
|
|
)}
|
|
</Box>
|
|
|
|
{/* Right Section: Gemini Label */}
|
|
<Box>
|
|
<Text color={Colors.AccentBlue}> {config.getModel()} </Text>
|
|
<Text color={Colors.SubtleComment}>| CLI {cliVersion} </Text>
|
|
</Box>
|
|
</Box>
|
|
);
|