frontend: split hive-agent-menu's generic dropdown mechanics into a shared hive-menu component
<hive-agent-menu> bundled two concerns: the agent-specific trigger/item list, and generic "click a trigger, get a positioned dropdown" mechanics (shadow attach, open/close, singleton close-on-open coordination, outside-click/Escape handling). Pulled the latter out into a new @hive/shared/hive-menu.js (<hive-menu>), following the established per-component-directory + ._opts-before-append shadow-DOM pattern (<hive-dialog>). <hive-agent-menu> now just builds the "⋮" trigger and the action list and hands them to an internal <hive-menu> instance. <hive-menu> takes ownership of every <hive-menu> instance in the app for singleton coordination (closeAllMenus, renamed from closeAllAgentMenus) — a deliberate widening from the old per-agent-menu-only tracking, since the mechanism was never agent-specific to begin with. The one subtlety worth spelling out: <hive-menu> projects the caller's opaque trigger/content nodes via named <slot>s rather than moving them into its own shadow root. That's load-bearing, not cosmetic — if it re-parented them into its own shadow tree instead, <hive-agent-menu>'s own classes (.agent-menu-btn, .agent-menu-item, ...) would stop applying, since a <style> only styles elements within the same shadow tree/document it's part of, and only slotting (not re-parenting) keeps the caller's nodes in the caller's own tree for styling purposes. That in turn made <hive-agent-menu>'s own shadow root redundant once it wasn't the thing positioning or owning open/close state anymore, so it's dropped in favor of a plain light-DOM element styled by dashboard.css (already the one page it renders on) — hive-agent-menu.css is gone, its rules folded into dashboard.css's per-agent-menu section, minus the positioning rules that moved into hive-menu.css as the new generic `.menu-dropdown` wrapper. Verified with a standalone esbuild bundle + a cached nix chromium driven over raw CDP (no puppeteer/playwright/python3 available): hover-reveal opacity, dropdown open/close/positioning, outside-click/Escape dismissal, and cross-instance singleton coordination all behave identically to before the split.
This commit is contained in:
parent
f7b19c9d56
commit
395c9a6df2
7 changed files with 272 additions and 203 deletions
|
|
@ -11,7 +11,8 @@ import { themedConfirm, themedToast } from '@hive/shared/modal.js';
|
|||
import {
|
||||
containersState, questionsState,
|
||||
} from './state.js';
|
||||
import { closeAllAgentMenus } from './agent-menu/hive-agent-menu.js';
|
||||
import { closeAllMenus } from '@hive/shared/hive-menu.js';
|
||||
import './agent-menu/hive-agent-menu.js'; // registers <hive-agent-menu> — side-effect import
|
||||
|
||||
// Context-window badge thresholds. Preferred source is each container's
|
||||
// `context_window_tokens` from /api/state (the real window for the model
|
||||
|
|
@ -185,12 +186,15 @@ document.addEventListener('click', (e) => {
|
|||
// stopped; rebuild + destroy/purge always shown.
|
||||
// The button is CSS-invisible until the row is hovered (or menu is
|
||||
// open) so it doesn't clutter quiet rows.
|
||||
// Rendering + all interaction/coordination logic lives in the
|
||||
// <hive-agent-menu> shadow-DOM custom element (./agent-menu/hive-agent-menu.js,
|
||||
// imported above for its `closeAllAgentMenus` export and its
|
||||
// customElements.define side effect); this is a thin wrapper matching
|
||||
// <hive-dialog>'s `._opts`-before-append convention, since a custom
|
||||
// element created via `document.createElement` can't take constructor args.
|
||||
// Rendering + agent-specific interaction lives in the <hive-agent-menu>
|
||||
// custom element (./agent-menu/hive-agent-menu.js, imported above for its
|
||||
// customElements.define side effect); the generic dropdown mechanics
|
||||
// (open/close, positioning, singleton coordination — closed via
|
||||
// `closeAllMenus` below) live in the shared `<hive-menu>` component it
|
||||
// composes internally (@hive/shared/hive-menu.js). This is a thin
|
||||
// wrapper matching <hive-dialog>'s `._opts`-before-append convention,
|
||||
// since a custom element created via `document.createElement` can't
|
||||
// take constructor args.
|
||||
function buildAgentMenu(c, forgeBase) {
|
||||
const menu = document.createElement('hive-agent-menu');
|
||||
menu._opts = { c, forgeBase };
|
||||
|
|
@ -226,7 +230,7 @@ function derivePortConflicts(containers) {
|
|||
function buildAgentTree(containers) {
|
||||
// Close any open context menu before replacing the DOM tree — the
|
||||
// previous dropdown element would otherwise be a stale reference.
|
||||
closeAllAgentMenus();
|
||||
closeAllMenus();
|
||||
const byName = new Map();
|
||||
for (const c of containers) byName.set(c.name, c);
|
||||
const children = new Map(); // parent_name -> [child_name, ...]
|
||||
|
|
|
|||
Loading…
Reference in a new issue