mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-11 11:16:55 +00:00
feat(nodes): hide hub-only views when active node is remote (#1007)
* feat(nodes): hide hub-only views when active node is remote Fleet, Schedules, Audit, Logs, and Auto-Update operate on hub-owned state (node registry, fleet schedules, centralized audit, fleet-wide log aggregation, fleet-wide update preview). When the active node is remote, proxying those surfaces would show that remote's own disconnected state instead of the hub's. Hide them from the nav strip and force-redirect to Home if one was open during the node switch. Backend hubOnlyGuard middleware sits between nodeContextMiddleware and the remote proxy and rejects /api/scheduled-tasks, /api/audit-log, and /api/notification-routes with 403 + HUB_ONLY_ENDPOINT when nodeId resolves to a remote, closing the script-bypass path the UI gating cannot reach. Settings sub-sections were already gated via the hiddenOnRemote registry; this extends the same model to top-level views. * docs(nodes): note hub-only visibility on Fleet, Schedules, Audit, Logs, Auto-Update Each of the five hub-only feature pages now points readers to the canonical "What top-level views show when a remote node is active" section in multi-node.mdx, so users landing directly on a feature page understand why the nav item disappears when they switch to a remote node.
This commit is contained in:
@@ -66,6 +66,20 @@ Click any row to switch. All views (dashboard stats, stack list, editor, resourc
|
||||
<img src="/images/multi-node/node-switcher-dropdown.png" alt="Node switcher popover listing connected nodes with type, version, and active-row accent" />
|
||||
</Frame>
|
||||
|
||||
## What top-level views show when a remote node is active
|
||||
|
||||
Top-level views that manage fleet-wide state are scoped to the local hub and are hidden from the nav strip when a remote node is the active selection. They reappear automatically when you switch back to your local node.
|
||||
|
||||
| View | Why it is hub-only |
|
||||
|------|--------------------|
|
||||
| **Fleet** | Manages your node registry and cross-node topology; only meaningful from the hub. |
|
||||
| **Schedules** | Schedules are dispatched from the hub to target nodes. |
|
||||
| **Audit** | Audit history is centralized on the hub. |
|
||||
| **Logs** | Aggregates logs across the fleet. |
|
||||
| **Auto-Update** | Compares image versions across all nodes in your fleet. |
|
||||
|
||||
Node-level views (Home, Resources, App Store, Console, the editor) work as expected against whichever node you have selected.
|
||||
|
||||
## Per-node scheduling and update indicators
|
||||
|
||||
The Nodes table surfaces scheduling and update status at a glance for each node:
|
||||
|
||||
Reference in New Issue
Block a user