19608bef1b
Host page owns host metadata, full runs table with per-row stage strip, in-flight banner, and empty-state CTA. Run page owns pipeline, active step, logs, sub-steps, spec diffs, and hold banner with a breadcrumb back to the host. Dashboard tile reverts to host-only. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
package templates
|
|
|
|
import (
|
|
"time"
|
|
|
|
"vetting/internal/model"
|
|
)
|
|
|
|
// TileData pairs a host with its latest run and the derived fields the
|
|
// tile needs to render: spec-diff count (server-side diff result) and
|
|
// the on-disk path to the hold-key artifact when the run is holding.
|
|
// LastSeenAt is the host-mode agent's most recent heartbeat.
|
|
type TileData struct {
|
|
Host model.Host
|
|
Latest *model.Run
|
|
SpecDiffCritical int
|
|
HoldKeyPath string
|
|
LastSeenAt *time.Time
|
|
}
|
|
|
|
templ Dashboard(tiles []TileData) {
|
|
@Layout("Dashboard") {
|
|
<section class="dashboard">
|
|
<div class="dashboard-header">
|
|
<h1>Registered hosts</h1>
|
|
<a class="button" href="/hosts/new">Register host</a>
|
|
</div>
|
|
if len(tiles) == 0 {
|
|
<div class="empty">
|
|
<p>No hosts registered yet.</p>
|
|
<a class="button" href="/hosts/new">Register your first host</a>
|
|
</div>
|
|
} else {
|
|
<div class="tile-grid" hx-ext="sse" sse-connect="/events">
|
|
for _, t := range tiles {
|
|
@HostTile(t)
|
|
}
|
|
</div>
|
|
}
|
|
</section>
|
|
}
|
|
}
|