mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-27 01:21:25 +00:00
Reuse shared frontend formatting and SSE dedupe helpers, tighten typed sandbox handling, remove obsolete run DTOs, and collapse auth-session revoke into a single store operation.
199 lines
6.5 KiB
TypeScript
199 lines
6.5 KiB
TypeScript
import { formatElapsedSecs, formatDurationSecs } from "../lib/format";
|
|
import {
|
|
BoardColumn,
|
|
type BoardColumn as ApiBoardColumn,
|
|
type Run,
|
|
type RunStatus as ApiRunStatus,
|
|
} from "@qltysh/fabro-api-client";
|
|
|
|
export type CiStatus = "passing" | "failing" | "pending";
|
|
|
|
export type CheckStatus = "success" | "failure" | "skipped" | "pending" | "queued";
|
|
|
|
export interface CheckRun {
|
|
name: string;
|
|
status: CheckStatus;
|
|
duration?: string;
|
|
}
|
|
|
|
export interface RunItem {
|
|
id: string;
|
|
repo: string;
|
|
title: string;
|
|
workflow: string;
|
|
column?: ColumnStatus;
|
|
lifecycleStatus?: RunStatus | null;
|
|
lifecycleStatusLabel?: string;
|
|
number?: number;
|
|
pullRequestUrl?: string;
|
|
additions?: number;
|
|
deletions?: number;
|
|
checks?: CheckRun[];
|
|
elapsed?: string;
|
|
resources?: string;
|
|
actionDisabled?: boolean;
|
|
comments?: number;
|
|
question?: string;
|
|
sandboxId?: string;
|
|
sandboxWorkingDirectory?: string;
|
|
sourceDirectory?: string;
|
|
createdAt?: string;
|
|
lastEventAt?: string;
|
|
}
|
|
|
|
export type ColumnStatus = ApiBoardColumn;
|
|
|
|
export const columnStatuses = [
|
|
BoardColumn.QUEUED,
|
|
BoardColumn.INITIALIZING,
|
|
BoardColumn.RUNNING,
|
|
BoardColumn.BLOCKED,
|
|
BoardColumn.SUCCEEDED,
|
|
BoardColumn.FAILED,
|
|
BoardColumn.ARCHIVED,
|
|
] as const satisfies readonly ColumnStatus[];
|
|
|
|
export const columnStatusDisplay: Record<ColumnStatus, { label: string; dot: string; text: string }> = {
|
|
queued: { label: "Queued", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
initializing: { label: "Initializing", dot: "bg-amber", text: "text-amber" },
|
|
running: { label: "Running", dot: "bg-teal-500", text: "text-teal-500" },
|
|
blocked: { label: "Blocked", dot: "bg-amber", text: "text-amber" },
|
|
succeeded: { label: "Succeeded", dot: "bg-teal-300", text: "text-teal-300" },
|
|
failed: { label: "Failed", dot: "bg-coral", text: "text-coral" },
|
|
archived: { label: "Archived", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
};
|
|
|
|
export interface RunWithStatus extends RunItem {
|
|
status: ColumnStatus;
|
|
statusLabel: string;
|
|
}
|
|
|
|
function displayRunTitle(title: string | null | undefined): string {
|
|
return title?.trim() ? title : "Untitled run";
|
|
}
|
|
|
|
function displayRepoName(name: string): string {
|
|
const slash = name.lastIndexOf("/");
|
|
return slash >= 0 ? name.slice(slash + 1) : name;
|
|
}
|
|
|
|
function runStatusKind(status: ApiRunStatus | null | undefined): RunStatus | null {
|
|
return status?.kind ?? null;
|
|
}
|
|
|
|
export function mapRunListItem(item: Run): RunItem {
|
|
const lifecycleStatus = item.lifecycle.archived ? "archived" : runStatusKind(item.lifecycle.status);
|
|
const runtime = item.sandbox?.runtime;
|
|
return {
|
|
id: item.id,
|
|
repo: displayRepoName(item.repository?.name ?? "unknown"),
|
|
title: displayRunTitle(item.title),
|
|
workflow: item.workflow.slug ?? item.workflow.name ?? "unknown",
|
|
column: columnForRun(item) ?? undefined,
|
|
lifecycleStatus,
|
|
lifecycleStatusLabel: lifecycleStatusLabel(item.lifecycle.status, item.lifecycle.archived),
|
|
number: item.pull_request?.number,
|
|
pullRequestUrl: item.pull_request?.html_url,
|
|
elapsed: item.timestamps.elapsed_secs != null ? formatElapsedSecs(item.timestamps.elapsed_secs) : undefined,
|
|
resources: undefined,
|
|
question: item.current_question?.text,
|
|
sandboxId: runtime?.id ?? undefined,
|
|
sandboxWorkingDirectory: runtime?.working_directory ?? undefined,
|
|
sourceDirectory: item.source_directory ?? undefined,
|
|
createdAt: item.timestamps.created_at,
|
|
lastEventAt: item.timestamps.last_event_at ?? undefined,
|
|
};
|
|
}
|
|
|
|
export type { Run };
|
|
export type RunSummary = Run;
|
|
|
|
export function mapRunSummaryToRunItem(summary: Run): RunItem {
|
|
return mapRunListItem(summary);
|
|
}
|
|
|
|
export function columnForStatus(status: ApiRunStatus | null | undefined): ColumnStatus | null {
|
|
switch (status?.kind) {
|
|
case "submitted":
|
|
case "queued":
|
|
return "queued";
|
|
case "starting":
|
|
return "initializing";
|
|
case "running":
|
|
case "paused":
|
|
return "running";
|
|
case "blocked":
|
|
return "blocked";
|
|
case "succeeded":
|
|
return "succeeded";
|
|
case "failed":
|
|
case "dead":
|
|
return "failed";
|
|
case "removing":
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function columnForRun(run: Run): ColumnStatus | null {
|
|
if (run.lifecycle.archived) return "archived";
|
|
return columnForStatus(run.lifecycle.status);
|
|
}
|
|
|
|
export function deriveCiStatus(checks: CheckRun[]): CiStatus {
|
|
if (checks.some((c) => c.status === "failure")) return "failing";
|
|
if (checks.some((c) => c.status === "pending" || c.status === "queued")) return "pending";
|
|
return "passing";
|
|
}
|
|
|
|
export type RunStatus =
|
|
| "submitted"
|
|
| "queued"
|
|
| "starting"
|
|
| "running"
|
|
| "blocked"
|
|
| "paused"
|
|
| "removing"
|
|
| "succeeded"
|
|
| "failed"
|
|
| "dead"
|
|
| "archived";
|
|
|
|
export const runStatusDisplay: Record<RunStatus, { label: string; dot: string; text: string }> = {
|
|
submitted: { label: "Submitted", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
queued: { label: "Queued", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
starting: { label: "Starting", dot: "bg-amber", text: "text-amber" },
|
|
running: { label: "Running", dot: "bg-teal-500", text: "text-teal-500" },
|
|
blocked: { label: "Blocked", dot: "bg-amber", text: "text-amber" },
|
|
paused: { label: "Paused", dot: "bg-amber", text: "text-amber" },
|
|
removing: { label: "Removing", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
succeeded: { label: "Succeeded", dot: "bg-mint", text: "text-mint" },
|
|
failed: { label: "Failed", dot: "bg-coral", text: "text-coral" },
|
|
dead: { label: "Dead", dot: "bg-coral", text: "text-coral" },
|
|
archived: { label: "Archived", dot: "bg-fg-muted", text: "text-fg-muted" },
|
|
};
|
|
|
|
const knownRunStatuses = new Set<string>(Object.keys(runStatusDisplay));
|
|
|
|
export function isRunStatus(s: string): s is RunStatus {
|
|
return knownRunStatuses.has(s);
|
|
}
|
|
|
|
function lifecycleStatusLabel(status: ApiRunStatus | null | undefined, archived = false): string | undefined {
|
|
const kind = archived ? "archived" : runStatusKind(status);
|
|
if (!kind) return undefined;
|
|
return runStatusDisplay[kind].label;
|
|
}
|
|
|
|
/** Graph control nodes hidden from stage lists in the UI. */
|
|
const hiddenStageIds = new Set(["start", "exit"]);
|
|
|
|
export function isVisibleStage(id: string): boolean {
|
|
return !hiddenStageIds.has(id);
|
|
}
|
|
|
|
export const ciConfig: Record<CiStatus, { label: string; dot: string; text: string }> = {
|
|
passing: { label: "Passing", dot: "bg-mint", text: "text-mint" },
|
|
failing: { label: "Changes needed", dot: "bg-coral", text: "text-coral" },
|
|
pending: { label: "Pending", dot: "bg-amber", text: "text-amber" },
|
|
};
|