Sprint 2 of autonomous trainer day 2026-05-05. Mistral-implemented through ICM workspace ship-info-aggregator (bootstrapped backend + BDD before hitting price limit at stage 02), Claude-completed for frontend + Playwright + verifier + PR. Backend: - GET /api/info aggregator returning version, commit_short, build_date, uptime_seconds, cache_enabled, healthz_status (single round trip) - Optional cache via existing cache service (X-Cache: HIT/MISS) - BDD scenario @critical covers happy path + version regex; cache scenario kept under @skip @bdd-deferred until BDD harness gains a cache-enabled mode Frontend: - AppFooterView (dumb) + AppFooter (smart wrapper, useFetch) following the HealthDashboard / HealthDashboardView pattern - layouts/default.vue auto-applied via NuxtLayout in app.vue - humaniseUptime helper in utils/ - Playwright tests use route.fulfill mocking (decoupled from dev-proxy infra), assert visible AND content (PR #32 lesson) Docs: - documentation/API.md /api/info entry with schema and rationale - ADR-0026 documents composite endpoint vs separate calls choice Verifier verdict (skill-driven, audit at stage 04): APPROVE_WITH_NITS. Nits: handleInfo is 51 lines (could split into builder + emitter); X-Cache: DISABLED could improve ops clarity. Out-of-scope follow-up: existing tests/e2e/health.spec.ts happy path hits the same dev-proxy infra issue as my footer happy path before mocking. Same fix (server: false + route.fulfill) would apply.
17 lines
670 B
TypeScript
17 lines
670 B
TypeScript
// Convert a duration in seconds to a humanised string like "2h 13m" or "45m 12s".
|
|
// Returns "?" for non-finite or negative input so the UI never renders NaN/empty.
|
|
export function humaniseUptime(seconds: number | null | undefined): string {
|
|
if (seconds == null || !Number.isFinite(seconds) || seconds < 0) return '?'
|
|
|
|
const s = Math.floor(seconds)
|
|
const days = Math.floor(s / 86400)
|
|
const hours = Math.floor((s % 86400) / 3600)
|
|
const minutes = Math.floor((s % 3600) / 60)
|
|
const secs = s % 60
|
|
|
|
if (days > 0) return `${days}d ${hours}h`
|
|
if (hours > 0) return `${hours}h ${minutes}m`
|
|
if (minutes > 0) return `${minutes}m ${secs}s`
|
|
return `${secs}s`
|
|
}
|