File size: 9,957 Bytes
c453128 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | import React, { useEffect, useMemo, useState } from "react";
import type { AgentCapabilities, AgentProfile, ToolsetMeta } from "../types";
import type { PendingAssignment, ToolPresetId } from "../types";
import { api } from "../api/client";
import { AgentFigure } from "./AgentFigure";
import {
modalPanelStyle,
modalOverlayStyle,
personaColumnStyle,
personaGridStyle,
presetTabStyle,
sectionBoxStyle,
sectionTitleStyle,
skillChipStyle,
toolChipStyle,
wideModalWidthStyle,
} from "./modalStyles";
import { ModelSelectField } from "./ModelSelectField";
const PRESET_TABS: ToolPresetId[] = ["chat", "lean", "full"];
interface Props {
deskId: string;
agent: AgentProfile;
toolsets: ToolsetMeta[];
onAssign: (deskId: string, assignment: PendingAssignment) => void;
onClose: () => void;
}
function PersonaColumn({ label, text }: { label: string; text: string }) {
const empty = !text.trim();
return (
<div style={{ display: "flex", flexDirection: "column", minWidth: 0, flex: 1 }}>
<div style={{ ...sectionTitleStyle, marginBottom: 5 }}>{label}</div>
<div style={personaColumnStyle}>
{empty ? <span style={{ color: "var(--text-dim)", fontStyle: "italic" }}>(empty)</span> : text}
</div>
</div>
);
}
export function AgentAssignModal({ deskId, agent, toolsets, onAssign, onClose }: Props) {
const [caps, setCaps] = useState<AgentCapabilities | null>(null);
const [soul, setSoul] = useState("");
const [memory, setMemory] = useState("");
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const [tab, setTab] = useState<ToolPresetId>("lean");
const backendUrl = (agent.base_url || "").trim();
const [availableModels, setAvailableModels] = useState<string[]>([]);
const [modelOverride, setModelOverride] = useState(agent.model || "");
useEffect(() => {
let cancelled = false;
setLoading(true);
setError(null);
Promise.all([
api.agents.capabilities(agent.id),
api.agents.persona(agent.id),
...(backendUrl ? [api.llm.models({ baseUrl: backendUrl, agentId: agent.id })] : []),
])
.then((results) => {
if (cancelled) return;
const capData = results[0] as AgentCapabilities;
const persona = results[1] as { soul?: string; memory?: string };
setCaps(capData);
setSoul(persona.soul ?? "");
setMemory(persona.memory ?? "");
const def = capData.default_preset;
if (def === "chat" || def === "lean" || def === "full") setTab(def);
if (backendUrl && results[2]) {
const listed = results[2] as { models: string[]; current: string };
setAvailableModels(listed.models ?? []);
setModelOverride((prev) => prev || agent.model || listed.current || "");
}
})
.catch((e: Error) => { if (!cancelled) setError(e.message); })
.finally(() => { if (!cancelled) setLoading(false); });
return () => { cancelled = true; };
}, [agent.id, agent.model, backendUrl]);
const labels = useMemo(
() => Object.fromEntries(toolsets.map((t) => [t.name, t.label])),
[toolsets],
);
const enabledSet = new Set(caps?.presets[tab] ?? []);
const skillBundles = useMemo(() => {
if (!caps) return [];
return [...caps.skill_bundles].sort((a, b) => {
if (a.count > 0 && b.count === 0) return -1;
if (a.count === 0 && b.count > 0) return 1;
return a.bundle.localeCompare(b.bundle);
});
}, [caps]);
function handleAssign() {
if (!caps) return;
const pickedModel = modelOverride.trim();
onAssign(deskId, {
agentId: agent.id,
agentName: agent.name,
agentColor: agent.color,
toolPreset: tab,
toolsEnabled: caps.presets[tab] ?? [],
...(pickedModel ? { modelOverride: pickedModel } : {}),
});
onClose();
}
return (
<div
style={{ ...modalOverlayStyle, zIndex: 450 }}
onMouseDown={(e) => { if (e.target === e.currentTarget) onClose(); }}
>
<div style={{
...wideModalWidthStyle,
...modalPanelStyle, padding: "20px 24px",
}}>
<div style={{ display: "flex", justifyContent: "space-between", alignItems: "flex-start", marginBottom: 16 }}>
<div style={{ display: "flex", gap: 12, alignItems: "center" }}>
<AgentFigure
agentId={agent.id}
color={agent.color}
isPrototype={agent.is_prototype}
cloneFrom={agent.clone_from}
scale={0.65}
/>
<div>
<h2 style={{ margin: 0, fontSize: 16, fontWeight: 700 }}>{agent.name}</h2>
<div style={{ fontSize: 11, color: "var(--text-dim)", marginTop: 3 }}>{agent.tagline}</div>
</div>
</div>
<button type="button" onClick={onClose} style={ghostBtn}>✕</button>
</div>
{loading ? (
<div style={{ padding: 24, textAlign: "center", color: "var(--text-dim)", fontSize: 12 }}>
Loading profile…
</div>
) : error ? (
<div style={{ padding: 12, color: "#ff8080", fontSize: 11 }}>{error}</div>
) : caps && (
<>
{/* Persona — SOUL | MEMORY side by side */}
<div style={sectionBoxStyle}>
<div style={sectionTitleStyle}>Persona</div>
<div style={personaGridStyle}>
<PersonaColumn label="SOUL.md — personality & instructions" text={soul} />
<PersonaColumn label="MEMORY.md — persistent notes" text={memory} />
</div>
</div>
{backendUrl && (
<ModelSelectField
label="Model (this desk)"
baseUrl={backendUrl}
profileModel={agent.model || ""}
value={modelOverride}
onChange={setModelOverride}
models={availableModels}
hint={
agent.id === "cloud" || backendUrl.includes("generativelanguage.googleapis.com")
? "Pick any Gemini model from the profile catalog, or keep the profile default."
: "Per-desk override — leave as profile default or pick another model from the backend."
}
/>
)}
{/* Tools + skills — full width below */}
<div style={{ display: "grid", gridTemplateColumns: skillBundles.length ? "1fr 1fr" : "1fr", gap: 12 }}>
<div style={{ ...sectionBoxStyle, marginBottom: 0 }}>
<div style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
marginBottom: 8, gap: 8, flexWrap: "wrap",
}}>
<div style={sectionTitleStyle}>Tools</div>
<div style={{ fontSize: 10, color: "var(--text-dim)" }}>
{caps.source === "profile" ? "Profile presets" : "Global presets"}
</div>
</div>
<div style={{ display: "flex", gap: 4, marginBottom: 10 }}>
{PRESET_TABS.map((id) => (
<button
key={id}
type="button"
onClick={() => setTab(id)}
style={presetTabStyle(tab === id)}
>
{id}
{caps.default_preset === id && (
<span style={{ marginLeft: 4, fontSize: 9, opacity: 0.75 }}>default</span>
)}
</button>
))}
</div>
<div style={{ display: "flex", flexWrap: "wrap", gap: 5 }}>
{toolsets.map((t) => (
<span
key={t.name}
title={(t.tools ?? [t.name]).join(", ")}
style={toolChipStyle(enabledSet.has(t.name))}
>
{labels[t.name] ?? t.label}
</span>
))}
</div>
</div>
{skillBundles.length > 0 && (
<div style={{ ...sectionBoxStyle, marginBottom: 0 }}>
<div style={sectionTitleStyle}>
Skill categories
<span style={{ fontWeight: 400, marginLeft: 6, textTransform: "none", letterSpacing: 0 }}>
({caps.skill_count} installed)
</span>
</div>
<div style={{ display: "flex", flexWrap: "wrap", gap: 5 }}>
{skillBundles.map((b) => (
<span key={b.bundle} style={skillChipStyle(b.count > 0)} title={
b.count > 0 ? b.skills.slice(0, 8).join(", ") : "No skills in this category"
}>
{b.bundle}
<span style={{ marginLeft: 4, opacity: b.count > 0 ? 0.85 : 0.55 }}>
({b.count})
</span>
</span>
))}
</div>
</div>
)}
</div>
<div style={{ display: "flex", gap: 8, justifyContent: "flex-end", marginTop: 16 }}>
<button type="button" onClick={onClose} style={ghostBtn}>Cancel</button>
<button type="button" onClick={handleAssign} style={primaryBtn}>Assign to desk</button>
</div>
</>
)}
</div>
</div>
);
}
const ghostBtn: React.CSSProperties = {
background: "transparent", border: "none", color: "var(--text-dim)", cursor: "pointer", fontSize: 14,
};
const primaryBtn: React.CSSProperties = {
padding: "8px 14px", borderRadius: 6, border: "none", cursor: "pointer",
background: "var(--accent)", color: "#fff", fontSize: 12, fontWeight: 600,
};
|