more advanced model for goJS

master
Hasan al Rasyid 3 years ago
parent 0411f2d79d
commit f8c6ab78be
  1. 124
      script/goJSmodel.js

@ -1,33 +1,99 @@
var myDiagram = $(go.Diagram, "myDiagramDiv", var myDiagram =
$(go.Diagram, "myDiagramDiv",
{ // automatically scale the diagram to fit the viewport's size
initialAutoScale: go.Diagram.Uniform,
// disable user copying of parts
allowCopy: false,
// position all of the nodes and route all of the links
layout: $(go.LayeredDigraphLayout,
{ {
"animationManager.isEnabled": false, direction: 90,
"undoManager.isEnabled": true // enable undo & redo layerSpacing: 10,
columnSpacing: 15,
setsPortSpots: false
})
}); });
function convertKeyImage(key) {
// define a simple Node template if (!key) key = "NE";
myDiagram.nodeTemplate = return "https://www.nwoods.com/go/beatpaths/" + key + "_logo-75x50.png";
$(go.Node, "Auto", // the Shape will go around the TextBlock }
$(go.Shape, "RoundedRectangle", { strokeWidth: 0 }, // replace the default Node template in the nodeTemplateMap
// Shape.fill is bound to Node.data.color myDiagram.nodeTemplate =
new go.Binding("fill", "color")), $(go.Node, "Vertical", // the whole node panel
$(go.TextBlock, $(go.TextBlock, // the text label
{ margin: 8 }, // some room around the text new go.Binding("text", "key")),
// TextBlock.text is bound to Node.data.key $(go.Picture, // the icon showing the logo
new go.Binding("text", "key")) // You should set the desiredSize (or width and height)
// whenever you know what size the Picture should be.
{ desiredSize: new go.Size(75, 50) },
new go.Binding("source", "key", convertKeyImage))
);
// replace the default Link template in the linkTemplateMap
myDiagram.linkTemplate =
$(go.Link, // the whole link panel
{ curve: go.Link.Bezier, toShortLength: 2 },
$(go.Shape, // the link shape
{ strokeWidth: 1.5 }),
$(go.Shape, // the arrowhead
{ toArrow: "Standard", stroke: null })
); );
// create the model data that will be represented by Nodes and Links // the array of link data objects: the relationships between the nodes
myDiagram.model = new go.GraphLinksModel( var linkDataArray = [
[ { from: "CAR", to: "ARI" },
{ key: "Alpha", color: "lightblue" }, { from: "ARI", to: "CIN" },
{ key: "Beta", color: "orange" }, { from: "ARI", to: "GB" },
{ key: "Gamma", color: "lightgreen" }, { from: "DEN", to: "GB" },
{ key: "Delta", color: "pink" } { from: "DEN", to: "CIN" },
], { from: "DEN", to: "NE" },
[ { from: "GB", to: "WAS" },
{ from: "Alpha", to: "Beta" }, { from: "WAS", to: "STL" },
{ from: "Alpha", to: "Gamma" }, { from: "CIN", to: "STL" },
{ from: "Beta", to: "Beta" }, { from: "STL", to: "SEA" },
{ from: "Gamma", to: "Delta" }, { from: "SEA", to: "SF" },
{ from: "Delta", to: "Alpha" } { from: "SEA", to: "MIN" },
]); { from: "NE", to: "NYG" },
{ from: "NE", to: "KC" },
{ from: "MIN", to: "DET" },
{ from: "MIN", to: "KC" },
{ from: "KC", to: "HOU" },
{ from: "KC", to: "BUF" },
{ from: "KC", to: "BAL" },
{ from: "KC", to: "OAK" },
{ from: "BUF", to: "NYJ" },
{ from: "BAL", to: "PIT" },
{ from: "DET", to: "NO" },
{ from: "DET", to: "PHI" },
{ from: "DET", to: "CHI" },
{ from: "HOU", to: "JAC" },
{ from: "HOU", to: "TEN" },
{ from: "PIT", to: "IND" },
{ from: "PIT", to: "SD" },
{ from: "OAK", to: "NYJ" },
{ from: "OAK", to: "SD" },
{ from: "NO", to: "ATL" },
{ from: "NO", to: "NYG" },
{ from: "PHI", to: "NYG" },
{ from: "CHI", to: "TB" },
{ from: "NYJ", to: "IND" },
{ from: "NYJ", to: "CLE" },
{ from: "IND", to: "TB" },
{ from: "TB", to: "ATL" },
{ from: "SD", to: "CLE" },
{ from: "ATL", to: "DAL" },
{ from: "ATL", to: "JAC" },
{ from: "CLE", to: "TEN" },
{ from: "DAL", to: "MIA" },
{ from: "MIA", to: "TEN" }
];
// create the model and assign it to the Diagram
myDiagram.model =
new go.GraphLinksModel(
{ // automatically create node data objects for each "from" or "to" reference
// (set this property before setting the linkDataArray)
archetypeNodeData: {},
// process all of the link relationship data
linkDataArray: linkDataArray
});

Loading…
Cancel
Save