File size: 7,788 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 | import { useState } from "react";
import type { ToolsetMeta, ToolProfile } from "../types";
import { modalOverlayStyle, modalPanelStyle } from "./modalStyles";
interface Props {
toolsets: ToolsetMeta[];
profiles: ToolProfile[]; // built-ins first, then custom
selectedId: string;
onSelect: (id: string) => void;
onSaveProfile: (p: ToolProfile) => void;
onDeleteProfile: (id: string) => void;
}
const selStyle: React.CSSProperties = {
background: "rgba(255,255,255,0.04)",
border: "1px solid var(--card-border)",
borderRadius: 6,
color: "var(--text)",
fontSize: 11,
padding: "3px 6px",
cursor: "pointer",
outline: "none",
maxWidth: 130,
};
export function ToolsMenu({ toolsets, profiles, selectedId, onSelect, onSaveProfile, onDeleteProfile }: Props) {
const [manageOpen, setManageOpen] = useState(false);
const builtins = profiles.filter((p) => p.builtin);
const custom = profiles.filter((p) => !p.builtin);
// Modal draft state — seeded from the currently selected profile when opened.
const selected = profiles.find((p) => p.id === selectedId);
const [draftName, setDraftName] = useState("");
const [draftEnabled, setDraftEnabled] = useState<Set<string>>(new Set());
function openManage() {
setDraftName("");
setDraftEnabled(new Set(selected?.enabled ?? []));
setManageOpen(true);
}
function toggle(name: string) {
setDraftEnabled((prev) => {
const next = new Set(prev);
next.has(name) ? next.delete(name) : next.add(name);
return next;
});
}
function save() {
const name = draftName.trim();
if (!name) return;
const id = `custom-${name.toLowerCase().replace(/[^a-z0-9]+/g, "-")}-${Date.now().toString(36)}`;
const profile: ToolProfile = { id, name, enabled: toolsets.map((t) => t.name).filter((n) => draftEnabled.has(n)) };
onSaveProfile(profile);
onSelect(id);
setManageOpen(false);
}
return (
<div style={{ display: "flex", alignItems: "center", gap: 6 }}>
<span style={{ fontSize: 10, color: "var(--text-dim)", userSelect: "none", flexShrink: 0 }}>Tools</span>
<select
value={selectedId}
onChange={(e) => onSelect(e.target.value)}
title="Toolset profile for new desks — fewer tools = faster first response"
style={selStyle}
>
<optgroup label="Presets">
{builtins.map((p) => (
<option key={p.id} value={p.id}>{p.name}</option>
))}
</optgroup>
{custom.length > 0 && (
<optgroup label="Custom">
{custom.map((p) => (
<option key={p.id} value={p.id}>{p.name}</option>
))}
</optgroup>
)}
</select>
<button
onClick={openManage}
title="Create / manage custom tool profiles"
style={{
background: "rgba(255,255,255,0.04)", border: "1px solid var(--card-border)",
borderRadius: 6, color: "var(--text-dim)", fontSize: 12, lineHeight: 1,
padding: "4px 7px", cursor: "pointer",
}}
>
✎
</button>
{manageOpen && (
<div
onClick={() => setManageOpen(false)}
style={{ ...modalOverlayStyle, zIndex: 1000 }}
>
<div
onClick={(e) => e.stopPropagation()}
style={{
...modalPanelStyle,
padding: 20, width: 420, maxHeight: "80vh", overflowY: "auto",
}}
>
<div style={{ fontSize: 14, fontWeight: 700, marginBottom: 4 }}>Tool profiles</div>
<div style={{ fontSize: 11, color: "var(--text-dim)", marginBottom: 14 }}>
Pick the toolsets a new desk should load. Fewer tools → faster first response.
</div>
{/* Toolset checklist. Hermes filters by toolset, not individual tool, so
each row is a group; the count + tooltip show what it contains. */}
<div style={{ fontSize: 10, color: "var(--text-dim)", marginBottom: 8 }}>
{toolsets.reduce((n, t) => n + (t.tools?.length ?? 1), 0)} tools across {toolsets.length} toolsets — toggle whole toolsets:
</div>
<div style={{ display: "grid", gridTemplateColumns: "1fr 1fr", gap: "6px 12px", marginBottom: 16 }}>
{toolsets.map((t) => (
<label
key={t.name}
title={(t.tools ?? [t.name]).join(", ")}
style={{ display: "flex", alignItems: "center", gap: 7, fontSize: 12, cursor: "pointer" }}
>
<input type="checkbox" checked={draftEnabled.has(t.name)} onChange={() => toggle(t.name)} />
<span>{t.label}</span>
<span style={{ fontSize: 9, color: "var(--text-dim)" }}>
{(t.tools?.length ?? 1) > 1 ? `${t.tools!.length} tools` : ""}{!t.lean ? " · heavy" : ""}
</span>
</label>
))}
</div>
{/* Save as new profile */}
<div style={{ display: "flex", gap: 8, marginBottom: 18 }}>
<input
value={draftName}
onChange={(e) => setDraftName(e.target.value)}
placeholder="New profile name…"
style={{
flex: 1, background: "rgba(255,255,255,0.06)", border: "1px solid var(--card-border)",
borderRadius: 6, padding: "6px 10px", color: "var(--text)", fontSize: 12, outline: "none",
}}
/>
<button
onClick={save}
disabled={!draftName.trim()}
style={{
padding: "0 14px", background: draftName.trim() ? "var(--accent2)" : "rgba(255,255,255,0.06)",
border: "none", borderRadius: 6, color: "white", fontSize: 12, fontWeight: 600,
cursor: draftName.trim() ? "pointer" : "default",
}}
>
Save
</button>
</div>
{/* Existing custom profiles */}
{custom.length > 0 && (
<div>
<div style={{ fontSize: 10, color: "var(--text-dim)", textTransform: "uppercase", letterSpacing: 0.5, marginBottom: 6 }}>
Saved profiles
</div>
{custom.map((p) => (
<div key={p.id} style={{ display: "flex", alignItems: "center", justifyContent: "space-between", padding: "5px 0", borderTop: "1px solid var(--card-border)" }}>
<div>
<span style={{ fontSize: 12, fontWeight: 600 }}>{p.name}</span>
<span style={{ fontSize: 10, color: "var(--text-dim)", marginLeft: 8 }}>{p.enabled.length} tools</span>
</div>
<button
onClick={() => onDeleteProfile(p.id)}
title="Delete profile"
style={{ background: "none", border: "none", color: "var(--text-dim)", cursor: "pointer", fontSize: 14 }}
>
✕
</button>
</div>
))}
</div>
)}
<div style={{ textAlign: "right", marginTop: 16 }}>
<button
onClick={() => setManageOpen(false)}
style={{
padding: "6px 14px", background: "rgba(255,255,255,0.06)", border: "1px solid var(--card-border)",
borderRadius: 6, color: "var(--text)", fontSize: 12, cursor: "pointer",
}}
>
Close
</button>
</div>
</div>
</div>
)}
</div>
);
}
|