Files
gemini-cli/packages/cli/src/ui/components/messages/UserMessage.tsx
T

83 lines
2.4 KiB
TypeScript
Raw Normal View History

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import type React from 'react';
import { useMemo } from 'react';
2025-04-15 21:41:08 -07:00
import { Text, Box } from 'ink';
2025-09-10 10:57:07 -07:00
import { theme } from '../../semantic-colors.js';
2025-08-28 20:52:14 +00:00
import { SCREEN_READER_USER_PREFIX } from '../../textConstants.js';
import { isSlashCommand as checkIsSlashCommand } from '../../utils/commandUtils.js';
import {
calculateTransformationsForLine,
calculateTransformedLine,
} from '../shared/text-buffer.js';
import { HalfLinePaddedBox } from '../shared/HalfLinePaddedBox.js';
import { useConfig } from '../../contexts/ConfigContext.js';
2025-04-15 21:41:08 -07:00
interface UserMessageProps {
2025-04-17 18:06:21 -04:00
text: string;
2025-11-11 07:50:11 -08:00
width: number;
2025-04-15 21:41:08 -07:00
}
2025-11-11 07:50:11 -08:00
export const UserMessage: React.FC<UserMessageProps> = ({ text, width }) => {
2025-04-17 18:06:21 -04:00
const prefix = '> ';
const prefixWidth = prefix.length;
const isSlashCommand = checkIsSlashCommand(text);
const config = useConfig();
const useBackgroundColor = config.getUseBackgroundColor();
2025-07-31 16:24:23 -07:00
const textColor = isSlashCommand ? theme.text.accent : theme.text.primary;
2025-04-15 21:41:08 -07:00
const displayText = useMemo(() => {
if (!text) return text;
return text
.split('\n')
.map((line) => {
const transformations = calculateTransformationsForLine(line);
// We pass a cursor position of [-1, -1] so that no transformations are expanded (e.g. images remain collapsed)
const { transformedLine } = calculateTransformedLine(
line,
0, // line index doesn't matter since cursor is [-1, -1]
[-1, -1],
transformations,
);
return transformedLine;
})
.join('\n');
}, [text]);
2025-04-17 18:06:21 -04:00
return (
<HalfLinePaddedBox
backgroundBaseColor={theme.background.message}
backgroundOpacity={1}
useBackgroundColor={useBackgroundColor}
2025-11-11 07:50:11 -08:00
>
<Box
flexDirection="row"
paddingY={0}
marginY={useBackgroundColor ? 0 : 1}
paddingX={useBackgroundColor ? 1 : 0}
alignSelf="flex-start"
width={width}
>
<Box width={prefixWidth} flexShrink={0}>
<Text
color={theme.text.accent}
aria-label={SCREEN_READER_USER_PREFIX}
>
{prefix}
</Text>
</Box>
<Box flexGrow={1}>
<Text wrap="wrap" color={textColor}>
{displayText}
</Text>
</Box>
2025-04-17 18:06:21 -04:00
</Box>
</HalfLinePaddedBox>
2025-04-17 18:06:21 -04:00
);
2025-04-15 21:41:08 -07:00
};