43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import type { StatusbarMenuItem } from '@/app/shell/statusbar-controls'
|
|
|
|
const LOG_TAIL = 5
|
|
|
|
interface RpcEventLike {
|
|
payload?: unknown
|
|
type?: string
|
|
}
|
|
|
|
function asRecord(payload: unknown): Record<string, unknown> {
|
|
return payload && typeof payload === 'object' ? (payload as Record<string, unknown>) : {}
|
|
}
|
|
|
|
export function gatewayEventCompletedFileDiff(event: RpcEventLike): boolean {
|
|
if (event.type !== 'tool.complete') {
|
|
return false
|
|
}
|
|
|
|
const diff = asRecord(event.payload).inline_diff
|
|
|
|
return typeof diff === 'string' && diff.trim().length > 0
|
|
}
|
|
|
|
export function buildGatewayLogItems(lines: readonly string[]): readonly StatusbarMenuItem[] {
|
|
if (lines.length === 0) {
|
|
return [
|
|
{
|
|
className: 'text-muted-foreground',
|
|
disabled: true,
|
|
id: 'gateway-log-empty',
|
|
label: 'No recent gateway log lines'
|
|
}
|
|
]
|
|
}
|
|
|
|
return lines.slice(-LOG_TAIL).map((line, index) => ({
|
|
className: 'font-mono text-[0.68rem] text-muted-foreground',
|
|
disabled: true,
|
|
id: `gateway-log:${index}`,
|
|
label: line.trim().slice(0, 120) || '(blank log line)'
|
|
}))
|
|
}
|