mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 07:30:52 -07:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useEffect, useState } from 'react';
|
|
import { appEvents } from './../../utils/events.js';
|
|
import { Box, Text } from 'ink';
|
|
import { useConfig } from '../contexts/ConfigContext.js';
|
|
import { type McpClient, MCPServerStatus } from '@google/gemini-cli-core';
|
|
import { GeminiSpinner } from './GeminiRespondingSpinner.js';
|
|
|
|
export const ConfigInitDisplay = () => {
|
|
const config = useConfig();
|
|
const [message, setMessage] = useState('Initializing...');
|
|
|
|
useEffect(() => {
|
|
const onChange = (clients?: Map<string, McpClient>) => {
|
|
if (!clients || clients.size === 0) {
|
|
setMessage(`Initializing...`);
|
|
return;
|
|
}
|
|
let connected = 0;
|
|
for (const client of clients.values()) {
|
|
if (client.getStatus() === MCPServerStatus.CONNECTED) {
|
|
connected++;
|
|
}
|
|
}
|
|
setMessage(`Connecting to MCP servers... (${connected}/${clients.size})`);
|
|
};
|
|
|
|
appEvents.on('mcp-client-update', onChange);
|
|
return () => {
|
|
appEvents.off('mcp-client-update', onChange);
|
|
};
|
|
}, [config]);
|
|
|
|
return (
|
|
<Box marginTop={1}>
|
|
<Text>
|
|
<GeminiSpinner /> {message}
|
|
</Text>
|
|
</Box>
|
|
);
|
|
};
|