Files
openclaw/src/cli/nodes-cli/pairing-render.ts
2026-02-18 01:34:35 +00:00

39 lines
1.3 KiB
TypeScript

import { formatTimeAgo } from "../../infra/format-time/format-relative.ts";
import { renderTable } from "../../terminal/table.js";
import type { PendingRequest } from "./types.js";
export function renderPendingPairingRequestsTable(params: {
pending: PendingRequest[];
now: number;
tableWidth: number;
theme: {
heading: (text: string) => string;
warn: (text: string) => string;
muted: (text: string) => string;
};
}) {
const { pending, now, tableWidth, theme } = params;
const rows = pending.map((r) => ({
Request: r.requestId,
Node: r.displayName?.trim() ? r.displayName.trim() : r.nodeId,
IP: r.remoteIp ?? "",
Requested:
typeof r.ts === "number" ? formatTimeAgo(Math.max(0, now - r.ts)) : theme.muted("unknown"),
Repair: r.isRepair ? theme.warn("yes") : "",
}));
return {
heading: theme.heading("Pending"),
table: renderTable({
width: tableWidth,
columns: [
{ key: "Request", header: "Request", minWidth: 8 },
{ key: "Node", header: "Node", minWidth: 14, flex: true },
{ key: "IP", header: "IP", minWidth: 10 },
{ key: "Requested", header: "Requested", minWidth: 12 },
{ key: "Repair", header: "Repair", minWidth: 6 },
],
rows,
}).trimEnd(),
};
}