-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathdefaults.js
99 lines (79 loc) · 3.07 KB
/
defaults.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
* Copyright 2012-2017, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var Lib = require('../../lib');
var attributes = require('./attributes');
var colors = require('../../components/color/attributes').defaults;
var Color = require('../../components/color');
var tinycolor = require('tinycolor2');
var tarjan = require('strongly-connected-components');
function circularityPresent(nodeList, sources, targets) {
var nodes = nodeList.map(function() {return [];});
for(var i = 0; i < Math.min(sources.length, targets.length); i++) {
if(sources[i] === targets[i]) {
return true; // self-link which is also a scc of one
}
nodes[sources[i]].push(targets[i]);
}
var scc = tarjan(nodes);
// Tarján's strongly connected components algorithm coded by Mikola Lysenko
// returns at least one non-singular component if there's circularity in the graph
return scc.components.some(function(c) {
return c.length > 1;
});
}
module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout) {
function coerce(attr, dflt) {
return Lib.coerce(traceIn, traceOut, attributes, attr, dflt);
}
coerce('node.label', []);
coerce('node.pad');
coerce('node.thickness');
coerce('node.line.color');
coerce('node.line.width');
var defaultNodePalette = function(i) {return colors[i % colors.length];};
coerce('node.color', traceOut.node.label.map(function(d, i) {
return Color.addOpacity(defaultNodePalette(i), 0.8);
}));
coerce('link.label');
coerce('link.source', []);
coerce('link.target', []);
coerce('link.value', []);
coerce('link.line.color');
coerce('link.line.width');
coerce('link.color', traceOut.link.value.map(function() {
return tinycolor(layout.paper_bgcolor).getLuminance() < 0.333 ?
'rgba(255, 255, 255, 0.6)' :
'rgba(0, 0, 0, 0.2)';
}));
coerce('hoverinfo', layout._dataLength === 1 ? 'label+text+value+percent' : undefined);
coerce('domain.x');
coerce('domain.y');
coerce('orientation');
coerce('valueformat');
coerce('valuesuffix');
coerce('arrangement');
Lib.coerceFont(coerce, 'textfont', Lib.extendFlat({}, layout.font));
var missing = function(n, i) {
return traceOut.link.source.indexOf(i) === -1 &&
traceOut.link.target.indexOf(i) === -1;
};
if(traceOut.node.label.some(missing)) {
Lib.log('Some of the nodes are neither sources nor targets, please remove them.');
}
if(circularityPresent(traceOut.node.label, traceOut.link.source, traceOut.link.target)) {
Lib.log('Circularity is present in the Sankey data. Removing all nodes and links.');
traceOut.link.label = [];
traceOut.link.source = [];
traceOut.link.target = [];
traceOut.link.value = [];
traceOut.link.color = [];
traceOut.node.label = [];
traceOut.node.color = [];
}
};