UNPKG

gojs

Version:

Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams

296 lines (272 loc) 12.7 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"/> <meta name="description" content="A diagram where nodes may belong to multiple groups."/> <link rel="stylesheet" href="../assets/css/style.css"/> <!-- Copyright 1998-2023 by Northwoods Software Corporation. --> <title>Shared States</title> </head> <body> <!-- This top nav is not part of the sample code --> <nav id="navTop" class="w-full z-30 top-0 text-white bg-nwoods-primary"> <div class="w-full container max-w-screen-lg mx-auto flex flex-wrap sm:flex-nowrap items-center justify-between mt-0 py-2"> <div class="md:pl-4"> <a class="text-white hover:text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl rounded-lg hover:bg-nwoods-secondary " href="../"> <h1 class="my-0 p-1 ">GoJS</h1> </a> </div> <button id="topnavButton" class="rounded-lg sm:hidden focus:outline-none focus:ring" aria-label="Navigation"> <svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6"> <path id="topnavOpen" fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path> <path id="topnavClosed" class="hidden" fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path> </svg> </button> <div id="topnavList" class="hidden sm:block items-center w-auto mt-0 text-white p-0 z-20"> <ul class="list-reset list-none font-semibold flex justify-end flex-wrap sm:flex-nowrap items-center px-0 pb-0"> <li class="p-1 sm:p-0"><a class="topnav-link" href="../learn/">Learn</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../samples/">Samples</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../intro/">Intro</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../api/">API</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/products/register.html">Register</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../download.html">Download</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://forum.nwoods.com/c/gojs/11">Forum</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/contact.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/contact.html', 'contact');">Contact</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/sales/index.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/sales/index.html', 'buy');">Buy</a></li> </ul> </div> </div> <hr class="border-b border-gray-600 opacity-50 my-0 py-0" /> </nav> <div class="md:flex flex-col md:flex-row md:min-h-screen w-full max-w-screen-xl mx-auto"> <div id="navSide" class="flex flex-col w-full md:w-48 text-gray-700 bg-white flex-shrink-0"></div> <!-- * * * * * * * * * * * * * --> <!-- Start of GoJS sample code --> <script src="../release/go.js"></script> <div id="allSampleContent" class="p-4 w-full"> <script id="code"> function init() { // Since 2.2 you can also author concise templates with method chaining instead of GraphObject.make // For details, see https://gojs.net/latest/intro/buildingObjects.html const $ = go.GraphObject.make; // for conciseness in defining templates myDiagram = new go.Diagram("myDiagramDiv", // must name or refer to the DIV HTML element { allowCopy: false, allowDelete: false, draggingTool: $(CustomDraggingTool), layout: $(CustomLayout), // enable undo & redo "undoManager.isEnabled": true }); // define the Node template myDiagram.nodeTemplate = $(go.Node, "Auto", new go.Binding("location", "loc", go.Point.parse).makeTwoWay(go.Point.stringify), // define the node's outer shape, which will surround the TextBlock $(go.Shape, "RoundedRectangle", { fill: "rgb(254, 201, 0)", stroke: "black", parameter1: 20, // the corner has a large radius portId: "", fromSpot: go.Spot.AllSides, toSpot: go.Spot.AllSides }), $(go.TextBlock, new go.Binding("text", "text").makeTwoWay()) ); myDiagram.nodeTemplateMap.add("Super", $(go.Node, "Auto", { locationObjectName: "BODY" }, $(go.Shape, "RoundedRectangle", { fill: "rgba(128, 128, 64, 0.5)", strokeWidth: 1.5, parameter1: 20, spot1: go.Spot.TopLeft, spot2: go.Spot.BottomRight, minSize: new go.Size(30, 30) }), $(go.Panel, "Vertical", { margin: 10 }, $(go.TextBlock, { font: "bold 10pt sans-serif", margin: new go.Margin(0, 0, 5, 0) }, new go.Binding("text")), $(go.Shape, { name: "BODY", opacity: 0 }) ) )); // replace the default Link template in the linkTemplateMap myDiagram.linkTemplate = $(go.Link, // the whole link panel { routing: go.Link.Orthogonal, corner: 10 }, $(go.Shape, // the link shape { strokeWidth: 1.5 }), $(go.Shape, // the arrowhead { toArrow: "Standard", stroke: null }) ); // read in the JSON-format data from the "mySavedModel" element load(); } // A custom layout that sizes each "Super" node to be big enough to cover all of it member nodes class CustomLayout extends go.Layout { doLayout(coll) { coll = this.collectParts(coll); const supers = new go.Set(/*go.Node*/); coll.each(p => { if (p instanceof go.Node && p.category === "Super") supers.add(p); }); function membersOf(sup, diag) { const set = new go.Set(/*go.Part*/); const arr = sup.data._members; for (let i = 0; i < arr.length; i++) { const d = arr[i]; set.add(diag.findNodeForData(d)); } return set; } function isReady(sup, supers, diag) { const arr = sup.data._members; for (let i = 0; i < arr.length; i++) { const d = arr[i]; if (d.category !== "Super") continue; const n = diag.findNodeForData(d); if (supers.has(n)) return false; } return true; } // implementations of doLayout that do not make use of a LayoutNetwork // need to perform their own transactions this.diagram.startTransaction("Custom Layout"); while (supers.count > 0) { let ready = null; const it = supers.iterator; while (it.next()) { if (isReady(it.value, supers, this.diagram)) { ready = it.value; break; } } supers.remove(ready); const b = this.diagram.computePartsBounds(membersOf(ready, this.diagram)); ready.location = b.position; const body = ready.findObject("BODY"); if (body) body.desiredSize = b.size; } this.diagram.commitTransaction("Custom Layout"); } } // end CustomLayout // Define a custom DraggingTool class CustomDraggingTool extends go.DraggingTool { moveParts(parts, offset, check) { super.moveParts(parts, offset, check); this.diagram.layoutDiagram(true); } computeEffectiveCollection(parts) { const coll = new go.Set(/*go.Part*/).addAll(parts); parts.each(p => this.walkSubTree(p, coll)); return super.computeEffectiveCollection(coll); }; // Find other attached nodes. walkSubTree(sup, coll) { if (sup === null) return; coll.add(sup); if (sup.category !== "Super") return; // recurse through this super state's members const model = this.diagram.model; const mems = sup.data._members; if (mems) { for (let i = 0; i < mems.length; i++) { const mdata = mems[i]; this.walkSubTree(this.diagram.findNodeForData(mdata), coll); } } } } // end CustomDraggingTool class // Show the diagram's model in JSON format function save() { document.getElementById("mySavedModel").value = myDiagram.model.toJson(); myDiagram.isModified = false; } function load() { myDiagram.model = go.Model.fromJson(document.getElementById("mySavedModel").value); // make sure all data have up-to-date "members" collections // this does not prevent any "cycles" of membership, which would result in undefined behavior const arr = myDiagram.model.nodeDataArray; for (let i = 0; i < arr.length; i++) { const data = arr[i]; const supers = data.supers; if (supers) { for (let j = 0; j < supers.length; j++) { const sdata = myDiagram.model.findNodeDataForKey(supers[j]); if (sdata) { // update _supers to be an Array of references to node data if (!data._supers) { data._supers = [sdata]; } else { data._supers.push(sdata); } // update _members to be an Array of references to node data if (!sdata._members) { sdata._members = [data]; } else { sdata._members.push(data); } } } } } } window.addEventListener('DOMContentLoaded', init); </script> <div id="sample"> <div id="myDiagramDiv" style="border: solid 1px black; width: 100%; height: 400px"></div> <p> This demonstrates the ability to simulate having nodes be members of multiple "groups". Regular <a>Group</a>s only support a single <a>Part.containingGroup</a> for nodes. This sample does not make use of <a>Group</a>s at all, but simulates one possible "grouping" relationship using a custom <a>Layout</a> and a custom <a>DraggingTool</a>. </p> <p> The CustomLayout assumes regular nodes already have real locations, and only assigns <a>Part.location</a> to "Super" nodes. It also sets the <a>GraphObject.desiredSize</a> on the "BODY" element of each "Super" node, based on the area occupied by all of its member nodes. The CustomDraggingTool overrides the <a>DraggingTool.computeEffectiveCollection</a> method to determine what nodes to drag around. </p> <p> This sample does not support dynamic restructuring of the relationships in the graph. </p> <button id="SaveButton" onclick="save()">Save</button> <button onclick="load()">Load</button> Diagram Model saved in JSON format: <br /> <textarea id="mySavedModel" style="width:100%;height:300px"> { "class": "go.GraphLinksModel", "nodeDataArray": [ { "key": -1, "text": "Operating", "category": "Super" }, { "key": -2, "text": "Drying", "category": "Super", "supers": [-1] }, { "key": -3, "text": "Non Drying", "category": "Super" }, { "key": 1, "loc": "100 100", "text": "Starting.End", "supers": [-2] }, { "key": 2, "loc": "250 100", "text": "Running", "supers": [-2] }, { "key": 3, "loc": "100 200", "text": "Starting.Init", "supers": [-1, -3] }, { "key": 4, "loc": "250 200", "text": "Washing", "supers": [-1, -3] }, { "key": 5, "loc": "100 300", "text": "Stopped", "supers": [-3] }, { "key": 6, "loc": "250 300", "text": "Stopping", "supers": [-3] } ], "linkDataArray": [ { "from": 1, "to": 2 }, { "from": 3, "to": 1 }, { "from": 4, "to": 2 }, { "from": -2, "to": 4 }, { "from": 5, "to": 3 }, { "from": 6, "to": 5 }, { "from": -1, "to": 5 } ] } </textarea></div> </div> <!-- * * * * * * * * * * * * * --> <!-- End of GoJS sample code --> </div> </body> <!-- This script is part of the gojs.net website, and is not needed to run the sample --> <script src="../assets/js/goSamples.js"></script> </html>