File size: 5,105 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 | import { useEffect, useRef } from "react";
import type { AgentProfile } from "../types";
import type { RosterLayout } from "../rosterLayout";
import { AgentRoster } from "./AgentRoster";
interface Props {
agents: AgentProfile[];
defaultModel?: string;
open: boolean;
onOpenChange: (open: boolean) => void;
dragActive?: boolean;
dropHighlight?: boolean;
rosterRef: React.RefObject<HTMLDivElement | null>;
rosterLayout: RosterLayout;
sectionDropHoverId?: string | null;
onAgentDragStart?: (e: React.MouseEvent, agentId: string, color?: string) => void;
onAgentEdit?: (agent: AgentProfile) => void;
onDefaultEdit?: () => void;
onCreateAgent?: () => void;
}
const HEADER_H = 57;
export function AgentRosterMenu({
agents, defaultModel, open, onOpenChange,
dragActive, dropHighlight, rosterRef,
rosterLayout, sectionDropHoverId,
onAgentDragStart, onAgentEdit, onDefaultEdit, onCreateAgent,
}: Props) {
const wrapRef = useRef<HTMLDivElement>(null);
const highlighted = Boolean(dragActive && dropHighlight);
useEffect(() => {
if (dragActive && dropHighlight) onOpenChange(true);
}, [dragActive, dropHighlight, onOpenChange]);
useEffect(() => {
if (!open || dragActive) return;
function onDoc(e: MouseEvent) {
const t = e.target as Node;
if (wrapRef.current?.contains(t)) return;
if (rosterRef.current?.contains(t)) return;
onOpenChange(false);
}
window.addEventListener("mousedown", onDoc);
return () => window.removeEventListener("mousedown", onDoc);
}, [open, dragActive, onOpenChange, rosterRef]);
return (
<>
<div ref={wrapRef} style={{ position: "relative", flexShrink: 0 }}>
<button
type="button"
onClick={() => onOpenChange(!open)}
title={open ? "Close Agent Profiles" : "Agent Profiles — view profiles & drag to desks"}
style={{
height: 28, padding: "0 10px",
background: open || highlighted ? "#0f3048" : "#121828",
border: highlighted ? "2px dashed var(--accent2)" : "1px solid #2a3558",
borderRadius: 6,
color: open || highlighted ? "var(--accent2)" : "var(--text-dim)",
fontSize: 10, fontWeight: 600, cursor: "pointer",
display: "flex", alignItems: "center", gap: 6,
}}
>
👥 Agent Profiles
</button>
</div>
{open && (
<>
<div
data-roster-backdrop=""
style={{
position: "fixed", inset: 0, top: HEADER_H, zIndex: 480,
background: "rgba(0,0,0,0.25)",
pointerEvents: dragActive ? "none" : "auto",
}}
onMouseDown={() => { if (!dragActive) onOpenChange(false); }}
/>
<div
ref={rosterRef as React.RefObject<HTMLDivElement>}
style={{
position: "fixed",
top: HEADER_H,
right: 0,
bottom: 0,
zIndex: 500,
width: "min(380px, 92vw)",
borderLeft: highlighted ? "2px dashed var(--accent2)" : "1px solid #2a3558",
background: "#16213e",
boxShadow: "-8px 0 32px rgba(0,0,0,0.45)",
display: "flex",
flexDirection: "column",
animation: "rosterSlideIn 0.22s ease-out",
}}
>
<div style={{
display: "flex", alignItems: "center", justifyContent: "space-between",
padding: "12px 16px 10px",
borderBottom: "1px solid rgba(255,255,255,0.08)",
flexShrink: 0,
}}>
<span style={{ fontSize: 20, fontWeight: 800, color: "var(--text)", letterSpacing: 0.2 }}>
Agent Profiles
</span>
<button
type="button"
onClick={() => onOpenChange(false)}
style={{
background: "transparent", border: "none",
color: "var(--text-dim)", cursor: "pointer", fontSize: 16, lineHeight: 1,
}}
>
✕
</button>
</div>
<div style={{
flex: 1, overflow: "auto",
padding: "14px 16px 16px",
}}>
<AgentRoster
agents={agents}
defaultModel={defaultModel}
dragActive={dragActive}
dropHighlight={dropHighlight}
rosterLayout={rosterLayout}
sectionDropHoverId={sectionDropHoverId}
onAgentDragStart={onAgentDragStart}
onAgentEdit={onAgentEdit}
onDefaultEdit={onDefaultEdit}
onCreateAgent={onCreateAgent}
/>
</div>
</div>
<style>{`
@keyframes rosterSlideIn {
from { transform: translateX(100%); opacity: 0.6; }
to { transform: translateX(0); opacity: 1; }
}
`}</style>
</>
)}
</>
);
}
|