collapseTeammateShutdowns.ts
utils/collapseTeammateShutdowns.ts
No strong subsystem tag
56
Lines
1322
Bytes
1
Exports
1
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with general runtime concerns. It contains 56 lines, 1 detected imports, and 1 detected exports.
Important relationships
Detected exports
collapseTeammateShutdowns
Keywords
attachmentrenderablemessagecountmessagesresultisteammateshutdownattachmentpushattachmentmessagetask_statusteammate_shutdown_batch
Detected imports
../types/message.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import type { AttachmentMessage, RenderableMessage } from '../types/message.js'
function isTeammateShutdownAttachment(
msg: RenderableMessage,
): msg is AttachmentMessage {
return (
msg.type === 'attachment' &&
msg.attachment.type === 'task_status' &&
msg.attachment.taskType === 'in_process_teammate' &&
msg.attachment.status === 'completed'
)
}
/**
* Collapses consecutive in-process teammate shutdown task_status attachments
* into a single `teammate_shutdown_batch` attachment with a count.
*/
export function collapseTeammateShutdowns(
messages: RenderableMessage[],
): RenderableMessage[] {
const result: RenderableMessage[] = []
let i = 0
while (i < messages.length) {
const msg = messages[i]!
if (isTeammateShutdownAttachment(msg)) {
let count = 0
while (
i < messages.length &&
isTeammateShutdownAttachment(messages[i]!)
) {
count++
i++
}
if (count === 1) {
result.push(msg)
} else {
result.push({
type: 'attachment',
uuid: msg.uuid,
timestamp: msg.timestamp,
attachment: {
type: 'teammate_shutdown_batch',
count,
},
})
}
} else {
result.push(msg)
i++
}
}
return result
}