Files
claude-code/src/components/ToolUseLoader.tsx
2026-05-01 21:39:30 +08:00

34 lines
1.2 KiB
TypeScript

import React from 'react';
import { BLACK_CIRCLE } from '../constants/figures.js';
import { Box, Text } from '@anthropic/ink';
import { useBlink } from '../hooks/useBlink.js';
type Props = {
isError: boolean;
isUnresolved: boolean;
shouldAnimate: boolean;
};
export function ToolUseLoader({ isError, isUnresolved, shouldAnimate }: Props): React.ReactNode {
const [ref, isBlinking] = useBlink(shouldAnimate);
const color = isUnresolved ? undefined : isError ? 'error' : 'success';
// WARNING: The code here and in AssistantToolUseMessage is particularly
// sensitive to what *should* just be trivial refactorings. A `<dim>x</dim>`
// followed *immediately* by `<bold>y</bold>` tag incorrectly renders `y` as
// dim! This is because `</dim>` and `</bold>` are both reset by \x1b[22m
// due to historical reasons, and chalk can't distinguish between them.
// The symptom you'll see if we get this wrong is the tool name blinks along
// with this loading indicator, which looks quite bad.
// https://github.com/chalk/chalk/issues/290
return (
<Box ref={ref} minWidth={2}>
<Text color={color} dimColor={isUnresolved}>
{!shouldAnimate || isBlinking || isError || !isUnresolved ? BLACK_CIRCLE : ' '}
</Text>
</Box>
);
}