You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
5.7 KiB
139 lines
5.7 KiB
|
5 years ago
|
/*
|
||
|
|
* Copyright (C) 1998-2019 by Northwoods Software Corporation. All Rights Reserved.
|
||
|
|
*/
|
||
|
|
(function (factory) {
|
||
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
||
|
|
var v = factory(require, exports);
|
||
|
|
if (v !== undefined) module.exports = v;
|
||
|
|
}
|
||
|
|
else if (typeof define === "function" && define.amd) {
|
||
|
|
define(["require", "exports", "../release/go", "./OverviewResizingTool"], factory);
|
||
|
|
}
|
||
|
|
})(function (require, exports) {
|
||
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
var go = require("../release/go");
|
||
|
|
var OverviewResizingTool_1 = require("./OverviewResizingTool");
|
||
|
|
var myDiagram;
|
||
|
|
function init() {
|
||
|
|
if (window.goSamples)
|
||
|
|
window.goSamples(); // init for these samples -- you don't need to call this
|
||
|
|
var $ = go.GraphObject.make; // for conciseness in defining templates
|
||
|
|
myDiagram = $(go.Diagram, 'myDiagramDiv', // create a Diagram for the DIV HTML element
|
||
|
|
{
|
||
|
|
layout: $(go.ForceDirectedLayout),
|
||
|
|
'undoManager.isEnabled': true // enable undo & redo
|
||
|
|
});
|
||
|
|
// Define the Node template.
|
||
|
|
// This uses a Spot Panel to position a button relative
|
||
|
|
// to the ellipse surrounding the text.
|
||
|
|
myDiagram.nodeTemplate =
|
||
|
|
$(go.Node, 'Spot', {
|
||
|
|
selectionObjectName: 'PANEL',
|
||
|
|
isTreeExpanded: false,
|
||
|
|
isTreeLeaf: false
|
||
|
|
},
|
||
|
|
// the node's outer shape, which will surround the text
|
||
|
|
$(go.Panel, 'Auto', { name: 'PANEL' }, $(go.Shape, 'Circle', { fill: '#03A9F4', stroke: 'black' }), $(go.TextBlock, { font: '12pt sans-serif', margin: 5 }, new go.Binding('text', 'key'))),
|
||
|
|
// the expand/collapse button, at the top-right corner
|
||
|
|
$('TreeExpanderButton', {
|
||
|
|
name: 'TREEBUTTON',
|
||
|
|
width: 20, height: 20,
|
||
|
|
alignment: go.Spot.TopRight,
|
||
|
|
alignmentFocus: go.Spot.Center,
|
||
|
|
// customize the expander behavior to
|
||
|
|
// create children if the node has never been expanded
|
||
|
|
click: function (e, obj) {
|
||
|
|
var node = obj.part; // get the Node containing this Button
|
||
|
|
if (node === null)
|
||
|
|
return;
|
||
|
|
e.handled = true;
|
||
|
|
expandNode(node);
|
||
|
|
}
|
||
|
|
}) // end TreeExpanderButton
|
||
|
|
); // end Node
|
||
|
|
// create the model with a root node data
|
||
|
|
myDiagram.model = new go.TreeModel([
|
||
|
|
{ key: 0, everExpanded: false }
|
||
|
|
]);
|
||
|
|
// Overview
|
||
|
|
var myOverview = $(go.Overview, 'myOverviewDiv', // the HTML DIV element for the Overview
|
||
|
|
{
|
||
|
|
observed: myDiagram,
|
||
|
|
contentAlignment: go.Spot.Center,
|
||
|
|
'box.resizable': true,
|
||
|
|
'resizingTool': new OverviewResizingTool_1.OverviewResizingTool()
|
||
|
|
});
|
||
|
|
document.getElementById('zoomToFit').addEventListener('click', function () {
|
||
|
|
myDiagram.zoomToFit();
|
||
|
|
});
|
||
|
|
document.getElementById('expandAtRandom').addEventListener('click', function () {
|
||
|
|
expandAtRandom();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
exports.init = init;
|
||
|
|
function expandNode(node) {
|
||
|
|
var diagram = node.diagram;
|
||
|
|
if (diagram === null)
|
||
|
|
return;
|
||
|
|
diagram.startTransaction('CollapseExpandTree');
|
||
|
|
// this behavior is specific to this incrementalTree sample:
|
||
|
|
var data = node.data;
|
||
|
|
if (!data.everExpanded) {
|
||
|
|
// only create children once per node
|
||
|
|
diagram.model.setDataProperty(data, 'everExpanded', true);
|
||
|
|
var numchildren = createSubTree(data);
|
||
|
|
if (numchildren === 0) { // now known no children: don't need Button!
|
||
|
|
var btn = node.findObject('TREEBUTTON');
|
||
|
|
if (btn !== null)
|
||
|
|
btn.visible = false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// this behavior is generic for most expand/collapse tree buttons:
|
||
|
|
if (node.isTreeExpanded) {
|
||
|
|
diagram.commandHandler.collapseTree(node);
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
diagram.commandHandler.expandTree(node);
|
||
|
|
}
|
||
|
|
diagram.commitTransaction('CollapseExpandTree');
|
||
|
|
}
|
||
|
|
// This dynamically creates the immediate children for a node.
|
||
|
|
// The sample assumes that we have no idea of whether there are any children
|
||
|
|
// for a node until we look for them the first time, which happens
|
||
|
|
// upon the first tree-expand of a node.
|
||
|
|
function createSubTree(parentdata) {
|
||
|
|
var numchildren = Math.floor(Math.random() * 10);
|
||
|
|
if (myDiagram.nodes.count <= 1) {
|
||
|
|
numchildren += 1; // make sure the root node has at least one child
|
||
|
|
}
|
||
|
|
// create several node data objects and add them to the model
|
||
|
|
var model = myDiagram.model;
|
||
|
|
var parent = myDiagram.findNodeForData(parentdata);
|
||
|
|
if (parent === null)
|
||
|
|
return;
|
||
|
|
for (var i = 0; i < numchildren; i++) {
|
||
|
|
var childdata = {
|
||
|
|
key: model.nodeDataArray.length,
|
||
|
|
parent: parentdata.key
|
||
|
|
};
|
||
|
|
// add to model.nodeDataArray and create a Node
|
||
|
|
model.addNodeData(childdata);
|
||
|
|
// position the new child node close to the parent
|
||
|
|
var child = myDiagram.findNodeForData(childdata);
|
||
|
|
if (child !== null)
|
||
|
|
child.location = parent.location;
|
||
|
|
}
|
||
|
|
return numchildren;
|
||
|
|
}
|
||
|
|
function expandAtRandom() {
|
||
|
|
var eligibleNodes = [];
|
||
|
|
myDiagram.nodes.each(function (n) {
|
||
|
|
if (!n.isTreeExpanded)
|
||
|
|
eligibleNodes.push(n);
|
||
|
|
});
|
||
|
|
var node = eligibleNodes[Math.floor(Math.random() * (eligibleNodes.length))];
|
||
|
|
expandNode(node);
|
||
|
|
}
|
||
|
|
});
|