forked from jc7447/BetterDynAdmin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbda.pipeline.js
253 lines (232 loc) · 9.3 KB
/
bda.pipeline.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
(function($) {
"use strict";
var BDA_PIPELINE = {
$pipelineDef : null,
network : null,
options : {
width : "100%",
height: "550px",
interaction : {
zoomView : true,
selectable : true,
dragNodes : false,
dragView : true,
hover : false
},
layout : {
hierarchical : {
direction : "LR",
sortMethod : "directed",
nodeSpacing : 300,
levelSeparation : 250
}
},
edges: {
smooth: {
type: 'cubicBezier',
forceDirection: 'horizontal',
roundness: 0.4
},
},
nodes: {
font : {
size : 11
},
shape : "box"
},
physics:false
},
isPipelineManagerPage : false,
build : function()
{
console.time("bdaPipeline");
BDA_PIPELINE.isPipelineManagerPage = BDA_PIPELINE.isPipelineManagerPageFct();
if(BDA_PIPELINE.isPipelineManagerPage)
BDA_PIPELINE.setupPipelineManagerPage();
console.timeEnd("bdaPipeline");
},
isPipelineManagerPageFct : function()
{
return $("h2:contains('Pipeline Chains')").length === 1;
},
setupPipelineManagerPage : function()
{
//create diagram container
$("h2:contains('Pipeline Chains')").append("<div class='popup_block' id='pipelinePopup'>"
+ "<div><a href='javascript:void(0)' class='close'><i class='fa fa-times'></div>"
+ "<div><h3></h3></div></i></a>"
+ "<button id='savePipelineAsImage'>Download as Image</button>"
+ "<button id='schemeOrientation'>Switch orientation <i class='fa fa-retweet'></button>"
+ "<div id='pipelineScheme'></div></div>");
$("#pipelinePopup .close").click(function() {
$("#pipelinePopup").fadeOut();
});
var $pipelineTable = $("h2:contains('Pipeline Chains')").next().attr("id", "pipelineTable");
$pipelineTable.find("tr:nth-child(odd)").addClass("odd");
$pipelineTable.find("tr:first").append("<th>Show XML</th><th>Show graph</th>");
$pipelineTable.find("tr:gt(0)").append("<td align='center'><i class='fa fa-code link'></i></td><td align='center'><i class='fa fa-eye link'></i>"
+ "<sup style='font-size:8px'> BETA</sup></td>");
//process pipeline definition file
processRepositoryXmlDef("definitionFile", function($xmlDef)
{
BDA_PIPELINE.$pipelineDef = $xmlDef;
$pipelineTable.find('tr').each(function(index, elem)
{
var $elem = $(elem);
var chainName = $elem.find("td:eq(0)").text();
$elem.attr("id", chainName);
$elem.find("td:eq(7)").click(function() {
var $td = $(this);
if ($td.hasClass("open"))
{
$td.removeClass("open");
BDA_PIPELINE.hidePipelineXml(chainName);
}
else
{
$td.addClass("open");
BDA_PIPELINE.showPipelineXml(chainName, $elem.hasClass("odd"));
}
});
$elem.find("td:eq(8)").click(function() {
// Redset direction
BDA_PIPELINE.options.layout.hierarchical.direction = "LR";
BDA_PIPELINE.showPipelineGraph(chainName);
});
});
});
},
hidePipelineXml : function(chainName)
{
var trId = "xml_" + chainName;
$("#" + trId).remove();
},
showPipelineXml : function(chainName, isOdd)
{
console.log("Show pipeline XML for chain : " + chainName + " isOdd : " + isOdd);
var trId = "xml_" + chainName;
if ($("#" + trId).length === 0) {
var xml = BDA_PIPELINE.$pipelineDef.find("pipelinechain[name=" + chainName + "]")[0].outerHTML;
var $codeBlock = $("<tr id='" + trId + "'><td colspan='9'><pre></pre></td></tr>")
.insertAfter("#" + chainName)
.find("pre")
.text(xml);
if (isOdd)
$("#" + trId).addClass("odd");
highlightAndIndentXml($codeBlock);
}
},
showPipelineGraph : function(chainName)
{
console.log("Show pipeline graph for chain : " + chainName);
$("#pipelinePopup h3").text(chainName);
$("#pipelinePopup").show();
var container = document.getElementById('pipelineScheme');
var data = BDA_PIPELINE.createNodesAndEdges(chainName);
if (data.nodes.length > 0 && data.nodes.length < 10) {
BDA_PIPELINE.options.width = "100%";
} else if (data.nodes.length > 10 && data.nodes.length < 20) {
BDA_PIPELINE.options.width = "200%";
} else if (data.nodes.length > 20) {
BDA_PIPELINE.options.width = "600%";
}
BDA_PIPELINE.drawGraph(container, data);
$('#schemeOrientation').unbind( "click" );
$('#schemeOrientation').click(function(){
logTrace("Swith orientation, current : " + BDA_PIPELINE.options.layout.hierarchical.direction);
BDA_PIPELINE.network.destroy();
if(BDA_PIPELINE.options.layout.hierarchical.direction === "LR")
BDA_PIPELINE.options.layout.hierarchical.direction = "UD";
else
BDA_PIPELINE.options.layout.hierarchical.direction = "LR";
logTrace("Swith orientation, new : " + BDA_PIPELINE.options.layout.hierarchical.direction);
BDA_PIPELINE.drawGraph(container, data);
});
$('#savePipelineAsImage').unbind( "click" );
$('#savePipelineAsImage').click(function(){
var canvas = document.querySelector('canvas');
let canvasImage = canvas.toDataURL('image/png', 1.0);
// this can be used to download any image from webpage to local disk
let xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.onload = function () {
let a = document.createElement('a');
a.href = window.URL.createObjectURL(xhr.response);
a.download = 'image_name.png';
a.style.display = 'none';
document.body.appendChild(a);
a.click();
a.remove();
};
xhr.open('GET', canvasImage); // This is to download the canvas Image
xhr.send();
});
},
drawGraph : function(container, data)
{
// Actually renders into container
BDA_PIPELINE.network = new vis.Network(container, data, BDA_PIPELINE.options);
// Make node clickable
BDA_PIPELINE.network.on("click", function (params) {
console.log("click on the network");
logTrace(params);
var id = params.nodes[0];
if (id !== undefined)
{
logTrace(data.nodes.get(id).pipelineLinkPath);
var url = "/dyn/admin/nucleus/" + data.nodes.get(id).pipelineLinkPath;
window.open(url, '_blank');
}
else
logTrace("Not clicked on a node");
});
},
createNodesAndEdges : function(chainName)
{
var $chainDef = BDA_PIPELINE.$pipelineDef.find('pipelinechain[name=' + chainName + ']');
var nodes = new vis.DataSet();
var edges = new vis.DataSet();
$chainDef.find('pipelinelink').each(function(pipelinelinkIndex, pipelinelinkElement){
var pipelineLinkName = $(pipelinelinkElement).attr('name');
logTrace("link : " + pipelineLinkName);
var processor = $(pipelinelinkElement).find('processor');
var pipelineLinkPath = $(processor).attr('jndi');
if(pipelineLinkPath === undefined)
pipelineLinkPath = $(processor).attr('class');
nodes.add({id : pipelinelinkIndex, label : pipelineLinkName, name : pipelineLinkName, pipelineLinkPath : pipelineLinkPath});
});
$chainDef.find('pipelinelink').each(function(pipelinelinkIndex, pipelinelinkElement)
{
var pipelineLinkName = $(pipelinelinkElement).attr('name');
$(pipelinelinkElement).find('transition').each(function() {
var transitionName = $(this).attr("link");
edges.add({from : BDA_PIPELINE.findNodeId(nodes, pipelineLinkName), to : BDA_PIPELINE.findNodeId(nodes, transitionName), arrows : 'to', label : $(this).attr("returnvalue")});
});
});
logTrace({"edges" : edges, "nodes" : nodes});
return {"edges" : edges, "nodes" : nodes};
},
findNodeId : function(nodes, name)
{
var id;
nodes.forEach(function(nodeElement, nodeIndex){
if (nodeElement.name == name)
{
id = nodeElement.id;
return ;
}
});
return id;
},
};
// Reference to BDA
var BDA;
// Jquery plugin creation
$.fn.bdaPipeline = function(pBDA)
{
console.log('Init plugin {0}'.format('bdaPipeline'));
BDA = pBDA;
BDA_PIPELINE.build();
return this;
};
})(jQuery);