- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
384 lines
15 KiB
JavaScript
Executable File
384 lines
15 KiB
JavaScript
Executable File
"use strict";
|
|
/*
|
|
* Copyright (C) 1998-2020 by Northwoods Software Corporation. All Rights Reserved.
|
|
*/
|
|
|
|
// A custom Layout that provides one way to have a layout of layouts.
|
|
// It partitions nodes and links into separate subgraphs, applies a primary
|
|
// layout to each subgraph, and then arranges those results by an
|
|
// arranging layout. Any disconnected nodes are laid out later by a
|
|
// side layout, by default in a grid underneath the main body of subgraphs.
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends Layout
|
|
* @class
|
|
* This layout uses three separate Layouts.
|
|
*
|
|
* One is used for laying out nodes and links that are connected together: {@link #primaryLayout}.
|
|
* This defaults to null and must be set to an instance of a {@link Layout},
|
|
* such as a {@link TreeLayout} or a {@link ForceDirectedLayout} or a custom Layout.
|
|
*
|
|
* One is used to arrange separate subnetworks of the main graph: {@link #arrangingLayout}.
|
|
* This defaults to an instance of {@link GridLayout}.
|
|
*
|
|
* One is used for laying out the additional nodes along one of the sides of the main graph: {@link #sideLayout}.
|
|
* This also defaults to an instance of {@link GridLayout}.
|
|
* A filter predicate, {@link #filter}, splits up the collection of nodes and links into two subsets,
|
|
* one for the main layout and one for the side layout.
|
|
* By default, when there is no filter, it puts all nodes that have no link connections into the
|
|
* subset to be processed by the side layout.
|
|
*
|
|
* If all pairs of nodes in the main graph can be reached by some path of undirected links,
|
|
* there are no separate subnetworks, so the {@link #arrangingLayout} need not be used and
|
|
* the {@link #primaryLayout} would apply to all of those nodes and links.
|
|
*
|
|
* But if there are disconnected subnetworks, the {@link #primaryLayout} is applied to each subnetwork,
|
|
* and then all of those results are arranged by the {@link #arrangingLayout}.
|
|
*
|
|
* In either case if there are any nodes in the side graph, those are arranged by the {@link #sideLayout}
|
|
* to be on the side of the arrangement of the main graph of nodes and links.
|
|
*
|
|
* Note: if you do not want to have singleton nodes be arranged by {@link #sideLayout},
|
|
* set {@link #filter} to <code>function(part) { return true; }</code>.
|
|
* That will cause all singleton nodes to be arranged by {@link #arrangingLayout} as if they
|
|
* were each their own subgraph.
|
|
*
|
|
* If you both don't want to use {@link #sideLayout} and you don't want to use {@link #arrangingLayout}
|
|
* to lay out connected subgraphs, don't use this ArrangingLayout at all --
|
|
* just use whatever Layout you would have assigned to {@link #primaryLayout}.
|
|
*/
|
|
function ArrangingLayout() {
|
|
go.Layout.call(this);
|
|
this._filter = null;
|
|
this._primaryLayout = new go.GridLayout();
|
|
this._primaryLayout.cellSize = new go.Size(1, 1);
|
|
this._arrangingLayout = new go.GridLayout();
|
|
this._arrangingLayout.cellSize = new go.Size(1, 1);
|
|
this._sideLayout = new go.GridLayout();
|
|
this._sideLayout.cellSize = new go.Size(1, 1);
|
|
this._side = go.Spot.BottomSide;
|
|
this._spacing = new go.Size(20, 20);
|
|
}
|
|
go.Diagram.inherit(ArrangingLayout, go.Layout);
|
|
|
|
/**
|
|
* @hidden @internal
|
|
* Copies properties to a cloned Layout.
|
|
* @this {ArrangingLayout}
|
|
* @param {Layout} copy
|
|
* @override
|
|
*/
|
|
ArrangingLayout.prototype.cloneProtected = function(copy) {
|
|
go.Layout.prototype.cloneProtected.call(this, copy);
|
|
copy._filter = this._filter;
|
|
if (this._primaryLayout !== null) copy._primaryLayout = this._primaryLayout.copy();
|
|
if (this._arrangingLayout !== null) copy._arrangingLayout = this._arrangingLayout.copy();
|
|
if (this._sideLayout !== null) copy._sideLayout = this._sideLayout.copy();
|
|
copy._side = this._side.copy();
|
|
copy._spacing = this._spacing.copy();
|
|
};
|
|
|
|
/**
|
|
* @hidden @internal
|
|
* @this {ArrangingLayout}
|
|
* @param {Diagram|Group|Iterable} coll the collection of Parts to layout.
|
|
*/
|
|
ArrangingLayout.prototype.doLayout = function(coll) {
|
|
coll = this.collectParts(coll);
|
|
|
|
var diagram = this.diagram;
|
|
if (diagram === null) throw new Error("No Diagram for this Layout");
|
|
|
|
// implementations of doLayout that do not make use of a LayoutNetwork
|
|
// need to perform their own transactions
|
|
diagram.startTransaction("Arranging Layout");
|
|
|
|
var maincoll = new go.Set();
|
|
var sidecoll = new go.Set();
|
|
this.splitParts(coll, maincoll, sidecoll);
|
|
|
|
var mainnet = null;
|
|
var subnets = null;
|
|
if (this.arrangingLayout !== null) {
|
|
var mainnet = this.makeNetwork(maincoll);
|
|
var subnets = mainnet.splitIntoSubNetworks();
|
|
}
|
|
var bounds = null;
|
|
if (this.arrangingLayout !== null && subnets !== null && subnets.count > 1) {
|
|
var groups = new go.Set();
|
|
var it = subnets.iterator;
|
|
while (it.next()) {
|
|
var net = it.value;
|
|
var subcoll = net.findAllParts();
|
|
this.preparePrimaryLayout(this.primaryLayout, subcoll);
|
|
this.primaryLayout.doLayout(subcoll);
|
|
groups.add(this._makeMainNode(subcoll));
|
|
}
|
|
var mit = mainnet.vertexes.iterator;
|
|
while (mit.next()) {
|
|
var v = mit.value;
|
|
if (v.node) {
|
|
var subcoll = new go.Set();
|
|
subcoll.add(v.node);
|
|
this.preparePrimaryLayout(this.primaryLayout, subcoll);
|
|
this.primaryLayout.doLayout(subcoll);
|
|
groups.add(this._makeMainNode(subcoll));
|
|
}
|
|
}
|
|
|
|
this.arrangingLayout.doLayout(groups);
|
|
var git = groups.iterator;
|
|
while (git.next()) {
|
|
var grp = git.value;
|
|
this.moveSubgraph(grp._subcoll, grp._subcollBounds, new go.Rect(grp.position, grp.desiredSize));
|
|
}
|
|
bounds = diagram.computePartsBounds(groups); // not maincoll due to links without real bounds
|
|
} else { // no this.arrangingLayout
|
|
this.preparePrimaryLayout(this.primaryLayout, maincoll);
|
|
this.primaryLayout.doLayout(maincoll);
|
|
bounds = diagram.computePartsBounds(maincoll);
|
|
this.moveSubgraph(maincoll, bounds, bounds);
|
|
}
|
|
if (!bounds.isReal()) bounds = new go.Rect(0, 0, 0, 0);
|
|
|
|
this.prepareSideLayout(this.sideLayout, sidecoll, bounds);
|
|
if (sidecoll.count > 0) {
|
|
this.sideLayout.doLayout(sidecoll);
|
|
var sidebounds = diagram.computePartsBounds(sidecoll);
|
|
if (!sidebounds.isReal()) sidebounds = new go.Rect(0, 0, 0, 0);
|
|
|
|
this.moveSideCollection(sidecoll, bounds, sidebounds);
|
|
}
|
|
|
|
diagram.commitTransaction("Arranging Layout");
|
|
};
|
|
|
|
/**
|
|
* @hidden @internal
|
|
* @param {*} subcoll
|
|
*/
|
|
ArrangingLayout.prototype._makeMainNode = function(subcoll) {
|
|
var grp = new go.Node();
|
|
grp.locationSpot = go.Spot.Center;
|
|
grp._subcoll = subcoll;
|
|
var grpb = this.diagram.computePartsBounds(subcoll);
|
|
grp._subcollBounds = grpb;
|
|
grp.desiredSize = grpb.size;
|
|
grp.position = grpb.position;
|
|
return grp;
|
|
}
|
|
|
|
/**
|
|
* Assign all of the Parts in the given collection into either the
|
|
* set of Nodes and Links for the main graph or the set of Nodes and Links
|
|
* for the side graph.
|
|
*
|
|
* By default this just calls the {@link #filter} on each non-Link to decide,
|
|
* and then looks at each Link's connected Nodes to decide.
|
|
*
|
|
* A null filter assigns all Nodes that have connected Links to the main graph, and
|
|
* all Links will be assigned to the main graph, and the side graph will only contain
|
|
* Parts with no connected Links.
|
|
* @param {Set} coll
|
|
* @param {Set} maincoll
|
|
* @param {Set} sidecoll
|
|
*/
|
|
ArrangingLayout.prototype.splitParts = function(coll, maincoll, sidecoll) {
|
|
// first consider all Nodes
|
|
var pred = this.filter;
|
|
coll.each(function(p) {
|
|
if (p instanceof go.Link) return;
|
|
var main;
|
|
if (pred) main = pred(p);
|
|
else if (p instanceof go.Node) main = (p.linksConnected.count > 0);
|
|
else main = (p instanceof go.Link);
|
|
if (main) {
|
|
maincoll.add(p);
|
|
} else {
|
|
sidecoll.add(p);
|
|
}
|
|
});
|
|
// now assign Links based on which Nodes they connect with
|
|
coll.each(function(p) {
|
|
if (p instanceof go.Link) {
|
|
if (maincoll.contains(p.fromNode) && maincoll.contains(p.toNode)) {
|
|
maincoll.add(p);
|
|
} else if (sidecoll.contains(p.fromNode) && sidecoll.contains(p.toNode)) {
|
|
sidecoll.add(p);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* This method is called just before the primaryLayout is performed so that
|
|
* there can be adjustments made to the primaryLayout, if desired.
|
|
* By default this method makes no adjustments to the primaryLayout.
|
|
* @param {Layout} primaryLayout the sideLayout that may be modified for the results of the primaryLayout
|
|
* @param {Set} mainColl the Nodes and Links to be laid out by primaryLayout after being separated into subnetworks
|
|
*/
|
|
ArrangingLayout.prototype.preparePrimaryLayout = function(primaryLayout, mainColl) {
|
|
// by default this is a no-op
|
|
}
|
|
|
|
/**
|
|
* Move a Set of Nodes and Links to the given area.
|
|
* @param {Set} subColl the Set of Nodes and Links that form a separate connected subgraph
|
|
* @param {Rect} subbounds the area occupied by the subColl
|
|
* @param {Rect} bounds the area where they should be moved according to the arrangingLayout
|
|
*/
|
|
ArrangingLayout.prototype.moveSubgraph = function(subColl, subbounds, bounds) {
|
|
this.diagram.moveParts(subColl, bounds.position.subtract(subbounds.position), false);
|
|
}
|
|
|
|
/**
|
|
* This method is called just after the main layouts (the primaryLayouts and arrangingLayout)
|
|
* have been performed and just before the sideLayout is performed so that there can be
|
|
* adjustments made to the sideLayout, if desired.
|
|
* By default this method makes no adjustments to the sideLayout.
|
|
* @param {Layout} sideLayout the sideLayout that may be modified for the results of the main layouts
|
|
* @param {Set} sideColl the Nodes and Links filtered out to be laid out by sideLayout
|
|
* @param {Rect} mainBounds the area occupied by the nodes and links of the main layout, after it was performed
|
|
*/
|
|
ArrangingLayout.prototype.prepareSideLayout = function(sideLayout, sideColl, mainBounds) {
|
|
// by default this is a no-op
|
|
}
|
|
|
|
/**
|
|
* This method is called just after the sideLayout has been performed in order to move
|
|
* its parts to the desired area relative to the results of the main layouts.
|
|
* By default this calls {@link Diagram#moveParts} on the sidecoll collection to the {@link #side} of the mainbounds.
|
|
* This won't get called if there are no Parts in the sidecoll collection.
|
|
* @param {Set} sidecoll a collection of Parts that were laid out by the sideLayout
|
|
* @param {Rect} mainbounds the area occupied by the results of the main layouts
|
|
* @param {Rect} sidebounds the area occupied by the results of the sideLayout
|
|
*/
|
|
ArrangingLayout.prototype.moveSideCollection = function(sidecoll, mainbounds, sidebounds) {
|
|
var diagram = this.diagram;
|
|
if (this.side.includesSide(go.Spot.BottomSide)) {
|
|
diagram.moveParts(sidecoll, new go.Point(mainbounds.x - sidebounds.x, mainbounds.y + mainbounds.height + this.spacing.height - sidebounds.y), false);
|
|
} else if (this.side.includesSide(go.Spot.RightSide)) {
|
|
diagram.moveParts(sidecoll, new go.Point(mainbounds.x + mainbounds.width + this.spacing.width - sidebounds.x, mainbounds.y - sidebounds.y), false);
|
|
} else if (this.side.includesSide(go.Spot.TopSide)) {
|
|
diagram.moveParts(sidecoll, new go.Point(mainbounds.x - sidebounds.x, mainbounds.y - sidebounds.height - this.spacing.height - sidebounds.y), false);
|
|
} else if (this.side.includesSide(go.Spot.LeftSide)) {
|
|
diagram.moveParts(sidecoll, new go.Point(mainbounds.x - sidebounds.width - this.spacing.width - sidebounds.x, mainbounds.y - sidebounds.y), false);
|
|
}
|
|
}
|
|
|
|
// Public properties
|
|
|
|
/**
|
|
* Gets or sets the predicate function to call on each non-Link.
|
|
* If the predicate returns true, the part will be laid out by the main layouts,
|
|
* the primaryLayouts and the arrangingLayout, otherwise by the sideLayout.
|
|
* The default value is a function that is true when there are any links connecting with the node.
|
|
* Such default behavior will have the sideLayout position all of the singleton nodes.
|
|
* @name ArrangingLayout#side
|
|
|
|
* @return {function}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "filter", {
|
|
get: function() { return this._filter; },
|
|
set: function(val) {
|
|
if (val && typeof val !== 'function') throw new Error("new value for ArrangingLayout.filter must be a function, not: " + val);
|
|
if (this._filter !== val) {
|
|
this._filter = val;
|
|
this.invalidateLayout();
|
|
}
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Gets or sets the side {@link Spot} where the side nodes and links should be laid out,
|
|
* relative to the results of the main Layout.
|
|
* The default value is Spot.BottomSide.
|
|
* Currently only handles a single side.
|
|
* @name ArrangingLayout#side
|
|
|
|
* @return {Spot}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "side", {
|
|
get: function() { return this._side; },
|
|
set: function(val) {
|
|
if (!(val instanceof go.Spot) || !val.isSide()) {
|
|
throw new Error("new value for ArrangingLayout.side must be a side Spot, not: " + val);
|
|
}
|
|
if (!this._side.equals(val)) {
|
|
this._side = val.copy();
|
|
this.invalidateLayout();
|
|
}
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Gets or sets the space between the main layout and the side layout.
|
|
* The default value is Size(20, 20).
|
|
* @name ArrangingLayout#spacing
|
|
|
|
* @return {Size}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "spacing", {
|
|
get: function() { return this._spacing; },
|
|
set: function(val) {
|
|
if (!(val instanceof go.Size)) throw new Error("new value for ArrangingLayout.spacing must be a Size, not: " + val);
|
|
if (!this._spacing.equals(val)) {
|
|
this._spacing = val.copy();
|
|
this.invalidateLayout();
|
|
}
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Gets or sets the Layout used for the main part of the diagram.
|
|
* The default value is an instance of GridLayout.
|
|
* Any new value must not be null.
|
|
* @name ArrangingLayout#primaryLayout
|
|
|
|
* @return {Layout}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "primaryLayout", {
|
|
get: function() { return this._primaryLayout; },
|
|
set: function(val) {
|
|
if (!(val instanceof go.Layout)) throw new Error("layout does not inherit from go.Layout: " + val);
|
|
this._primaryLayout = val;
|
|
this.invalidateLayout();
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Gets or sets the Layout used to arrange multiple separate connected subgraphs of the main graph.
|
|
* The default value is an instance of GridLayout.
|
|
* Set this property to null in order to get the default behavior of the @{link #primaryLayout}
|
|
* when dealing with multiple connected graphs as a whole.
|
|
* @name ArrangingLayout#arrangingLayout
|
|
|
|
* @return {Layout}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "arrangingLayout", {
|
|
get: function() { return this._arrangingLayout; },
|
|
set: function(val) {
|
|
if (val && !(val instanceof go.Layout)) throw new Error("layout does not inherit from go.Layout: " + val);
|
|
this._arrangingLayout = val;
|
|
this.invalidateLayout();
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Gets or sets the Layout used to arrange the "side" nodes and links -- those outside of the main layout.
|
|
* The default value is an instance of GridLayout.
|
|
* Any new value must not be null.
|
|
* @name ArrangingLayout#sideLayout
|
|
|
|
* @return {Layout}
|
|
*/
|
|
Object.defineProperty(ArrangingLayout.prototype, "sideLayout", {
|
|
get: function() { return this._sideLayout; },
|
|
set: function(val) {
|
|
if (!(val instanceof go.Layout)) throw new Error("layout does not inherit from go.Layout: " + val);
|
|
this._sideLayout = val;
|
|
this.invalidateLayout();
|
|
}
|
|
});
|