e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
347 lines
10 KiB
TypeScript
347 lines
10 KiB
TypeScript
"use client";
|
|
|
|
/**
|
|
* Schema-driven channel config form, shared by the partner Channels panel.
|
|
* Renders a generic editor for ANY channel (built-in or plugin) from the
|
|
* Pydantic JSON schema served by `GET /api/v1/partners/channels/schema`.
|
|
*/
|
|
|
|
import { useState } from "react";
|
|
import { Eye, EyeOff } from "lucide-react";
|
|
|
|
export type JsonSchema = {
|
|
type?: string | string[];
|
|
title?: string;
|
|
description?: string;
|
|
default?: unknown;
|
|
enum?: unknown[];
|
|
properties?: Record<string, JsonSchema>;
|
|
items?: JsonSchema;
|
|
anyOf?: JsonSchema[];
|
|
};
|
|
|
|
/** Pick the first non-null variant of an `anyOf` and merge its meta. */
|
|
export function resolveSchemaVariant(s: JsonSchema): JsonSchema {
|
|
if (!s.anyOf) return s;
|
|
const first = s.anyOf.find((v) => v.type !== "null") ?? s.anyOf[0];
|
|
return {
|
|
...first,
|
|
title: s.title ?? first.title,
|
|
description: s.description ?? first.description,
|
|
};
|
|
}
|
|
|
|
/** True iff this schema's value can be `null` (e.g. `Optional[str]`). */
|
|
export function isNullable(s: JsonSchema): boolean {
|
|
if (Array.isArray(s.type) && s.type.includes("null")) return true;
|
|
if (s.anyOf?.some((v) => v.type === "null")) return true;
|
|
return false;
|
|
}
|
|
|
|
/** Default value for a property when the live config doesn't set it. */
|
|
export function defaultFor(s: JsonSchema): unknown {
|
|
if (s.default !== undefined) return s.default;
|
|
const v = resolveSchemaVariant(s);
|
|
switch (v.type) {
|
|
case "boolean":
|
|
return false;
|
|
case "integer":
|
|
case "number":
|
|
return 0;
|
|
case "array":
|
|
return [];
|
|
case "object":
|
|
return {};
|
|
case "string":
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
/** Title-case a snake_case key when no `title` is provided. */
|
|
function humaniseKey(k: string): string {
|
|
return k.replace(/_/g, " ").replace(/\b\w/g, (c) => c.toUpperCase());
|
|
}
|
|
|
|
function FieldLabel({
|
|
label,
|
|
description,
|
|
}: {
|
|
label: string;
|
|
description?: string;
|
|
}) {
|
|
return (
|
|
<label className="mb-1 block text-[12px] font-medium text-[var(--foreground)]">
|
|
{label}
|
|
{description && (
|
|
<span className="ml-1 font-normal opacity-70">— {description}</span>
|
|
)}
|
|
</label>
|
|
);
|
|
}
|
|
|
|
/** Free-form dict field (object without fixed properties) → JSON textarea. */
|
|
function JsonObjectField({
|
|
label,
|
|
description,
|
|
value,
|
|
onChange,
|
|
}: {
|
|
label: string;
|
|
description?: string;
|
|
value: unknown;
|
|
onChange: (next: unknown) => void;
|
|
}) {
|
|
const [draft, setDraft] = useState(() => {
|
|
const obj =
|
|
value && typeof value === "object"
|
|
? (value as Record<string, unknown>)
|
|
: {};
|
|
return Object.keys(obj).length ? JSON.stringify(obj, null, 2) : "";
|
|
});
|
|
const [invalid, setInvalid] = useState(false);
|
|
return (
|
|
<div>
|
|
<FieldLabel
|
|
label={label}
|
|
description={description ?? 'JSON object, e.g. {"key": "value"}'}
|
|
/>
|
|
<textarea
|
|
value={draft}
|
|
onChange={(e) => {
|
|
const text = e.target.value;
|
|
setDraft(text);
|
|
if (!text.trim()) {
|
|
setInvalid(false);
|
|
onChange({});
|
|
return;
|
|
}
|
|
try {
|
|
const parsed: unknown = JSON.parse(text);
|
|
if (
|
|
parsed &&
|
|
typeof parsed === "object" &&
|
|
!Array.isArray(parsed)
|
|
) {
|
|
setInvalid(false);
|
|
onChange(parsed);
|
|
} else {
|
|
setInvalid(true);
|
|
}
|
|
} catch {
|
|
setInvalid(true);
|
|
}
|
|
}}
|
|
rows={4}
|
|
className="w-full rounded-lg border border-[var(--border)] bg-transparent px-3 py-2 font-mono text-[13px] outline-none focus:border-[var(--ring)]"
|
|
/>
|
|
{invalid && (
|
|
<p className="mt-1 text-[11px] text-amber-600 dark:text-amber-400">
|
|
Invalid JSON — value not applied.
|
|
</p>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/** Generic field renderer — recursive for nested objects. */
|
|
export function SchemaField({
|
|
fieldKey,
|
|
schema,
|
|
value,
|
|
onChange,
|
|
secretFields,
|
|
path,
|
|
showSecretFor,
|
|
toggleSecret,
|
|
}: {
|
|
fieldKey: string;
|
|
schema: JsonSchema;
|
|
value: unknown;
|
|
onChange: (next: unknown) => void;
|
|
secretFields: Set<string>;
|
|
path: string;
|
|
showSecretFor: Set<string>;
|
|
toggleSecret: (path: string) => void;
|
|
}) {
|
|
const v = resolveSchemaVariant(schema);
|
|
const label = schema.title || v.title || humaniseKey(fieldKey);
|
|
const description = schema.description || v.description;
|
|
const isSecret = secretFields.has(path);
|
|
const enumValues = (v.enum ?? schema.enum) as unknown[] | undefined;
|
|
|
|
// Boolean → checkbox row (label inline).
|
|
if (v.type === "boolean") {
|
|
return (
|
|
<label className="flex items-start gap-2 text-[13px]">
|
|
<input
|
|
type="checkbox"
|
|
checked={!!value}
|
|
onChange={(e) => onChange(e.target.checked)}
|
|
className="mt-0.5"
|
|
/>
|
|
<span>
|
|
{label}
|
|
{description && (
|
|
<span className="ml-1 text-[11px] text-[var(--muted-foreground)]">
|
|
— {description}
|
|
</span>
|
|
)}
|
|
</span>
|
|
</label>
|
|
);
|
|
}
|
|
|
|
// Enum / Literal → select.
|
|
if (Array.isArray(enumValues) && enumValues.length > 0) {
|
|
return (
|
|
<div>
|
|
<FieldLabel label={label} description={description} />
|
|
<select
|
|
value={String(value ?? "")}
|
|
onChange={(e) => onChange(e.target.value)}
|
|
className="rounded-lg border border-[var(--border)] bg-transparent px-3 py-1.5 text-[13px] outline-none focus:border-[var(--ring)]"
|
|
>
|
|
{enumValues.map((opt) => (
|
|
<option key={String(opt)} value={String(opt)}>
|
|
{String(opt)}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Array of strings → textarea (one per line).
|
|
if (v.type === "array" && (v.items?.type === "string" || !v.items)) {
|
|
const lines = Array.isArray(value) ? (value as unknown[]).map(String) : [];
|
|
return (
|
|
<div>
|
|
<FieldLabel
|
|
label={label}
|
|
description={description ?? "One value per line"}
|
|
/>
|
|
<textarea
|
|
value={lines.join("\n")}
|
|
onChange={(e) =>
|
|
onChange(
|
|
e.target.value
|
|
.split("\n")
|
|
.map((s) => s.trim())
|
|
.filter(Boolean),
|
|
)
|
|
}
|
|
rows={Math.max(3, Math.min(8, lines.length + 1))}
|
|
className="w-full rounded-lg border border-[var(--border)] bg-transparent px-3 py-2 font-mono text-[13px] outline-none focus:border-[var(--ring)]"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Nested object → recursive fieldset.
|
|
if (v.type === "object" && v.properties) {
|
|
const obj = (value && typeof value === "object" ? value : {}) as Record<
|
|
string,
|
|
unknown
|
|
>;
|
|
return (
|
|
<fieldset className="rounded-lg border border-[var(--border)] px-3 py-2.5 space-y-2.5">
|
|
<legend className="px-1 text-[12px] font-medium text-[var(--muted-foreground)]">
|
|
{label}
|
|
</legend>
|
|
{description && (
|
|
<p className="text-[11px] text-[var(--muted-foreground)]">
|
|
{description}
|
|
</p>
|
|
)}
|
|
{Object.entries(v.properties).map(([k, child]) => (
|
|
<SchemaField
|
|
key={k}
|
|
fieldKey={k}
|
|
schema={child}
|
|
value={obj[k] ?? defaultFor(child)}
|
|
onChange={(next) => onChange({ ...obj, [k]: next })}
|
|
secretFields={secretFields}
|
|
path={path ? `${path}.${k}` : k}
|
|
showSecretFor={showSecretFor}
|
|
toggleSecret={toggleSecret}
|
|
/>
|
|
))}
|
|
</fieldset>
|
|
);
|
|
}
|
|
|
|
// Free-form dict (additionalProperties only) → JSON textarea.
|
|
if (v.type === "object") {
|
|
return (
|
|
<JsonObjectField
|
|
label={label}
|
|
description={description}
|
|
value={value}
|
|
onChange={onChange}
|
|
/>
|
|
);
|
|
}
|
|
|
|
// Integer/number → number input.
|
|
if (v.type === "integer" || v.type === "number") {
|
|
return (
|
|
<div>
|
|
<FieldLabel label={label} description={description} />
|
|
<input
|
|
type="number"
|
|
value={typeof value === "number" ? value : ""}
|
|
onChange={(e) => {
|
|
const raw = e.target.value;
|
|
if (raw === "") onChange(isNullable(schema) ? null : 0);
|
|
else
|
|
onChange(
|
|
v.type === "integer" ? parseInt(raw, 10) : parseFloat(raw),
|
|
);
|
|
}}
|
|
className="w-40 rounded-lg border border-[var(--border)] bg-transparent px-3 py-1.5 text-[13px] outline-none focus:border-[var(--ring)]"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Default: string input (with secret reveal handling).
|
|
const reveal = showSecretFor.has(path);
|
|
const strVal = value == null ? "" : String(value);
|
|
return (
|
|
<div>
|
|
<FieldLabel label={label} description={description} />
|
|
<div className="relative">
|
|
<input
|
|
type={isSecret && !reveal ? "password" : "text"}
|
|
autoComplete={isSecret ? "new-password" : "off"}
|
|
spellCheck={!isSecret}
|
|
value={strVal}
|
|
onChange={(e) => {
|
|
const next = e.target.value;
|
|
// Empty optional strings persist as null (matches Pydantic's
|
|
// `Optional[str]` default and avoids "" sneaking past validators).
|
|
onChange(next === "" && isNullable(schema) ? null : next);
|
|
}}
|
|
className={`w-full rounded-lg border border-[var(--border)] bg-transparent py-2 pl-3 ${isSecret ? "pr-10 font-mono" : "pr-3"} text-[13px] outline-none focus:border-[var(--ring)]`}
|
|
/>
|
|
{isSecret && (
|
|
<button
|
|
type="button"
|
|
onClick={() => toggleSecret(path)}
|
|
className="absolute right-1 top-1/2 -translate-y-1/2 rounded-md p-1.5 text-[var(--muted-foreground)] hover:bg-[var(--muted)] hover:text-[var(--foreground)]"
|
|
aria-label={reveal ? "Hide secret" : "Show secret"}
|
|
title={reveal ? "Hide secret" : "Show secret"}
|
|
>
|
|
{reveal ? (
|
|
<EyeOff className="h-4 w-4" />
|
|
) : (
|
|
<Eye className="h-4 w-4" />
|
|
)}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|