mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 16:46:58 +10:00
117 lines
19 KiB
TypeScript
117 lines
19 KiB
TypeScript
|
|
import { feature } from 'bun:bundle';
|
||
|
|
import * as React from 'react';
|
||
|
|
import { useMemo } from 'react';
|
||
|
|
import { Box } from 'src/ink.js';
|
||
|
|
import { useAppState } from 'src/state/AppState.js';
|
||
|
|
import { STATUS_TAG, SUMMARY_TAG, TASK_NOTIFICATION_TAG } from '../../constants/xml.js';
|
||
|
|
import { QueuedMessageProvider } from '../../context/QueuedMessageContext.js';
|
||
|
|
import { useCommandQueue } from '../../hooks/useCommandQueue.js';
|
||
|
|
import type { QueuedCommand } from '../../types/textInputTypes.js';
|
||
|
|
import { isQueuedCommandVisible } from '../../utils/messageQueueManager.js';
|
||
|
|
import { createUserMessage, EMPTY_LOOKUPS, normalizeMessages } from '../../utils/messages.js';
|
||
|
|
import { jsonParse } from '../../utils/slowOperations.js';
|
||
|
|
import { Message } from '../Message.js';
|
||
|
|
const EMPTY_SET = new Set<string>();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Check if a command value is an idle notification that should be hidden.
|
||
|
|
* Idle notifications are processed silently without showing to the user.
|
||
|
|
*/
|
||
|
|
function isIdleNotification(value: string): boolean {
|
||
|
|
try {
|
||
|
|
const parsed = jsonParse(value);
|
||
|
|
return parsed?.type === 'idle_notification';
|
||
|
|
} catch {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Maximum number of task notification lines to show
|
||
|
|
const MAX_VISIBLE_NOTIFICATIONS = 3;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a synthetic overflow notification message for capped task notifications.
|
||
|
|
*/
|
||
|
|
function createOverflowNotificationMessage(count: number): string {
|
||
|
|
return `<${TASK_NOTIFICATION_TAG}>
|
||
|
|
<${SUMMARY_TAG}>+${count} more tasks completed</${SUMMARY_TAG}>
|
||
|
|
<${STATUS_TAG}>completed</${STATUS_TAG}>
|
||
|
|
</${TASK_NOTIFICATION_TAG}>`;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Process queued commands to cap task notifications at MAX_VISIBLE_NOTIFICATIONS lines.
|
||
|
|
* Other command types are always shown in full.
|
||
|
|
* Idle notifications are filtered out entirely.
|
||
|
|
*/
|
||
|
|
function processQueuedCommands(queuedCommands: QueuedCommand[]): QueuedCommand[] {
|
||
|
|
// Filter out idle notifications - they are processed silently
|
||
|
|
const filteredCommands = queuedCommands.filter(cmd => typeof cmd.value !== 'string' || !isIdleNotification(cmd.value));
|
||
|
|
|
||
|
|
// Separate task notifications from other commands
|
||
|
|
const taskNotifications = filteredCommands.filter(cmd => cmd.mode === 'task-notification');
|
||
|
|
const otherCommands = filteredCommands.filter(cmd => cmd.mode !== 'task-notification');
|
||
|
|
|
||
|
|
// If notifications fit within limit, return all commands as-is
|
||
|
|
if (taskNotifications.length <= MAX_VISIBLE_NOTIFICATIONS) {
|
||
|
|
return [...otherCommands, ...taskNotifications];
|
||
|
|
}
|
||
|
|
|
||
|
|
// Show first (MAX_VISIBLE_NOTIFICATIONS - 1) notifications, then a summary
|
||
|
|
const visibleNotifications = taskNotifications.slice(0, MAX_VISIBLE_NOTIFICATIONS - 1);
|
||
|
|
const overflowCount = taskNotifications.length - (MAX_VISIBLE_NOTIFICATIONS - 1);
|
||
|
|
|
||
|
|
// Create synthetic overflow message
|
||
|
|
const overflowCommand: QueuedCommand = {
|
||
|
|
value: createOverflowNotificationMessage(overflowCount),
|
||
|
|
mode: 'task-notification'
|
||
|
|
};
|
||
|
|
return [...otherCommands, ...visibleNotifications, overflowCommand];
|
||
|
|
}
|
||
|
|
function PromptInputQueuedCommandsImpl(): React.ReactNode {
|
||
|
|
const queuedCommands = useCommandQueue();
|
||
|
|
const viewingAgent = useAppState(s => !!s.viewingAgentTaskId);
|
||
|
|
// Brief layout: dim queue items + skip the paddingX (brief messages
|
||
|
|
// already indent themselves). Gate mirrors the brief-spinner/message
|
||
|
|
// check elsewhere — no teammate-view override needed since this
|
||
|
|
// component early-returns when viewing a teammate.
|
||
|
|
const useBriefLayout = feature('KAIROS') || feature('KAIROS_BRIEF') ?
|
||
|
|
// biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
||
|
|
useAppState(s_0 => s_0.isBriefOnly) : false;
|
||
|
|
|
||
|
|
// createUserMessage mints a fresh UUID per call; without memoization, streaming
|
||
|
|
// re-renders defeat Message's areMessagePropsEqual (compares uuid) → flicker.
|
||
|
|
const messages = useMemo(() => {
|
||
|
|
if (queuedCommands.length === 0) return null;
|
||
|
|
// task-notification is shown via useInboxNotification; most isMeta commands
|
||
|
|
// (scheduled tasks, proactive ticks) are system-generated and hidden.
|
||
|
|
// Channel messages are the exception — isMeta but shown so the keyboard
|
||
|
|
// user sees what arrived.
|
||
|
|
const visibleCommands = queuedCommands.filter(isQueuedCommandVisible);
|
||
|
|
if (visibleCommands.length === 0) return null;
|
||
|
|
const processedCommands = processQueuedCommands(visibleCommands);
|
||
|
|
return normalizeMessages(processedCommands.map(cmd => {
|
||
|
|
let content = cmd.value;
|
||
|
|
if (cmd.mode === 'bash' && typeof content === 'string') {
|
||
|
|
content = `<bash-input>${content}</bash-input>`;
|
||
|
|
}
|
||
|
|
// [Image #N] placeholders are inline in the text value (inserted at
|
||
|
|
// paste time), so the queue preview shows them without stub blocks.
|
||
|
|
return createUserMessage({
|
||
|
|
content
|
||
|
|
});
|
||
|
|
}));
|
||
|
|
}, [queuedCommands]);
|
||
|
|
|
||
|
|
// Don't show leader's queued commands when viewing any agent's transcript
|
||
|
|
if (viewingAgent || messages === null) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
return <Box marginTop={1} flexDirection="column">
|
||
|
|
{messages.map((message, i) => <QueuedMessageProvider key={i} isFirst={i === 0} useBriefLayout={useBriefLayout}>
|
||
|
|
<Message message={message} lookups={EMPTY_LOOKUPS} addMargin={false} tools={[]} commands={[]} verbose={false} inProgressToolUseIDs={EMPTY_SET} progressMessagesForMessage={[]} shouldAnimate={false} shouldShowDot={false} isTranscriptMode={false} isStatic={true} />
|
||
|
|
</QueuedMessageProvider>)}
|
||
|
|
</Box>;
|
||
|
|
}
|
||
|
|
export const PromptInputQueuedCommands = React.memo(PromptInputQueuedCommandsImpl);
|
||
|
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJmZWF0dXJlIiwiUmVhY3QiLCJ1c2VNZW1vIiwiQm94IiwidXNlQXBwU3RhdGUiLCJTVEFUVVNfVEFHIiwiU1VNTUFSWV9UQUciLCJUQVNLX05PVElGSUNBVElPTl9UQUciLCJRdWV1ZWRNZXNzYWdlUHJvdmlkZXIiLCJ1c2VDb21tYW5kUXVldWUiLCJRdWV1ZWRDb21tYW5kIiwiaXNRdWV1ZWRDb21tYW5kVmlzaWJsZSIsImNyZWF0ZVVzZXJNZXNzYWdlIiwiRU1QVFlfTE9PS1VQUyIsIm5vcm1hbGl6ZU1lc3NhZ2VzIiwianNvblBhcnNlIiwiTWVzc2FnZSIsIkVNUFRZX1NFVCIsIlNldCIsImlzSWRsZU5vdGlmaWNhdGlvbiIsInZhbHVlIiwicGFyc2VkIiwidHlwZSIsIk1BWF9WSVNJQkxFX05PVElGSUNBVElPTlMiLCJjcmVhdGVPdmVyZmxvd05vdGlmaWNhdGlvbk1lc3NhZ2UiLCJjb3VudCIsInByb2Nlc3NRdWV1ZWRDb21tYW5kcyIsInF1ZXVlZENvbW1hbmRzIiwiZmlsdGVyZWRDb21tYW5kcyIsImZpbHRlciIsImNtZCIsInRhc2tOb3RpZmljYXRpb25zIiwibW9kZSIsIm90aGVyQ29tbWFuZHMiLCJsZW5ndGgiLCJ2aXNpYmxlTm90aWZpY2F0aW9ucyIsInNsaWNlIiwib3ZlcmZsb3dDb3VudCIsIm92ZXJmbG93Q29tbWFuZCIsIlByb21wdElucHV0UXVldWVkQ29tbWFuZHNJbXBsIiwiUmVhY3ROb2RlIiwidmlld2luZ0FnZW50IiwicyIsInZpZXdpbmdBZ2VudFRhc2tJZCIsInVzZUJyaWVmTGF5b3V0IiwiaXNCcmllZk9ubHkiLCJtZXNzYWdlcyIsInZpc2libGVDb21tYW5kcyIsInByb2Nlc3NlZENvbW1hbmRzIiwibWFwIiwiY29udGVudCIsIm1lc3NhZ2UiLCJpIiwiUHJvbXB0SW5wdXRRdWV1ZWRDb21tYW5kcyIsIm1lbW8iXSwic291cmNlcyI6WyJQcm9tcHRJbnB1dFF1ZXVlZENvbW1hbmRzLnRzeCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBmZWF0dXJlIH0gZnJvbSAnYnVuOmJ1bmRsZSdcbmltcG9ydCAqIGFzIFJlYWN0IGZyb20gJ3JlYWN0J1xuaW1wb3J0IHsgdXNlTWVtbyB9IGZyb20gJ3JlYWN0J1xuaW1wb3J0IHsgQm94IH0gZnJvbSAnc3JjL2luay5qcydcbmltcG9ydCB7IHVzZUFwcFN0YXRlIH0gZnJvbSAnc3JjL3N0YXRlL0FwcFN0YXRlLmpzJ1xuaW1wb3J0IHtcbiAgU1RBVFVTX1RBRyxcbiAgU1VNTUFSWV9UQUcsXG4gIFRBU0tfTk9USUZJQ0FUSU9OX1RBRyxcbn0gZnJvbSAnLi4vLi4vY29uc3RhbnRzL3htbC5qcydcbmltcG9ydCB7IFF1ZXVlZE1lc3NhZ2VQcm92aWRlciB9IGZyb20gJy4uLy4uL2NvbnRleHQvUXVldWVkTWVzc2FnZUNvbnRleHQuanMnXG5pbXBvcnQgeyB1c2VDb21tYW5kUXVldWUgfSBmcm9tICcuLi8uLi9ob29rcy91c2VDb21tYW5kUXVldWUuanMnXG5pbXBvcnQgdHlwZSB7IFF1ZXVlZENvbW1hbmQgfSBmcm9tICcuLi8uLi90eXBlcy90ZXh0SW5wdXRUeXBlcy5qcydcbmltcG9ydCB7IGlzUXVldWVkQ29tbWFuZFZpc2libGUgfSBmcm9tICcuLi8uLi91dGlscy9tZXNzYWdlUXVldWVNYW5hZ2VyLmpzJ1xuaW1wb3J0IHtcbiAgY3JlYXRlVXNlck1lc3NhZ2UsXG4gIEVNUFRZX0xPT0tVUFMsXG4gIG5vcm1hbGl6ZU1lc3NhZ2VzLFxufSBmcm9tICcuLi8uLi91dGlscy9tZXNzYWdlcy5qcydcbmltcG9ydCB7IGpzb25QYXJzZSB9IGZyb20gJy4uLy4uL3V0aWxzL3Nsb3dPcGVyYXRpb25zLmpzJ1xuaW1wb3J0IHsgTWVzc2FnZSB9IGZyb20gJy4uL01lc3NhZ2UuanMnXG5cbmNvbnN0IEVNUFRZX1NFVCA9IG5ldyBTZXQ8c3RyaW5nPigpXG5cbi8qKlxuICogQ2hlY2sgaWYgYSBjb21tYW5kIHZhbHVlIGlzIGFuIGlkbGUgbm90aWZpY2F0aW9uIHRoYXQgc2hvdWxkIGJlIGhpZGRlbi5cbiAqIElkbGUgbm90aWZpY2F0aW9ucyBhcmUgcHJvY2Vzc2VkIHNpbGVudGx5IHdpdGhvdXQgc2hvd2luZyB0byB0aGUgdXNlci5cbiAqL1xuZnVuY3Rpb24gaXNJZGxlTm90aWZpY2F0aW9uKHZhbHVlOiBzdHJpbmcpOiBib29sZWFuIHtcbiAgdHJ5IHtcbiAgICBjb25zdCBwYXJzZWQgPSBqc29uUGFyc2UodmFsdWUpXG4gICAgcmV0dXJuIHBhcnNlZD8udHlwZSA9PT0gJ2lkbGVfbm90aWZpY2F0aW9uJ1xuICB9IGNhdGNoIHtcbiAgICByZXR1cm4gZmFsc2VcbiAgfVxufVxuXG4vLyBNYXhpbXVtIG51bWJlciBvZiB0YXNrIG5vdGlmaWNhdGlvbiBsaW5lcyB0byBzaG93XG5jb25zdCBNQVhfVklTSUJMRV9OT1RJRklDQVRJT05TID0gM1xuXG4vKipcbiAqIENyZWF0ZSBhIHN5bnRoZXRpYyBvdmVyZmxvdyBub3RpZmljYXRpb24gbWVzc2FnZSBmb3IgY2FwcGVkIHRhc2sgbm90aWZpY2F0aW9ucy5cbiAqL1xuZnVuY3Rpb24gY3JlYXRlT3ZlcmZsb3dOb3RpZmljYXRpb25NZXNzYWdlKGNvdW50OiBudW1iZXIpOiBzdHJpbmcge1xuICByZXR1cm4gYDwke1RBU0tfTk9USUZJQ0FUSU9OX1RBR30+XG48JHtTVU1NQVJZX1RBR30+KyR7Y291bnR9IG1vcmUgdGFza3MgY29tcGxldGVkPC8ke1NVTU1BUllfVEFHfT5cbjwke1NUQVRVU19UQUd9PmNvbXBsZXRlZDwvJHtTVEFUVVNfVEFHfT5cbjwvJHtUQVNLX05PVElGSUNBVElPTl9UQUd9PmBcbn1cblxuLyoqXG4gKiBQcm9jZXNzIHF1ZXVlZCBjb21tYW5kcyB0byBjYXAgdGFzayBub3RpZmljYXRpb25zIGF0IE1BWF9WSVNJQkxFX05PVElGSUNBVElPTlMgbGluZXMuXG4gKiBPdGhlciBjb21tYW5kIHR5cGVzIGFyZSBhbHdheXMgc2hvd24gaW4gZnVsbC5cbiAqIElkbGUgbm90aWZpY2F0aW9ucyBhcmUgZmlsdGVyZWQgb3V0IGVudGlyZWx5LlxuICovXG5mdW5jdGlvbiBwcm9jZXNzUXVldWVkQ29tbWFuZHMoXG4gIHF1ZXVlZENvbW1hbmRzOiBRdWV1ZWRDb21tYW5kW10sXG4pOiBRdWV1ZWRDb21tYW5kW10ge1xuICAvLyBGaWx0ZXIgb3V0IGlkbGUgbm90aWZpY2F0aW9ucyAtIHRoZXkgYXJlIHByb2Nlc3NlZCBzaWxlbnRseVxuICBjb25zdCBmaWx0ZXJlZENvbW1hbmRzID0gcXVldWVkQ29tbWFuZHMuZmlsdGVyKFxuICAgIGNtZCA9PiB0eXBlb2YgY21kLnZhbHVlICE9PSAnc3RyaW5nJyB8fCAhaXNJZGxlTm90aWZpY2F0aW9uKGNtZC52YWx1ZSksXG4gIClcblxuICAvLyBTZXBhcmF0ZSB
|