mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-15 14:22:43 +00:00
Collapse the three near-identical optional-text helpers (optionalText/optionalBaseUrl/listToText) into one optionalText with a strip-trailing-slash flag, route listToText + toolsets through the existing splitCronList, and replace the repeated typeof x === 'string' ? x : '' ladders with a single asString helper. Behavior-identical; all 16 vitest cases pass.
95 lines
3.3 KiB
TypeScript
95 lines
3.3 KiB
TypeScript
import type { CronJob, CronJobMutation } from "./api";
|
|
|
|
export interface CronJobFormState {
|
|
name: string;
|
|
prompt: string;
|
|
schedule: string;
|
|
deliver: string;
|
|
skills: string[];
|
|
provider: string;
|
|
model: string;
|
|
base_url: string;
|
|
script: string;
|
|
no_agent: boolean;
|
|
context_from: string;
|
|
enabled_toolsets: string[];
|
|
workdir: string;
|
|
}
|
|
|
|
/** Split a comma/newline list (or array) into trimmed, non-empty items. */
|
|
export function splitCronList(value: unknown): string[] {
|
|
const items = Array.isArray(value)
|
|
? value
|
|
: typeof value === "string"
|
|
? value.split(/[\n,]/)
|
|
: [];
|
|
return items.map((item) => String(item).trim()).filter(Boolean);
|
|
}
|
|
|
|
/** Trim to a non-empty string, or null. Optionally strip trailing slashes
|
|
* (base URLs). Mirrors the backend's `_cron_optional_text`. */
|
|
function optionalText(value: string, stripTrailingSlash = false): string | null {
|
|
const text = stripTrailingSlash ? value.trim().replace(/\/+$/, "") : value.trim();
|
|
return text || null;
|
|
}
|
|
|
|
/** Coerce a stored list/string field back into the textarea's newline form. */
|
|
function listToText(value: unknown): string {
|
|
if (Array.isArray(value)) return splitCronList(value).join("\n");
|
|
return typeof value === "string" ? value : "";
|
|
}
|
|
|
|
/** Read a stored string field as a plain string ("" when absent). */
|
|
function asString(value: unknown): string {
|
|
return typeof value === "string" ? value : "";
|
|
}
|
|
|
|
/** Build the create/update payload. Optional fields collapse to null so an
|
|
* update explicitly clears them rather than leaving stale values. */
|
|
export function buildCronJobPayload(form: CronJobFormState): CronJobMutation {
|
|
const contextFrom = splitCronList(form.context_from);
|
|
const enabledToolsets = form.enabled_toolsets.filter(Boolean);
|
|
return {
|
|
name: form.name.trim(),
|
|
prompt: form.prompt.trim(),
|
|
schedule: form.schedule.trim(),
|
|
deliver: form.deliver.trim() || "local",
|
|
skills: form.skills.filter(Boolean),
|
|
provider: optionalText(form.provider),
|
|
model: optionalText(form.model),
|
|
base_url: optionalText(form.base_url, true),
|
|
script: optionalText(form.script),
|
|
no_agent: Boolean(form.no_agent),
|
|
context_from: contextFrom.length > 0 ? contextFrom : null,
|
|
enabled_toolsets: enabledToolsets.length > 0 ? enabledToolsets : null,
|
|
workdir: optionalText(form.workdir),
|
|
};
|
|
}
|
|
|
|
export function cronJobHasExecutionContent(
|
|
job: Pick<CronJobMutation, "prompt" | "skills" | "script">,
|
|
): boolean {
|
|
const skills = Array.isArray(job.skills) ? job.skills.filter(Boolean) : [];
|
|
return Boolean(asString(job.prompt).trim() || asString(job.script).trim() || skills.length);
|
|
}
|
|
|
|
export function cronJobFormFromJob(job: CronJob): CronJobFormState {
|
|
return {
|
|
name: asString(job.name),
|
|
prompt: asString(job.prompt),
|
|
schedule:
|
|
asString(job.schedule?.expr) ||
|
|
asString(job.schedule?.run_at) ||
|
|
asString(job.schedule_display),
|
|
deliver: asString(job.deliver) || "local",
|
|
skills: Array.isArray(job.skills) ? job.skills.filter(Boolean) : [],
|
|
provider: asString(job.provider),
|
|
model: asString(job.model),
|
|
base_url: asString(job.base_url),
|
|
script: asString(job.script),
|
|
no_agent: Boolean(job.no_agent),
|
|
context_from: listToText(job.context_from),
|
|
enabled_toolsets: splitCronList(job.enabled_toolsets),
|
|
workdir: asString(job.workdir),
|
|
};
|
|
}
|