Add a State Hub workplan/wait graph as a Fabric explorer mode.
Coordination is a view, not topology. Open workplans and wait tasks project into graph-explorer; citation edges recover depends_on from task prose. UI: /ui/graph-explorer?mode=coordination. Assistant: grok Assistant-Session: 01a09dc1-b21e-77e1-919e-fcad2f82b267
This commit is contained in:
parent
18fabb37ce
commit
b7724dedea
8 changed files with 366 additions and 2 deletions
|
|
@ -563,7 +563,10 @@ def graph_explorer_page() -> str:
|
|||
<script>
|
||||
(() => {
|
||||
const manifestUrl = "/exports/graph-explorer/manifest";
|
||||
const graphUrl = "/exports/graph-explorer";
|
||||
const graphMode = new URLSearchParams(window.location.search).get("mode");
|
||||
const graphUrl = graphMode === "coordination"
|
||||
? "/exports/graph-explorer?mode=coordination"
|
||||
: "/exports/graph-explorer";
|
||||
const canvas = document.getElementById("graph-canvas");
|
||||
const zoneOverlay = document.getElementById("zone-overlay");
|
||||
const popup = document.getElementById("popup");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue