mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
94 lines
3.2 KiB
TypeScript
94 lines
3.2 KiB
TypeScript
import type { OverlayModeType } from "./terminal-chat.js";
|
||
import type { TerminalHeaderProps } from "./terminal-header.js";
|
||
import type { GroupedResponseItem } from "./use-message-grouping.js";
|
||
import type { ResponseItem } from "openai/resources/responses/responses.mjs";
|
||
import type { FileOpenerScheme } from "src/utils/config.js";
|
||
|
||
import TerminalChatResponseItem from "./terminal-chat-response-item.js";
|
||
import TerminalHeader from "./terminal-header.js";
|
||
import { Box, Static } from "ink";
|
||
import React, { useMemo } from "react";
|
||
|
||
// A batch entry can either be a standalone response item or a grouped set of
|
||
// items (e.g. auto‑approved tool‑call batches) that should be rendered
|
||
// together.
|
||
type BatchEntry = { item?: ResponseItem; group?: GroupedResponseItem };
|
||
type TerminalMessageHistoryProps = {
|
||
batch: Array<BatchEntry>;
|
||
groupCounts: Record<string, number>;
|
||
items: Array<ResponseItem>;
|
||
userMsgCount: number;
|
||
confirmationPrompt: React.ReactNode;
|
||
loading: boolean;
|
||
thinkingSeconds: number;
|
||
headerProps: TerminalHeaderProps;
|
||
fullStdout: boolean;
|
||
setOverlayMode: React.Dispatch<React.SetStateAction<OverlayModeType>>;
|
||
fileOpener: FileOpenerScheme | undefined;
|
||
};
|
||
|
||
const TerminalMessageHistory: React.FC<TerminalMessageHistoryProps> = ({
|
||
batch,
|
||
headerProps,
|
||
// `loading` and `thinkingSeconds` handled by input component now.
|
||
loading: _loading,
|
||
thinkingSeconds: _thinkingSeconds,
|
||
fullStdout,
|
||
setOverlayMode,
|
||
fileOpener,
|
||
}) => {
|
||
// Flatten batch entries to response items.
|
||
const messages = useMemo(() => batch.map(({ item }) => item!), [batch]);
|
||
|
||
return (
|
||
<Box flexDirection="column">
|
||
{/* The dedicated thinking indicator in the input area now displays the
|
||
elapsed time, so we no longer render a separate counter here. */}
|
||
<Static items={["header", ...messages]}>
|
||
{(item, index) => {
|
||
if (item === "header") {
|
||
return <TerminalHeader key="header" {...headerProps} />;
|
||
}
|
||
|
||
// After the guard above, item is a ResponseItem
|
||
const message = item as ResponseItem;
|
||
// Suppress empty reasoning updates (i.e. items with an empty summary).
|
||
const msg = message as unknown as { summary?: Array<unknown> };
|
||
if (msg.summary?.length === 0) {
|
||
return null;
|
||
}
|
||
return (
|
||
<Box
|
||
key={`${message.id}-${index}`}
|
||
flexDirection="column"
|
||
marginLeft={
|
||
message.type === "message" &&
|
||
(message.role === "user" || message.role === "assistant")
|
||
? 0
|
||
: 4
|
||
}
|
||
marginTop={
|
||
message.type === "message" && message.role === "user" ? 0 : 1
|
||
}
|
||
marginBottom={
|
||
message.type === "message" && message.role === "assistant"
|
||
? 1
|
||
: 0
|
||
}
|
||
>
|
||
<TerminalChatResponseItem
|
||
item={message}
|
||
fullStdout={fullStdout}
|
||
setOverlayMode={setOverlayMode}
|
||
fileOpener={fileOpener}
|
||
/>
|
||
</Box>
|
||
);
|
||
}}
|
||
</Static>
|
||
</Box>
|
||
);
|
||
};
|
||
|
||
export default React.memo(TerminalMessageHistory);
|