Add Vercel-style deployment dashboard

- Add /deployments/[uuid] route with detailed deployment view
- Add DeploymentDashboard component with tabs (Deployment, Logs, Resources, Source)
- Add real-time health/stats via SWR with 10s polling
- Add Docker API helpers (health, stats, uptime) via SSH
- Add redeploy action endpoint and button
- Add expand button to table for inline log viewing
- Add loading skeleton, error, and empty states
- Handle edge cases (in_progress, error, cancelled, missing data)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-02-06 18:00:14 +01:00
parent f7c57ca4f0
commit efc7a8392b
12 changed files with 2031 additions and 8 deletions

View File

@@ -0,0 +1,128 @@
import { NextResponse } from 'next/server';
import { fetchDeploymentDetail } from '@/lib/coolify-db';
import { findContainerByAppName, findContainerByUuid, sshExec, type HealthStatus } from '@/lib/docker';
interface HealthLogEntry {
start: string;
end: string;
exitCode: number;
output: string;
}
interface HealthResponse {
status: HealthStatus | 'unknown';
failingStreak: number;
log: HealthLogEntry[];
containerName: string | null;
lastCheck: string | null;
}
/**
* Get detailed container health including history logs and failing streak.
* Returns the full Health object from docker inspect.
*/
async function getDetailedContainerHealth(containerName: string): Promise<{
status: HealthStatus | null;
failingStreak: number;
log: HealthLogEntry[];
lastCheck: string | null;
}> {
const result = await sshExec(
`docker inspect --format='{{json .State.Health}}' ${containerName} 2>/dev/null`
);
if (!result || result === 'null' || result === '<nil>') {
return { status: null, failingStreak: 0, log: [], lastCheck: null };
}
try {
const health = JSON.parse(result);
const status = health.Status as HealthStatus | undefined;
const failingStreak = health.FailingStreak || 0;
// Map the Log entries
const log: HealthLogEntry[] = (health.Log || []).map((entry: {
Start?: string;
End?: string;
ExitCode?: number;
Output?: string;
}) => ({
start: entry.Start || '',
end: entry.End || '',
exitCode: entry.ExitCode || 0,
output: entry.Output || '',
}));
// Last check is the end time of the most recent log entry
const lastCheck = log.length > 0 ? log[log.length - 1].end : null;
return {
status: status && ['healthy', 'unhealthy', 'starting', 'none'].includes(status)
? status
: null,
failingStreak,
log,
lastCheck,
};
} catch {
return { status: null, failingStreak: 0, log: [], lastCheck: null };
}
}
export async function GET(
_request: Request,
{ params }: { params: Promise<{ uuid: string }> }
) {
const { uuid } = await params;
try {
// Fetch deployment info to get the application name
const deployment = await fetchDeploymentDetail(uuid);
if (!deployment) {
return NextResponse.json({ error: 'Deployment not found' }, { status: 404 });
}
// Find the container by application UUID first (Coolify naming: uuid-buildnumber)
// Fall back to application name search if UUID doesn't match
let containerName = await findContainerByUuid(deployment.application_uuid);
if (!containerName) {
containerName = await findContainerByAppName(deployment.application_name);
}
if (!containerName) {
// Container not found - return unknown status
const response: HealthResponse = {
status: 'unknown',
failingStreak: 0,
log: [],
containerName: null,
lastCheck: null,
};
return NextResponse.json(response, {
headers: { 'Cache-Control': 'no-cache, no-store, must-revalidate' },
});
}
// Get detailed health information
const health = await getDetailedContainerHealth(containerName);
const response: HealthResponse = {
status: health.status || 'none',
failingStreak: health.failingStreak,
log: health.log,
containerName,
lastCheck: health.lastCheck,
};
return NextResponse.json(response, {
headers: { 'Cache-Control': 'no-cache, no-store, must-revalidate' },
});
} catch (error) {
console.error('Error fetching container health:', error);
return NextResponse.json(
{ error: 'Failed to fetch health status', details: String(error) },
{ status: 500 }
);
}
}

View File

@@ -0,0 +1,41 @@
import { NextResponse } from 'next/server';
import { fetchDeploymentDetail } from '@/lib/coolify-db';
import { triggerDeploy } from '@/lib/coolify';
export async function POST(
_request: Request,
{ params }: { params: Promise<{ uuid: string }> }
) {
const { uuid } = await params;
try {
// Get deployment to find application UUID
const deployment = await fetchDeploymentDetail(uuid);
if (!deployment) {
return NextResponse.json({ error: 'Deployment not found' }, { status: 404 });
}
// Trigger deploy via Coolify API using application UUID
const result = await triggerDeploy(deployment.application_uuid);
if (!result.ok) {
return NextResponse.json(
{ error: 'Failed to trigger deployment', details: result.message },
{ status: 500 }
);
}
return NextResponse.json({
success: true,
message: 'Deployment triggered',
application_uuid: deployment.application_uuid,
});
} catch (error) {
console.error('Redeploy error:', error);
return NextResponse.json(
{ error: 'Failed to redeploy', details: String(error) },
{ status: 500 }
);
}
}

View File

@@ -0,0 +1,89 @@
import { NextResponse } from 'next/server';
import { fetchDeploymentDetail } from '@/lib/coolify-db';
import {
findContainerByAppName,
getContainerStats,
getContainerUptime,
formatUptime,
type ContainerStats,
} from '@/lib/docker';
export interface StatsResponse {
containerName: string | null;
stats: ContainerStats | null;
uptime: {
startedAt: string | null;
seconds: number;
formatted: string;
} | null;
timestamp: string;
}
export async function GET(
_request: Request,
{ params }: { params: Promise<{ uuid: string }> }
) {
const { uuid } = await params;
try {
// Fetch deployment info from Coolify to get application_name
const deployment = await fetchDeploymentDetail(uuid);
if (!deployment) {
return NextResponse.json({ error: 'Deployment not found' }, { status: 404 });
}
// Find container by app UUID first (Coolify uses {uuid}-{build} pattern), then by name
let containerName = await findContainerByAppName(deployment.application_uuid);
if (!containerName) {
containerName = await findContainerByAppName(deployment.application_name);
}
// If container not found, return null stats but success response
if (!containerName) {
const response: StatsResponse = {
containerName: null,
stats: null,
uptime: null,
timestamp: new Date().toISOString(),
};
return NextResponse.json(response, {
headers: { 'Cache-Control': 'no-cache, no-store, must-revalidate' },
});
}
// Fetch stats and uptime in parallel
const [stats, uptimeSeconds] = await Promise.all([
getContainerStats(containerName),
getContainerUptime(containerName),
]);
// Build uptime object
let uptime: StatsResponse['uptime'] = null;
if (uptimeSeconds !== null) {
// Calculate started at from uptime
const startedAt = new Date(Date.now() - uptimeSeconds * 1000).toISOString();
uptime = {
startedAt,
seconds: uptimeSeconds,
formatted: formatUptime(uptimeSeconds),
};
}
const response: StatsResponse = {
containerName,
stats,
uptime,
timestamp: new Date().toISOString(),
};
return NextResponse.json(response, {
headers: { 'Cache-Control': 'no-cache, no-store, must-revalidate' },
});
} catch (error) {
console.error('Error fetching deployment stats:', error);
return NextResponse.json(
{ error: 'Failed to fetch deployment stats', details: String(error) },
{ status: 500 }
);
}
}