'use strict'; /** * Self-contained control-plane live view page, served at /control-plane. * * Draws the 2D PCA projection of the agent pairs (projection.js) on a canvas, * the lanes and tasks beside it, and the advisory event feed. Polls * /api/control-plane. No external scripts, no framework: it has to work on a * loopback server with a strict CSP and offline. */ function renderControlPlaneViewHtml() { return ` ECC Control Plane

ECC Control Plane

connecting...
clear
traffic advisory (transmit)
resolution advisory (steer)

Events

No events.

Lanes

No tasks.
`; } module.exports = { renderControlPlaneViewHtml };