Files
gastown/internal/web/templates/convoy.html
Mike Lady d0bdbc4499 feat(dashboard): Always show Refinery Merge Queue section
The Refinery Merge Queue section now displays always, even when idle:
- Shows 'No PRs in queue' message when merge queue is empty
- Displays PR table with number, title, CI status, and mergeable when PRs exist
- Added empty-state-inline CSS for consistent styling

Previously the section was hidden entirely when no PRs existed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 18:18:49 -08:00

459 lines
12 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gas Town Dashboard</title>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<style>
:root {
--bg-dark: #1a1a2e;
--bg-card: #16213e;
--text-primary: #eee;
--text-secondary: #aaa;
--border: #0f3460;
--green: #4ade80;
--yellow: #facc15;
--red: #f87171;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'SF Mono', 'Menlo', 'Monaco', monospace;
background: var(--bg-dark);
color: var(--text-primary);
padding: 20px;
min-height: 100vh;
}
.dashboard {
max-width: 1200px;
margin: 0 auto;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border);
}
h1 {
font-size: 1.5rem;
font-weight: 600;
}
.refresh-info {
color: var(--text-secondary);
font-size: 0.875rem;
}
.convoy-table {
width: 100%;
border-collapse: collapse;
background: var(--bg-card);
border-radius: 8px;
overflow: hidden;
}
.convoy-table th,
.convoy-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid var(--border);
}
.convoy-table th {
background: var(--bg-dark);
font-weight: 500;
color: var(--text-secondary);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.convoy-table tr:last-child td {
border-bottom: none;
}
.convoy-table tr:hover {
background: rgba(255, 255, 255, 0.02);
}
/* Status indicators */
.status-indicator {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
margin-right: 8px;
}
.status-open .status-indicator {
background: var(--yellow);
}
.status-closed .status-indicator {
background: var(--green);
}
/* Work status badges */
.work-status {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
}
.work-complete .work-status {
background: var(--green);
color: var(--bg-dark);
}
.work-active .work-status {
background: var(--green);
color: var(--bg-dark);
}
.work-stale .work-status {
background: var(--yellow);
color: var(--bg-dark);
}
.work-stuck .work-status {
background: var(--red);
color: var(--bg-dark);
}
.work-waiting .work-status {
background: var(--text-secondary);
color: var(--bg-dark);
}
/* Activity colors */
.activity-dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 8px;
}
.activity-green .activity-dot {
background: var(--green);
box-shadow: 0 0 8px var(--green);
}
.activity-yellow .activity-dot {
background: var(--yellow);
box-shadow: 0 0 8px var(--yellow);
}
.activity-red .activity-dot {
background: var(--red);
box-shadow: 0 0 8px var(--red);
}
.activity-unknown .activity-dot {
background: var(--text-secondary);
}
.convoy-id {
font-weight: 500;
color: var(--text-primary);
}
.convoy-title {
color: var(--text-secondary);
margin-left: 8px;
}
.progress {
font-variant-numeric: tabular-nums;
}
.progress-bar {
width: 60px;
height: 4px;
background: var(--border);
border-radius: 2px;
overflow: hidden;
margin-top: 4px;
}
.progress-fill {
height: 100%;
background: var(--green);
border-radius: 2px;
}
.empty-state {
text-align: center;
padding: 48px;
color: var(--text-secondary);
}
.empty-state h2 {
font-size: 1.25rem;
margin-bottom: 8px;
}
.empty-state p {
font-size: 0.875rem;
}
.empty-state-inline {
text-align: center;
padding: 24px;
color: var(--text-secondary);
background: var(--bg-card);
border-radius: 8px;
}
.empty-state-inline p {
font-size: 0.875rem;
margin: 0;
}
.status-hint {
color: var(--text-secondary);
font-size: 0.875rem;
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.section-header {
margin-top: 32px;
margin-bottom: 16px;
font-size: 1.25rem;
font-weight: 600;
}
/* Merge queue colors */
.mq-green {
background: rgba(74, 222, 128, 0.1);
}
.mq-yellow {
background: rgba(250, 204, 21, 0.1);
}
.mq-red {
background: rgba(248, 113, 113, 0.1);
}
.ci-status, .merge-status {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 500;
}
.ci-pass {
background: var(--green);
color: var(--bg-dark);
}
.ci-fail {
background: var(--red);
color: var(--bg-dark);
}
.ci-pending {
background: var(--yellow);
color: var(--bg-dark);
}
.merge-ready {
background: var(--green);
color: var(--bg-dark);
}
.merge-conflict {
background: var(--red);
color: var(--bg-dark);
}
.merge-pending {
background: var(--yellow);
color: var(--bg-dark);
}
.pr-link {
color: var(--text-primary);
text-decoration: none;
}
.pr-link:hover {
text-decoration: underline;
}
.pr-title {
color: var(--text-secondary);
margin-left: 8px;
max-width: 400px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
}
/* htmx loading indicator */
.htmx-request .htmx-indicator {
opacity: 1;
}
.htmx-indicator {
opacity: 0;
transition: opacity 200ms ease-in;
}
</style>
</head>
<body>
<div class="dashboard" hx-get="/" hx-trigger="every 10s" hx-swap="outerHTML">
<header>
<h1>🚚 Gas Town Convoys</h1>
<span class="refresh-info">
Auto-refresh: every 10s
<span class="htmx-indicator"></span>
</span>
</header>
{{if .Convoys}}
<table class="convoy-table">
<thead>
<tr>
<th>Status</th>
<th>Convoy</th>
<th>Progress</th>
<th>Last Activity</th>
</tr>
</thead>
<tbody>
{{range .Convoys}}
<tr class="{{workStatusClass .WorkStatus}}">
<td>
<span class="work-status">{{.WorkStatus}}</span>
</td>
<td>
<span class="convoy-id">{{.ID}}</span>
<span class="convoy-title">{{.Title}}</span>
</td>
<td class="progress">
{{.Progress}}
{{if .Total}}
<div class="progress-bar">
<div class="progress-fill" style="width: {{progressPercent .Completed .Total}}%;"></div>
</div>
{{end}}
</td>
<td class="{{activityClass .LastActivity}}">
<span class="activity-dot"></span>
{{.LastActivity.FormattedAge}}
</td>
</tr>
{{end}}
</tbody>
</table>
{{else}}
<div class="empty-state">
<h2>No convoys found</h2>
<p>Create a convoy with: gt convoy create &lt;name&gt; [issues...]</p>
</div>
{{end}}
<h2 class="section-header">🔀 Refinery Merge Queue</h2>
{{if .MergeQueue}}
<table class="convoy-table">
<thead>
<tr>
<th>PR #</th>
<th>Repo</th>
<th>Title</th>
<th>CI Status</th>
<th>Mergeable</th>
</tr>
</thead>
<tbody>
{{range .MergeQueue}}
<tr class="{{.ColorClass}}">
<td>
<a href="{{.URL}}" target="_blank" class="pr-link">#{{.Number}}</a>
</td>
<td>{{.Repo}}</td>
<td>
<span class="pr-title">{{.Title}}</span>
</td>
<td>
{{if eq .CIStatus "pass"}}
<span class="ci-status ci-pass">✓ Pass</span>
{{else if eq .CIStatus "fail"}}
<span class="ci-status ci-fail">✗ Fail</span>
{{else}}
<span class="ci-status ci-pending">⏳ Pending</span>
{{end}}
</td>
<td>
{{if eq .Mergeable "ready"}}
<span class="merge-status merge-ready">Ready</span>
{{else if eq .Mergeable "conflict"}}
<span class="merge-status merge-conflict">Conflict</span>
{{else}}
<span class="merge-status merge-pending">Pending</span>
{{end}}
</td>
</tr>
{{end}}
</tbody>
</table>
{{else}}
<div class="empty-state-inline">
<p>No PRs in queue</p>
</div>
{{end}}
{{if .Polecats}}
<h2 class="section-header">🐾 Polecat Workers</h2>
<table class="convoy-table">
<thead>
<tr>
<th>Polecat</th>
<th>Rig</th>
<th>Last Activity</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{{range .Polecats}}
<tr>
<td>
<span class="convoy-id">{{.Name}}</span>
</td>
<td>{{.Rig}}</td>
<td class="{{activityClass .LastActivity}}">
<span class="activity-dot"></span>
{{.LastActivity.FormattedAge}}
</td>
<td class="status-hint">{{.StatusHint}}</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
</div>
</body>
</html>