86 lines
2.3 KiB
TypeScript
86 lines
2.3 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 { shortenPath, tildeifyPath, Config } from '@gemini-code/server';
|
||
import { ConsoleSummaryDisplay } from './ConsoleSummaryDisplay.js';
|
||
|
||
interface FooterProps {
|
||
config: Config;
|
||
debugMode: boolean;
|
||
debugMessage: string;
|
||
cliVersion: string;
|
||
corgiMode: boolean;
|
||
errorCount: number;
|
||
showErrorDetails: boolean;
|
||
}
|
||
|
||
export const Footer: React.FC<FooterProps> = ({
|
||
config,
|
||
debugMode,
|
||
debugMessage,
|
||
cliVersion,
|
||
corgiMode,
|
||
errorCount,
|
||
showErrorDetails,
|
||
}) => (
|
||
<Box marginTop={1} justifyContent="space-between" width="100%">
|
||
<Box>
|
||
<Text color={Colors.LightBlue}>
|
||
{shortenPath(tildeifyPath(config.getTargetDir()), 70)}
|
||
</Text>
|
||
{debugMode && (
|
||
<Text color={Colors.AccentRed}>
|
||
{' ' + (debugMessage || '--debug')}
|
||
</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 and Console Summary */}
|
||
<Box alignItems="center">
|
||
<Text color={Colors.AccentBlue}> {config.getModel()} </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>
|
||
)}
|
||
{!showErrorDetails && errorCount > 0 && (
|
||
<Box>
|
||
<Text color={Colors.SubtleComment}>| </Text>
|
||
<ConsoleSummaryDisplay errorCount={errorCount} />
|
||
</Box>
|
||
)}
|
||
</Box>
|
||
</Box>
|
||
);
|