Files
wild-pc/app/src/components/detail/JobFields.tsx
Paul Payne 6929bd89d3 Detail pages: rename the 'Runs' field to 'Launch' (matches the launcher concept)
The field showing a deployment's launcher + target is now labelled 'Launch'
(consistent with launcher/manager vocabulary) on ServiceDetail and the Service/
Job/Create field editors.
2026-07-01 13:35:02 -07:00

126 lines
4.3 KiB
TypeScript

import { useState } from "react"
import type { JobDetail } from "@/types"
import { Field, TextField, FormFooter, useEnvSecrets } from "./fields"
interface Props {
job: JobDetail
onSave: (name: string, config: Record<string, unknown>) => Promise<void>
onDelete?: (name: string) => Promise<void>
}
type Obj = Record<string, unknown>
const obj = (v: unknown): Obj => (v as Obj) ?? {}
// A job is a systemd deployment; its launcher is editable like a service's.
const LAUNCHERS = ["python", "command", "container", "compose", "node"]
function applyLauncher(run: Obj, launcher: string, target: string): Obj {
const out: Obj = { ...run, launcher }
const t = target.trim()
if (launcher === "command") {
out.argv = t.split(/\s+/).filter(Boolean)
delete out.program
} else if (launcher === "python") {
out.program = t
delete out.argv
} else if (launcher === "container") {
if (t) out.image = t
} else if (launcher === "node") {
if (t) out.script = t
} else if (launcher === "compose") {
if (t) out.file = t
}
return out
}
/** Edit a job's deployment config (schedule / run / env). */
export function JobFields({ job, onSave, onDelete }: Props) {
const m = job.manifest
const run = obj(m.run)
const [saving, setSaving] = useState(false)
const [saved, setSaved] = useState(false)
const [description, setDescription] = useState((m.description as string) ?? "")
const [schedule, setSchedule] = useState((m.schedule as string) ?? "")
const [launcher, setLauncher] = useState((run.launcher as string) ?? "command")
const [runTarget, setRunTarget] = useState(
(run.program as string) ||
((run.argv as string[]) ?? []).join(" ") ||
(run.image as string) ||
(run.script as string) ||
(run.file as string) ||
"",
)
const { element: envEditor, merged } = useEnvSecrets(obj(obj(m.defaults).env) as Record<string, string>)
const handleSave = async () => {
setSaving(true)
setSaved(false)
try {
const config: Record<string, unknown> = JSON.parse(JSON.stringify(m))
delete config.id
config.description = description || undefined
config.schedule = schedule || undefined
config.run = applyLauncher(obj(config.run), launcher, runTarget)
const env = merged()
if (Object.keys(env).length > 0) config.defaults = { ...obj(config.defaults), env }
else if (config.defaults) delete (config.defaults as Obj).env
await onSave(job.id, config)
setSaved(true)
setTimeout(() => setSaved(false), 2000)
} finally {
setSaving(false)
}
}
return (
<div className="space-y-4">
<TextField label="Description" value={description} onChange={setDescription} />
<TextField
label="Schedule"
value={schedule}
onChange={setSchedule}
width="w-48"
mono
placeholder="0 2 * * *"
hint="Cron expression — castle generates a systemd timer that runs the job on this schedule."
/>
<Field label="Launch" hint="How the job runs on each tick, then exits: the launcher and its target (a console script, command/argv, image, node script, or compose file).">
<div className="flex items-center gap-2">
<select
value={launcher}
onChange={(e) => setLauncher(e.target.value)}
className="bg-black/30 border border-[var(--border)] rounded px-2 py-1 text-xs font-mono focus:outline-none focus:border-[var(--primary)]"
>
{LAUNCHERS.map((l) => (
<option key={l} value={l}>
{l}
</option>
))}
</select>
<span className="text-[var(--muted)]">&middot;</span>
<input
value={runTarget}
onChange={(e) => setRunTarget(e.target.value)}
className="w-56 bg-black/30 border border-[var(--border)] rounded px-2 py-1 text-xs font-mono focus:outline-none focus:border-[var(--primary)]"
/>
</div>
</Field>
{envEditor}
<FormFooter
saving={saving}
saved={saved}
onSave={handleSave}
onDelete={onDelete ? () => onDelete(job.id) : undefined}
deleteLabel="Remove job"
confirmMessage={`Remove job "${job.id}" from castle.yaml? Run a deploy afterward to tear down its timer.`}
/>
</div>
)
}