Spaces:
Runtime error
Runtime error
File size: 12,779 Bytes
fc99222 | 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | import { useEffect, useRef } from "react";
import type { AgentState, StepStatus } from "../types";
const C = {
bg: "#0d1117",
surface: "#161b22",
border: "#21262d",
text: "#c9d1d9",
muted: "#8b949e",
dim: "#484f58",
accent: "#58a6ff",
green: "#3fb950",
red: "#f85149",
yellow: "#d29922",
};
const AGENT_COLORS: Record<string, string> = {
coder: "#58a6ff",
auditor: "#d29922",
tester: "#3fb950",
};
const DEFAULT_REQUIREMENT = `Crie um contrato de staking com as seguintes características:
- Usuários podem depositar ETH e receber créditos proporcionais ao valor
- O owner pode pausar e retomar os depósitos
- Função de saque que devolve ETH proporcional ao crédito do usuário
- Acumula recompensas de 1% ao dia sobre o saldo depositado
- Emite eventos para depósito, saque e distribuição de recompensas`;
interface Props {
requirements: string;
onRequirementsChange: (v: string) => void;
onRun: (e: React.FormEvent) => void;
running: boolean;
agentStates: AgentState[];
logs: string[];
}
export function ControlPanel({ requirements, onRequirementsChange, onRun, running, agentStates, logs }: Props) {
return (
<div
style={{
width: 400,
flexShrink: 0,
display: "flex",
flexDirection: "column",
background: C.bg,
overflow: "hidden",
}}
>
<Header />
<InputForm requirements={requirements} onChange={onRequirementsChange} onRun={onRun} running={running} />
<div style={{ flex: 1, display: "flex", flexDirection: "column", overflow: "hidden", minHeight: 0 }}>
<PipelineStatus agents={agentStates} running={running} />
<TerminalLog logs={logs} />
</div>
</div>
);
}
function Header() {
return (
<div
style={{
padding: "14px 18px 10px",
borderBottom: `1px solid ${C.border}`,
flexShrink: 0,
}}
>
<div style={{ display: "flex", alignItems: "baseline", gap: 8, marginBottom: 3 }}>
<span style={{ fontSize: 15, fontWeight: 700, color: C.accent, letterSpacing: "0.05em" }}>TALP1</span>
<span style={{ fontSize: 10, color: C.dim }}>v0.1</span>
</div>
<div style={{ fontSize: 11, color: C.dim, lineHeight: 1.5 }}>multi-agent smart contract pipeline</div>
</div>
);
}
function InputForm({
requirements,
onChange,
onRun,
running,
}: {
requirements: string;
onChange: (v: string) => void;
onRun: (e: React.FormEvent) => void;
running: boolean;
}) {
const canRun = !running && requirements.trim().length > 0;
return (
<form
onSubmit={onRun}
style={{
padding: "12px 18px",
borderBottom: `1px solid ${C.border}`,
flexShrink: 0,
display: "flex",
flexDirection: "column",
gap: 8,
}}
>
<div style={{ fontSize: 10, color: C.dim, letterSpacing: "0.1em", textTransform: "uppercase", marginBottom: 2 }}>
requisitos
</div>
<textarea
value={requirements}
onChange={(e) => onChange(e.target.value)}
disabled={running}
rows={5}
placeholder="Descreva o smart contract a ser gerado, auditado e testado..."
style={{
width: "100%",
padding: "10px 12px",
fontSize: 12,
fontFamily: "inherit",
background: C.surface,
border: `1px solid ${C.border}`,
borderRadius: 5,
color: C.text,
resize: "none",
outline: "none",
lineHeight: 1.65,
transition: "border-color 0.15s",
}}
onFocus={(e) => (e.target.style.borderColor = `${C.accent}60`)}
onBlur={(e) => (e.target.style.borderColor = C.border)}
/>
<div style={{ display: "flex", gap: 8 }}>
<button
type="button"
onClick={() => onChange(DEFAULT_REQUIREMENT)}
disabled={running}
style={{
padding: "7px 10px",
fontSize: 11,
fontFamily: "inherit",
background: "transparent",
border: `1px solid ${C.border}`,
borderRadius: 4,
color: C.muted,
cursor: running ? "default" : "pointer",
opacity: running ? 0.4 : 1,
whiteSpace: "nowrap",
}}
>
usar exemplo
</button>
<button
type="submit"
disabled={!canRun}
style={{
flex: 1,
padding: "7px 14px",
fontSize: 12,
fontFamily: "inherit",
fontWeight: 600,
background: canRun ? C.accent : "transparent",
border: `1px solid ${canRun ? C.accent : C.border}`,
borderRadius: 4,
color: canRun ? "#fff" : C.dim,
cursor: canRun ? "pointer" : "default",
transition: "all 0.15s",
display: "flex",
alignItems: "center",
justifyContent: "center",
gap: 7,
}}
>
{running && (
<span
style={{
width: 10,
height: 10,
borderRadius: "50%",
border: "1.5px solid rgba(255,255,255,0.3)",
borderTopColor: "#fff",
display: "inline-block",
animation: "spin 0.7s linear infinite",
flexShrink: 0,
}}
/>
)}
{running ? "executando..." : "▶ executar"}
</button>
</div>
</form>
);
}
function PipelineStatus({ agents, running }: { agents: AgentState[]; running: boolean }) {
const anyActive = agents.some((a) => a.status === "running");
return (
<div
style={{
flexShrink: 0,
borderBottom: `1px solid ${C.border}`,
padding: "10px 0",
maxHeight: 280,
overflow: "auto",
}}
>
<div
style={{
display: "flex",
alignItems: "center",
gap: 8,
padding: "0 18px 6px",
}}
>
<span style={{ fontSize: 10, color: C.dim, letterSpacing: "0.1em", textTransform: "uppercase" }}>pipeline</span>
{anyActive && (
<span
style={{
width: 6,
height: 6,
borderRadius: "50%",
background: C.accent,
animation: "pulse 1.2s ease-in-out infinite",
flexShrink: 0,
}}
/>
)}
</div>
{agents.map((agent) => (
<AgentBlock key={agent.id} agent={agent} />
))}
</div>
);
}
function AgentBlock({ agent }: { agent: AgentState }) {
const color = AGENT_COLORS[agent.id] ?? C.muted;
const isRunning = agent.status === "running";
const isDone = agent.status === "done";
const isError = agent.status === "error";
const isSkipped = agent.status === "skipped";
return (
<div style={{ padding: "4px 18px" }}>
{/* Agent header */}
<div style={{ display: "flex", alignItems: "center", gap: 8, marginBottom: 3 }}>
<AgentDot status={agent.status} color={color} />
<span
style={{
fontSize: 11,
fontWeight: 600,
letterSpacing: "0.08em",
color: isDone || isRunning ? color : C.dim,
}}
>
{agent.label}
</span>
<span
style={{
marginLeft: "auto",
fontSize: 10,
color: isDone ? C.green : isError ? C.red : isSkipped ? C.dim : isRunning ? color : C.dim,
opacity: isDone || isError || isSkipped || isRunning ? 1 : 0.5,
}}
>
{isDone ? "done" : isError ? "error" : isSkipped ? "skip" : isRunning ? "running" : "pending"}
</span>
</div>
{/* Steps */}
<div style={{ paddingLeft: 20 }}>
{agent.steps.map((step) => (
<StepRow key={step.id} step={step} agentColor={color} />
))}
</div>
</div>
);
}
function AgentDot({ status, color }: { status: StepStatus; color: string }) {
if (status === "running") {
return (
<span
style={{
width: 8,
height: 8,
borderRadius: "50%",
border: `1.5px solid ${color}40`,
borderTopColor: color,
display: "inline-block",
animation: "spin 0.7s linear infinite",
flexShrink: 0,
}}
/>
);
}
if (status === "done") {
return <span style={{ color, fontSize: 10, lineHeight: 1 }}>✓</span>;
}
if (status === "error") {
return <span style={{ color: C.red, fontSize: 10, lineHeight: 1 }}>✗</span>;
}
if (status === "skipped") {
return <span style={{ color: C.dim, fontSize: 10, lineHeight: 1 }}>–</span>;
}
return <span style={{ color: C.dim, fontSize: 10, lineHeight: 1 }}>○</span>;
}
function StepRow({
step,
agentColor,
}: {
step: { label: string; status: StepStatus; detail?: string };
agentColor: string;
}) {
const isRunning = step.status === "running";
const isDone = step.status === "done";
const isError = step.status === "error";
const isSkipped = step.status === "skipped";
return (
<div
style={{
display: "flex",
alignItems: "center",
gap: 6,
padding: "2px 0",
fontSize: 11,
color: isDone ? C.muted : isRunning ? C.text : C.dim,
animation: isRunning ? "fadein 0.15s ease" : undefined,
}}
>
<span style={{ width: 10, flexShrink: 0, textAlign: "center" }}>
{isDone ? (
<span style={{ color: C.green, fontSize: 9 }}>✓</span>
) : isRunning ? (
<span
style={{
width: 6,
height: 6,
borderRadius: "50%",
border: `1px solid ${agentColor}40`,
borderTopColor: agentColor,
display: "inline-block",
animation: "spin 0.7s linear infinite",
}}
/>
) : isError ? (
<span style={{ color: C.red, fontSize: 9 }}>✗</span>
) : isSkipped ? (
<span style={{ color: C.dim, fontSize: 9 }}>–</span>
) : (
<span style={{ color: C.dim, fontSize: 9 }}>·</span>
)}
</span>
<span>{step.label}</span>
{step.detail && <span style={{ color: agentColor, fontSize: 10, opacity: 0.8 }}>{step.detail}</span>}
</div>
);
}
function logColor(log: string): string {
if (log.includes("[Coder]")) return "#58a6ff";
if (log.includes("[Auditor]")) return "#d29922";
if (log.includes("[Tester]")) return "#3fb950";
if (log.includes("[ERRO]") || log.toLowerCase().startsWith("error")) return "#f85149";
if (log === "Pipeline concluído.") return "#3fb950";
return "#6e7681";
}
function TerminalLog({ logs }: { logs: string[] }) {
const endRef = useRef<HTMLDivElement>(null);
useEffect(() => {
endRef.current?.scrollIntoView({ behavior: "smooth" });
}, [logs]);
return (
<div style={{ flex: 1, display: "flex", flexDirection: "column", overflow: "hidden", minHeight: 0 }}>
<div
style={{
padding: "6px 18px 4px",
borderBottom: `1px solid ${C.border}`,
flexShrink: 0,
display: "flex",
alignItems: "center",
gap: 8,
}}
>
<span style={{ fontSize: 10, color: C.dim, letterSpacing: "0.1em", textTransform: "uppercase" }}>terminal</span>
{logs.length > 0 && <span style={{ fontSize: 10, color: C.dim }}>{logs.length} lines</span>}
</div>
<div
style={{
flex: 1,
overflow: "auto",
padding: "10px 18px",
background: "#070c10",
fontSize: 11.5,
lineHeight: 1.7,
}}
>
{logs.length === 0 ? (
<span style={{ color: C.dim }}>
<BlinkCursor />
</span>
) : (
logs.map((log, i) => (
<div
key={i}
style={{
color: logColor(log),
display: "flex",
gap: 8,
animation: "fadein 0.1s ease",
}}
>
<span style={{ color: C.dim, userSelect: "none", flexShrink: 0 }}>›</span>
<span style={{ wordBreak: "break-word", whiteSpace: "pre-wrap" }}>{log}</span>
</div>
))
)}
<div ref={endRef} />
</div>
</div>
);
}
function BlinkCursor() {
return (
<span
style={{
display: "inline-block",
width: 7,
height: 13,
background: C.dim,
verticalAlign: "middle",
animation: "blink 1.2s step-end infinite",
borderRadius: 1,
}}
/>
);
}
|