summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/LoadingIndicator.tsx
blob: c3865f3e61dc490c58bbf47d4d06c0a39f270148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * @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 { useStreamingContext } from '../contexts/StreamingContext.js';
import { StreamingState } from '../types.js';
import { GeminiRespondingSpinner } from './GeminiRespondingSpinner.js';

interface LoadingIndicatorProps {
  currentLoadingPhrase: string;
  elapsedTime: number;
  rightContent?: React.ReactNode;
}

export const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({
  currentLoadingPhrase,
  elapsedTime,
  rightContent,
}) => {
  const { streamingState } = useStreamingContext();

  if (streamingState === StreamingState.Idle) {
    return null;
  }

  return (
    <Box marginTop={1} paddingLeft={0}>
      <Box marginRight={1}>
        <GeminiRespondingSpinner
          nonRespondingDisplay={
            streamingState === StreamingState.WaitingForConfirmation ? '⠏' : ''
          }
        />
      </Box>
      <Text color={Colors.AccentPurple}>
        {currentLoadingPhrase}
        {streamingState === StreamingState.WaitingForConfirmation
          ? ''
          : ` (esc to cancel, ${elapsedTime}s)`}
      </Text>
      <Box flexGrow={1}>{/* Spacer */}</Box>
      {rightContent && <Box>{rightContent}</Box>}
    </Box>
  );
};