Dashboard: Deployments nav group, tool detail page, deployment links, static-aware detail

- Nav: Services/Scheduled/Tools nested under a 'Deployments' group (expandable;
  flattened to icons when the sidebar is collapsed). Programs stays top-level.
- Overview: Tools tile (Wrench, count of tool programs).
- New /tools/:name tool detail page (useDeployment): Install/Uninstall lifecycle,
  a link up to its program, and an editable ToolFields (description + env).
- ServiceDetail is static-aware: a caddy deployment shows served-by-gateway +
  URL + root, no start/stop, and edits via a new StaticFields (root + public + env)
  so a launcher is never injected into a caddy deployment.
- Program detail's Deployment section is now a clean list of links — every
  deployment (tool→/tools, service/static→/services, job→/jobs) links to its
  detail page; lifecycle controls moved onto those pages.

clean pnpm build + tsc.
This commit is contained in:
2026-07-01 12:57:25 -07:00
parent 01505328ad
commit 86d4552fdc
9 changed files with 453 additions and 136 deletions

View File

@@ -1,15 +1,14 @@
import { useState } from "react"
import { Link } from "react-router-dom"
import { Server, Clock, Plus, Loader2, ExternalLink } from "lucide-react"
import { Plus, ChevronRight } from "lucide-react"
import type { ProgramDetail } from "@/types"
import { useServices, useJobs, useProgramAction } from "@/services/api/hooks"
import { subdomainUrl } from "@/lib/labels"
import { useServices, useJobs } from "@/services/api/hooks"
import { KindBadge } from "@/components/KindBadge"
import { CreateDeploymentForm, type CreatePrefill } from "./CreateDeploymentForm"
/** How a program is deployed, and its lifecycle. A program → 0-N deployments.
* Its own path (tool) / caddy (static) deployment is 1:1 with the program, so its
* lifecycle is shown inline here; service/job deployments link to their own pages
* where start/stop lives. This is the single home for "how this program runs". */
/** How a program is deployed. A program → 0-N deployments; each row links to its
* detail page (where its config + lifecycle live). tool → /tools, static/service
* → /services, job → /jobs. */
export function DeploymentsSection({ program }: { program: ProgramDetail }) {
const { deployments } = program
const [creating, setCreating] = useState(false)
@@ -28,16 +27,14 @@ export function DeploymentsSection({ program }: { program: ProgramDetail }) {
launcher: program.stack?.startsWith("python") || !program.stack ? "python" : "command",
}
// Tool/static deployments are 1:1 with the program (same name) — their
// lifecycle is shown inline; service/job deployments link to their own pages.
const inline = deployments.filter((d) => d.kind === "tool" || d.kind === "static")
const linked = deployments.filter((d) => d.kind === "service" || d.kind === "job")
const detailPath = (name: string, kind: string) =>
kind === "tool" ? `/tools/${name}` : kind === "job" ? `/jobs/${name}` : `/services/${name}`
return (
<div className="bg-[var(--card)] border border-[var(--border)] rounded-lg p-5 mb-6">
<div className="flex items-center justify-between mb-1">
<h2 className="text-sm font-semibold text-[var(--muted)] uppercase tracking-wider">
Deployment
Deployments
</h2>
<button
onClick={() => setCreating((c) => !c)}
@@ -50,15 +47,6 @@ export function DeploymentsSection({ program }: { program: ProgramDetail }) {
How this program is materialized into the runtime.
</p>
{/* The program's own path/caddy deployment — its lifecycle, inline. */}
{inline.map((d) =>
d.kind === "tool" ? (
<PathLifecycle key={d.name} name={program.id} active={program.active} />
) : (
<StaticStatus key={d.name} name={program.id} active={program.active} />
),
)}
{creating && (
<CreateDeploymentForm
prefill={prefill}
@@ -67,90 +55,25 @@ export function DeploymentsSection({ program }: { program: ProgramDetail }) {
/>
)}
{/* Service/job deployments — managed on their own detail pages. */}
{deployments.length === 0 && !creating ? (
<p className="text-sm text-[var(--muted)]">No deployment yet.</p>
) : linked.length > 0 ? (
<div className="space-y-1.5 mt-1">
{linked.map((d) => (
) : (
<div className="space-y-1">
{deployments.map((d) => (
<Link
key={d.name}
to={d.kind === "job" ? `/jobs/${d.name}` : `/services/${d.name}`}
className="flex items-center gap-2 text-sm hover:text-[var(--primary)] transition-colors"
to={detailPath(d.name, d.kind)}
className="flex items-center gap-2 rounded px-2 py-1.5 -mx-2 text-sm hover:bg-black/20 transition-colors group"
>
{d.kind === "job" ? (
<Clock size={14} className="text-[var(--muted)]" />
) : (
<Server size={14} className="text-[var(--muted)]" />
)}
<span className="font-medium">{d.name}</span>
<span className="text-xs text-[var(--muted)]">{d.kind}</span>
<span className="font-mono">{d.name}</span>
<KindBadge kind={d.kind} />
<ChevronRight
size={14}
className="ml-auto text-[var(--muted)] group-hover:text-[var(--primary)]"
/>
</Link>
))}
</div>
) : null}
</div>
)
}
function Dot({ active }: { active: boolean | null }) {
const cls =
active === true
? "bg-green-500"
: active === false
? "bg-[var(--muted)]"
: "bg-transparent border border-[var(--muted)]"
return <span className={`h-2 w-2 rounded-full shrink-0 ${cls}`} />
}
/** A tool's PATH deployment: install/uninstall is its start/stop (manager=path). */
function PathLifecycle({ name, active }: { name: string; active: boolean | null }) {
const { mutate, isPending } = useProgramAction()
const installed = active === true
return (
<div className="flex items-center justify-between rounded border border-[var(--border)] px-3 py-2 mb-3">
<div className="flex items-center gap-2 text-sm">
<Dot active={active} />
<span>{installed ? "Installed on PATH" : "Not installed"}</span>
<span className="text-xs text-[var(--muted)]">manager: path</span>
</div>
<button
onClick={() => mutate({ name, action: installed ? "uninstall" : "install" })}
disabled={isPending}
className={`flex items-center gap-1.5 px-2 py-1 text-sm rounded border transition-colors disabled:opacity-40 ${
installed
? "border-red-800 text-red-400 hover:bg-red-800/30"
: "border-green-800 text-green-400 hover:bg-green-800/30"
}`}
>
{isPending && <Loader2 size={14} className="animate-spin" />}
{installed ? "Uninstall" : "Install"}
</button>
</div>
)
}
/** A static (caddy) deployment: served by the gateway from its built dir. */
function StaticStatus({ name, active }: { name: string; active: boolean | null }) {
const url = subdomainUrl(name)
const served = active === true
return (
<div className="flex items-center justify-between rounded border border-[var(--border)] px-3 py-2 mb-3">
<div className="flex items-center gap-2 text-sm">
<Dot active={active} />
<span>{served ? "Served by the gateway" : "Not built yet"}</span>
<span className="text-xs text-[var(--muted)]">manager: caddy</span>
</div>
{url && served && (
<a
href={url}
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-1 text-sm text-[var(--primary)] hover:underline"
>
{name}
<ExternalLink size={11} className="opacity-60" />
</a>
)}
</div>
)