mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-14 08:01:02 -07:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type React from 'react';
|
|
import { Box } from 'ink';
|
|
import { ThemedGradient } from './ThemedGradient.js';
|
|
import { shortAsciiLogo, longAsciiLogo, tinyAsciiLogo } from './AsciiArt.js';
|
|
import { getAsciiArtWidth } from '../utils/textUtils.js';
|
|
import { useTerminalSize } from '../hooks/useTerminalSize.js';
|
|
import { useSnowfall } from '../hooks/useSnowfall.js';
|
|
|
|
interface HeaderProps {
|
|
customAsciiArt?: string; // For user-defined ASCII art
|
|
version: string;
|
|
nightly: boolean;
|
|
}
|
|
|
|
export const Header: React.FC<HeaderProps> = ({
|
|
customAsciiArt,
|
|
version,
|
|
nightly,
|
|
}) => {
|
|
const { columns: terminalWidth } = useTerminalSize();
|
|
let displayTitle;
|
|
const widthOfLongLogo = getAsciiArtWidth(longAsciiLogo);
|
|
const widthOfShortLogo = getAsciiArtWidth(shortAsciiLogo);
|
|
|
|
if (customAsciiArt) {
|
|
displayTitle = customAsciiArt;
|
|
} else if (terminalWidth >= widthOfLongLogo) {
|
|
displayTitle = longAsciiLogo;
|
|
} else if (terminalWidth >= widthOfShortLogo) {
|
|
displayTitle = shortAsciiLogo;
|
|
} else {
|
|
displayTitle = tinyAsciiLogo;
|
|
}
|
|
|
|
const artWidth = getAsciiArtWidth(displayTitle);
|
|
const title = useSnowfall(displayTitle);
|
|
|
|
return (
|
|
<Box
|
|
alignItems="flex-start"
|
|
width={artWidth}
|
|
flexShrink={0}
|
|
flexDirection="column"
|
|
>
|
|
<ThemedGradient>{title}</ThemedGradient>
|
|
{nightly && (
|
|
<Box width="100%" flexDirection="row" justifyContent="flex-end">
|
|
<ThemedGradient>v{version}</ThemedGradient>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
};
|