7357070fb9
Deletes desktop/ (Electron wrapper), deployments/ (Helm/Kustomize/ Terraform/CI for cloud deploy), and monitoring/ (Prometheus + Grafana stack) along with DESKTOP.md, DEPLOYMENT.md, docker-compose.full.yml, their npm scripts, and every dangling reference across README, ARCHITECTURE, INSTALL, SETUP, docs/, and the repeated per-file MODULE_GUIDE "Observability" boilerplate comment. The GET /api/metrics endpoint itself is untouched — it's the dashboard's own route, not part of the removed monitoring stack.
178 lines
7.2 KiB
TypeScript
178 lines
7.2 KiB
TypeScript
/**
|
|
* @file FieldHelp.tsx
|
|
* @description Contextual "(?)" help trigger for dense settings forms. Opens a
|
|
* rich popover with title, description, optional example chips, and an optional
|
|
* footnote — all portaled to `<body>` and repositioned on scroll/resize so the
|
|
* panel never clips inside scrolling cards.
|
|
*
|
|
* ## Interaction model
|
|
* Opens on hover, focus, or click (toggle). Escape dismisses. The popover uses
|
|
* `pointer-events-none` so moving the pointer toward it does not accidentally
|
|
* close the trigger's hover state mid-read.
|
|
*
|
|
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
|
|
*/
|
|
/* =============================================================================
|
|
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
|
|
* =============================================================================
|
|
* **Purpose:** Dashboard module consumed by the React client, MCP tools, or desktop shell depending on deployment mode.
|
|
*
|
|
* ## Design constraints
|
|
* - Local-first: no telemetry leaves the machine unless the user configures webhooks.
|
|
* - Fail-safe hooks path on the server must never block Claude Code; UI mirrors that
|
|
* philosophy by degrading gracefully (empty states, stale badges, reconnect loops).
|
|
* - Destructive flows stay behind explicit confirmation modals and server-side gates.
|
|
* - Internationalization: user-visible strings belong in i18n JSON, not literals here.
|
|
*
|
|
* ## Remote data & SSH
|
|
* Remote Data Sources let operators aggregate multiple machines. SSH entries describe
|
|
* how to reach a peer dashboard; the global data scope (`dataScope.ts`) narrows every
|
|
* scoped GET via `?sources=`. Health checks and import history surface in Settings.
|
|
*
|
|
* ## Public surface
|
|
* - `FieldHelpProps` — exported API; see TSDoc on the symbol for behavior.
|
|
* - `FieldHelp` — exported API; see TSDoc on the symbol for behavior.
|
|
*
|
|
* ## Testing pointers
|
|
* - Prefer colocated `__tests__` with Vitest + Testing Library for UI.
|
|
* - Server contract changes require `npm run test:server` and OpenAPI sync.
|
|
* - MCP edits: `npm run mcp:typecheck` and `npm run mcp:build`.
|
|
*
|
|
* ## Related docs
|
|
* - `ARCHITECTURE.md` — hooks → API → SQLite → WebSocket → UI pipeline.
|
|
* - `docs/API.md` — REST reference.
|
|
* - `.claude/skills/file-headers/` — mandatory `@author` header policy.
|
|
* ============================================================================= */
|
|
/* -----------------------------------------------------------------------------
|
|
* EXPORT CATALOG — quick index of symbols defined below (documentation only).
|
|
* -----------------------------------------------------------------------------
|
|
* **FieldHelpProps**
|
|
* Part of this module's public contract. Downstream imports should treat
|
|
* the signature and return type as stable unless release notes say otherwise.
|
|
* When behavior changes, update the `@file` overview and relevant tests.
|
|
*
|
|
* **FieldHelp**
|
|
* Part of this module's public contract. Downstream imports should treat
|
|
* the signature and return type as stable unless release notes say otherwise.
|
|
* When behavior changes, update the `@file` overview and relevant tests.
|
|
*
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
import { createPortal } from "react-dom";
|
|
import { useTranslation } from "react-i18next";
|
|
import { HelpCircle } from "lucide-react";
|
|
|
|
/** Props for {@link FieldHelp}. */
|
|
export interface FieldHelpProps {
|
|
/** Optional bold heading inside the popover. */
|
|
title?: string;
|
|
/** Main explanatory copy. */
|
|
description: string;
|
|
/** Short example values rendered as monospace chips. */
|
|
examples?: string[];
|
|
/** Secondary note shown below examples. */
|
|
note?: string;
|
|
}
|
|
|
|
/**
|
|
* Inline help control for form fields.
|
|
* @param props See {@link FieldHelpProps}.
|
|
*/
|
|
export function FieldHelp({ title, description, examples, note }: FieldHelpProps) {
|
|
const { t } = useTranslation("common");
|
|
const [open, setOpen] = useState(false);
|
|
const btnRef = useRef<HTMLButtonElement>(null);
|
|
const popRef = useRef<HTMLDivElement>(null);
|
|
const [pos, setPos] = useState<{ left: number; top: number }>({ left: 0, top: 0 });
|
|
|
|
const place = useCallback(() => {
|
|
const btn = btnRef.current;
|
|
const pop = popRef.current;
|
|
if (!btn) return;
|
|
const r = btn.getBoundingClientRect();
|
|
const w = pop?.offsetWidth ?? 300;
|
|
const h = pop?.offsetHeight ?? 120;
|
|
const pad = 10;
|
|
let left = r.left + r.width / 2 - w / 2;
|
|
if (left < pad) left = pad;
|
|
if (left + w > window.innerWidth - pad) left = window.innerWidth - w - pad;
|
|
let top = r.bottom + 8;
|
|
if (top + h > window.innerHeight - pad) top = r.top - h - 8; // flip up
|
|
setPos({ left, top });
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!open) return;
|
|
place();
|
|
const onScroll = () => place();
|
|
window.addEventListener("scroll", onScroll, true);
|
|
window.addEventListener("resize", onScroll);
|
|
const onKey = (e: KeyboardEvent) => e.key === "Escape" && setOpen(false);
|
|
document.addEventListener("keydown", onKey);
|
|
return () => {
|
|
window.removeEventListener("scroll", onScroll, true);
|
|
window.removeEventListener("resize", onScroll);
|
|
document.removeEventListener("keydown", onKey);
|
|
};
|
|
}, [open, place]);
|
|
|
|
return (
|
|
<span className="relative inline-flex">
|
|
<button
|
|
ref={btnRef}
|
|
type="button"
|
|
aria-label={title || t("help")}
|
|
onMouseEnter={() => setOpen(true)}
|
|
onMouseLeave={() => setOpen(false)}
|
|
onFocus={() => setOpen(true)}
|
|
onBlur={() => setOpen(false)}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
setOpen((v) => !v);
|
|
}}
|
|
className="text-fg-muted hover:text-fg-secondary transition-colors"
|
|
>
|
|
<HelpCircle className="w-3.5 h-3.5" />
|
|
</button>
|
|
{open &&
|
|
createPortal(
|
|
<div
|
|
ref={popRef}
|
|
role="tooltip"
|
|
style={{
|
|
position: "fixed",
|
|
left: pos.left,
|
|
top: pos.top,
|
|
zIndex: 99999,
|
|
maxWidth: 320,
|
|
}}
|
|
className="rounded-lg border border-border bg-surface-1 shadow-xl shadow-black/40 p-3 w-[300px] pointer-events-none"
|
|
>
|
|
{title && <p className="text-xs font-semibold text-fg-secondary mb-1">{title}</p>}
|
|
<p className="text-[11px] leading-relaxed text-fg-secondary">{description}</p>
|
|
{examples && examples.length > 0 && (
|
|
<div className="mt-2">
|
|
<p className="text-[10px] uppercase tracking-wider text-fg-muted mb-1">
|
|
{t("examples")}
|
|
</p>
|
|
<div className="flex flex-wrap gap-1">
|
|
{examples.map((ex) => (
|
|
<code
|
|
key={ex}
|
|
className="text-[10px] font-mono text-accent bg-accent/10 border border-accent/20 rounded px-1.5 py-0.5"
|
|
>
|
|
{ex}
|
|
</code>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
{note && <p className="text-[10px] text-fg-muted mt-2 leading-relaxed">{note}</p>}
|
|
</div>,
|
|
document.body
|
|
)}
|
|
</span>
|
|
);
|
|
}
|