mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-16 00:51:25 -07:00
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
34 lines
793 B
TypeScript
34 lines
793 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import Spinner from 'ink-spinner';
|
|
import { type ComponentProps, useEffect } from 'react';
|
|
import { debugState } from '../debug.js';
|
|
import { useSettings } from '../contexts/SettingsContext.js';
|
|
|
|
export type SpinnerProps = ComponentProps<typeof Spinner>;
|
|
|
|
export const CliSpinner = (props: SpinnerProps) => {
|
|
const settings = useSettings();
|
|
const shouldShow = settings.merged.ui?.showSpinner !== false;
|
|
|
|
useEffect(() => {
|
|
if (shouldShow) {
|
|
debugState.debugNumAnimatedComponents++;
|
|
return () => {
|
|
debugState.debugNumAnimatedComponents--;
|
|
};
|
|
}
|
|
return undefined;
|
|
}, [shouldShow]);
|
|
|
|
if (!shouldShow) {
|
|
return null;
|
|
}
|
|
|
|
return <Spinner {...props} />;
|
|
};
|