MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / updateQueueDisplay

Method updateQueueDisplay

apps/kimi-code/src/tui/kimi-tui.ts:2320–2333  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2318 }
2319
2320 updateQueueDisplay(): void {
2321 this.state.queueContainer.clear();
2322 const queued = this.state.queuedMessages;
2323 if (queued.length === 0) return;
2324
2325 this.state.queueContainer.addChild(
2326 new QueuePaneComponent({
2327 messages: queued,
2328 isCompacting: this.state.appState.isCompacting,
2329 isStreaming: this.state.appState.streamingPhase !== 'idle',
2330 canSteerImmediately: !this.deferUserMessages,
2331 }),
2332 );
2333 }
2334
2335 toggleToolOutputExpansion(): void {
2336 this.state.toolOutputExpanded = !this.state.toolOutputExpanded;

Callers 5

handleUserInputMethod · 0.95
drainOneQueuedMessageMethod · 0.95
sendNormalUserInputMethod · 0.95
setAppStateMethod · 0.95
resetSessionRuntimeMethod · 0.95

Calls 2

clearMethod · 0.65
addChildMethod · 0.45

Tested by

no test coverage detected