LineageLayoutView.js 19.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

define(['require',
    'backbone',
    'hbs!tmpl/graph/LineageLayoutView_tmpl',
    'collection/VLineageList',
    'models/VEntity',
24
    'utils/Utils',
25
    'dagreD3',
26
    'd3-tip',
27
    'utils/Enums',
28
    'utils/UrlLinks'
29
], function(require, Backbone, LineageLayoutViewtmpl, VLineageList, VEntity, Utils, dagreD3, d3Tip, Enums, UrlLinks) {
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
    'use strict';

    var LineageLayoutView = Backbone.Marionette.LayoutView.extend(
        /** @lends LineageLayoutView */
        {
            _viewName: 'LineageLayoutView',

            template: LineageLayoutViewtmpl,

            /** Layout sub regions */
            regions: {},

            /** ui selector cache */
            ui: {
                graph: ".graph"
            },

            /** ui events hash */
            events: function() {
                var events = {};
                return events;
            },

            /**
             * intialize a new LineageLayoutView Layout
             * @constructs
             */
            initialize: function(options) {
58
                _.extend(this, _.pick(options, 'guid', 'entityDefCollection', 'actionCallBack'));
59
                this.entityModel = new VEntity();
60 61
                this.collection = new VLineageList();
                this.typeMap = {};
62
                this.asyncFetchCounter = 0;
63
                this.fetchGraphData();
64 65
            },
            onRender: function() {
66
                var that = this;
67
                this.$('.fontLoader').show();
68 69 70
                if (this.layoutRendered) {
                    this.layoutRendered();
                }
71
                this.g = new dagreD3.graphlib.Graph()
72 73 74 75 76 77 78 79 80 81
                    .setGraph({
                        nodesep: 50,
                        ranksep: 90,
                        rankdir: "LR",
                        marginx: 20,
                        marginy: 20,
                        transition: function transition(selection) {
                            return selection.transition().duration(500);
                        }
                    })
82 83 84 85 86
                    .setDefaultEdgeLabel(function() {
                        return {};
                    });
            },
            fetchGraphData: function() {
87 88 89
                var that = this;
                this.fromToObj = {};
                this.collection.getLineage(this.guid, {
90
                    skipDefaultError: true,
91 92 93 94 95 96 97
                    success: function(data) {
                        if (data.relations.length) {
                            that.generateData(data.relations, data.guidEntityMap);
                        } else {
                            that.noLineage();
                        }
                    },
98
                    cust_error: function(model, response) {
99
                        that.noLineage();
100
                    }
101
                })
102
            },
103
            noLineage: function() {
104
                this.$('.fontLoader').hide();
105
                //this.$('svg').height('100');
106
                this.$('svg').html('<text x="' + (this.$('svg').width() - 150) / 2 + '" y="' + this.$('svg').height() / 2 + '" fill="black">No lineage data found</text>');
107 108 109
                if (this.actionCallBack) {
                    this.actionCallBack();
                }
110
            },
111
            generateData: function(relations, guidEntityMap) {
112 113
                var that = this;

114 115 116 117 118
                function makeNodeObj(relationObj) {
                    var obj = {};
                    obj['shape'] = "img";
                    obj['typeName'] = relationObj.typeName
                    obj['label'] = relationObj.displayText.trunc(18);
119
                    obj['toolTipLabel'] = relationObj.displayText;
120
                    obj['id'] = relationObj.guid;
121
                    obj['isLineage'] = true;
122
                    obj['queryText'] = relationObj.queryText;
123 124 125
                    if (relationObj.status) {
                        obj['status'] = relationObj.status;
                    }
126 127 128
                    var entityDef = that.entityDefCollection.fullCollection.find({ name: relationObj.typeName });
                    if (entityDef && entityDef.get('superTypes')) {
                        obj['isProcess'] = _.contains(entityDef.get('superTypes'), "Process") ? true : false;
129
                    }
130

131
                    return obj;
132 133
                }

134 135 136 137 138 139 140 141
                _.each(relations, function(obj, index) {
                    if (!that.fromToObj[obj.fromEntityId]) {
                        that.fromToObj[obj.fromEntityId] = makeNodeObj(guidEntityMap[obj.fromEntityId]);
                        that.g.setNode(obj.fromEntityId, that.fromToObj[obj.fromEntityId]);
                    }
                    if (!that.fromToObj[obj.toEntityId]) {
                        that.fromToObj[obj.toEntityId] = makeNodeObj(guidEntityMap[obj.toEntityId]);
                        that.g.setNode(obj.toEntityId, that.fromToObj[obj.toEntityId]);
142
                    }
143 144 145 146 147
                    var styleObj = {
                        fill: 'none',
                        stroke: '#8bc152'
                    }
                    that.g.setEdge(obj.fromEntityId, obj.toEntityId, { 'arrowhead': "arrowPoint", lineInterpolate: 'basis', "style": "fill:" + styleObj.fill + ";stroke:" + styleObj.stroke + "", 'styleObj': styleObj });
148
                });
149 150 151 152 153

                if (this.fromToObj[this.guid]) {
                    this.fromToObj[this.guid]['isLineage'] = false;
                    this.checkForLineageOrImpactFlag(relations, this.guid);
                }
154 155
                if (this.asyncFetchCounter == 0) {
                    this.createGraph();
156
                }
157
            },
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
            checkForLineageOrImpactFlag: function(relations, guid) {
                var that = this,
                    nodeFound = _.where(relations, { 'fromEntityId': guid });
                if (nodeFound.length) {
                    _.each(nodeFound, function(node) {
                        that.fromToObj[node.toEntityId]['isLineage'] = false;
                        var styleObj = {
                            fill: 'none',
                            stroke: '#fb4200'
                        }
                        that.g.setEdge(node.fromEntityId, node.toEntityId, { 'arrowhead': "arrowPoint", lineInterpolate: 'basis', "style": "fill:" + styleObj.fill + ";stroke:" + styleObj.stroke + "", 'styleObj': styleObj });
                        that.checkForLineageOrImpactFlag(relations, node.toEntityId);
                    });
                }
            },
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
            setGraphZoomPositionCal: function(argument) {
                var initialScale = 1.2,
                    svgEl = this.$('svg'),
                    scaleEl = this.$('svg').find('>g'),
                    translateValue = [(this.$('svg').width() - this.g.graph().width * initialScale) / 2, (this.$('svg').height() - this.g.graph().height * initialScale) / 2]
                if (_.keys(this.g._nodes).length > 15) {
                    translateValue = [((this.$('svg').width() / 2)) / 2, 20];
                    initialScale = 0;
                    this.$('svg').addClass('noScale');
                }
                if (svgEl.parents('.panel.panel-fullscreen').length && svgEl.hasClass('noScale')) {
                    if (!scaleEl.hasClass('scaleLinage')) {
                        scaleEl.addClass('scaleLinage');
                        initialScale = 1.2;
                    } else {
                        scaleEl.removeClass('scaleLinage');
                        initialScale = 0;
                    }
                } else {
                    scaleEl.removeClass('scaleLinage');
                }
                this.zoom.translate(translateValue)
                    .scale(initialScale);
            },
            zoomed: function(that) {
                this.$('svg').find('>g').attr("transform",
                    "translate(" + this.zoom.translate() + ")" +
                    "scale(" + this.zoom.scale() + ")"
                );
            },
203
            createGraph: function() {
204
                var that = this;
205 206 207 208 209 210 211
                this.g.nodes().forEach(function(v) {
                    var node = that.g.node(v);
                    // Round the corners of the nodes
                    if (node) {
                        node.rx = node.ry = 5;
                    }
                });
212 213 214 215 216 217 218 219 220 221 222 223 224
                // Create the renderer
                var render = new dagreD3.render();
                // Add our custom arrow (a hollow-point)
                render.arrows().arrowPoint = function normal(parent, id, edge, type) {
                    var marker = parent.append("marker")
                        .attr("id", id)
                        .attr("viewBox", "0 0 10 10")
                        .attr("refX", 9)
                        .attr("refY", 5)
                        .attr("markerUnits", "strokeWidth")
                        .attr("markerWidth", 10)
                        .attr("markerHeight", 8)
                        .attr("orient", "auto");
225

226 227 228 229
                    var path = marker.append("path")
                        .attr("d", "M 0 0 L 10 5 L 0 10 z")
                        .style("stroke-width", 1)
                        .style("stroke-dasharray", "1,0")
230 231
                        .style("fill", edge.styleObj.stroke)
                        .style("stroke", edge.styleObj.stroke);
232 233 234 235
                    dagreD3.util.applyStyle(path, edge[type + "Style"]);
                };
                render.shapes().img = function circle(parent, bbox, node) {
                    //var r = Math.max(bbox.width, bbox.height) / 2,
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
                    if (node.id == that.guid) {
                        var currentNode = true
                    }
                    var shapeSvg = parent.append('circle')
                        .attr('fill', 'url(#img_' + node.id + ')')
                        .attr('r', currentNode ? '15px' : '14px')
                        .attr("class", "nodeImage " + (currentNode ? "currentNode" : (node.isProcess ? "blue" : "green")));

                    parent.insert("defs")
                        .append("pattern")
                        .attr("x", "0%")
                        .attr("y", "0%")
                        .attr("patternUnits", "objectBoundingBox")
                        .attr("id", "img_" + node.id)
                        .attr("width", "100%")
                        .attr("height", "100%")
                        .append('image')
253 254 255 256
                        .attr("xlink:href", function(d) {
                            if (node) {
                                if (node.isProcess) {
                                    if (Enums.entityStateReadOnly[node.status]) {
257
                                        return 'img/icon-gear-delete.png';
258
                                    } else if (node.id == that.guid) {
259
                                        return 'img/icon-gear-active.png';
260
                                    } else {
261
                                        return 'img/icon-gear.png';
262 263 264
                                    }
                                } else {
                                    if (Enums.entityStateReadOnly[node.status]) {
265
                                        return 'img/icon-table-delete.png';
266
                                    } else if (node.id == that.guid) {
267
                                        return 'img/icon-table-active.png';
268
                                    } else {
269
                                        return 'img/icon-table.png';
270 271
                                    }
                                }
272
                            }
273 274 275 276 277 278
                        })
                        .attr("x", "2")
                        .attr("y", "2")
                        .attr("width", currentNode ? "26" : "24")
                        .attr("height", currentNode ? "26" : "24")

279 280
                    node.intersect = function(point) {
                        //return dagreD3.intersect.circle(node, points, point);
281
                        return dagreD3.intersect.circle(node, currentNode ? 16 : 13, point);
282
                    };
283 284 285
                    return shapeSvg;
                };
                // Set up an SVG group so that we can translate the final graph.
286
                var svg = this.svg = d3.select(this.$("svg")[0]),
287
                    svgGroup = svg.append("g");
288
                var zoom = this.zoom = d3.behavior.zoom()
289
                    .scaleExtent([0.5, 6])
290
                    .on("zoom", that.zoomed.bind(this));
291 292


293 294 295 296 297 298 299 300 301
                function interpolateZoom(translate, scale) {
                    var self = this;
                    return d3.transition().duration(350).tween("zoom", function() {
                        var iTranslate = d3.interpolate(zoom.translate(), translate),
                            iScale = d3.interpolate(zoom.scale(), scale);
                        return function(t) {
                            zoom
                                .scale(iScale(t))
                                .translate(iTranslate(t));
302
                            that.zoomed();
303 304 305
                        };
                    });
                }
306

307 308 309 310 311 312 313 314 315 316 317
                function zoomClick() {
                    var clicked = d3.event.target,
                        direction = 1,
                        factor = 0.2,
                        target_zoom = 1,
                        center = [that.g.graph().width / 2, that.g.graph().height / 2],
                        extent = zoom.scaleExtent(),
                        translate = zoom.translate(),
                        translate0 = [],
                        l = [],
                        view = { x: translate[0], y: translate[1], k: zoom.scale() };
318

319 320 321
                    d3.event.preventDefault();
                    direction = (this.id === 'zoom_in') ? 1 : -1;
                    target_zoom = zoom.scale() * (1 + factor * direction);
322

323 324 325
                    if (target_zoom < extent[0] || target_zoom > extent[1]) {
                        return false;
                    }
326

327 328 329
                    translate0 = [(center[0] - view.x) / view.k, (center[1] - view.y) / view.k];
                    view.k = target_zoom;
                    l = [translate0[0] * view.k + view.x, translate0[1] * view.k + view.y];
330

331 332
                    view.x += center[0] - l[0];
                    view.y += center[1] - l[1];
333

334 335
                    interpolateZoom([view.x, view.y], view.k);
                }
336
                d3.selectAll(this.$('span.lineageZoomButton')).on('click', zoomClick);
337 338
                var tooltip = d3Tip()
                    .attr('class', 'd3-tip')
339
                    .offset([-18, 0])
340 341
                    .html(function(d) {
                        var value = that.g.node(d);
342 343 344 345 346
                        var htmlStr = "";
                        if (value.id !== that.guid) {
                            htmlStr = "<h5 style='text-align: center;'>" + (value.isLineage ? "Lineage" : "Impact") + "</h5>";
                        }
                        htmlStr += "<h5 class='text-center'><span style='color:#359f89'>" + value.toolTipLabel + "</span></h5> ";
347 348 349
                        if (value.typeName) {
                            htmlStr += "<h5 class='text-center'><span>(" + value.typeName + ")</span></h5> ";
                        }
350 351 352
                        if (value.queryText) {
                            htmlStr += "<h5>Query: <span style='color:#359f89'>" + value.queryText + "</span></h5> ";
                        }
353
                        return "<div class='tip-inner-scroll'>" + htmlStr + "</div>";
354
                    });
355

356 357 358 359 360 361 362 363 364
                svg.call(zoom)
                    .call(tooltip);
                this.$('.fontLoader').hide();
                render(svgGroup, this.g);
                svg.on("dblclick.zoom", null)
                    .on("wheel.zoom", null);
                //change text postion 
                svgGroup.selectAll("g.nodes g.label")
                    .attr("transform", "translate(2,-30)");
365 366
                svgGroup.selectAll("g.nodes g.node")
                    .on('mouseenter', function(d) {
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
                        that.activeNode = true;
                        var matrix = this.getScreenCTM()
                            .translate(+this.getAttribute("cx"), +this.getAttribute("cy"));
                        that.$('svg').find('.node').removeClass('active');
                        $(this).addClass('active');

                        // Fix
                        var width = $('body').width();
                        var currentELWidth = $(this).offset();
                        var direction = 'e';
                        if (((width - currentELWidth.left) < 330)) {
                            direction = (((width - currentELWidth.left) < 330) && ((currentELWidth.top) < 400)) ? 'sw' : 'w';
                            if (((width - currentELWidth.left) < 330) && ((currentELWidth.top) > 600)) {
                                direction = 'nw';
                            }
                        } else if (((currentELWidth.top) > 600)) {
                            direction = (((width - currentELWidth.left) < 330) && ((currentELWidth.top) > 600)) ? 'nw' : 'n';
                            if ((currentELWidth.left) < 50) {
                                direction = 'ne'
                            }
                        } else if ((currentELWidth.top) < 400) {
                            direction = ((currentELWidth.left) < 50) ? 'se' : 's';
                        }
                        tooltip.direction(direction).show(d)
391 392 393 394 395 396 397
                    })
                    .on('dblclick', function(d) {
                        tooltip.hide(d);
                        Utils.setUrl({
                            url: '#!/detailPage/' + d,
                            mergeBrowserUrl: false,
                            trigger: true
398
                        });
399 400 401 402 403 404 405 406 407
                    }).on('mouseleave', function(d) {
                        that.activeNode = false;
                        var nodeEL = this;
                        setTimeout(function(argument) {
                            if (!(that.activeTip || that.activeNode)) {
                                $(nodeEL).removeClass('active');
                                tooltip.hide(d);
                            }
                        }, 400)
408
                    });
409 410 411 412 413 414 415 416 417
                $('body').on('mouseover', '.d3-tip', function(el) {
                    that.activeTip = true;
                });
                $('body').on('mouseleave', '.d3-tip', function(el) {
                    that.activeTip = false;
                    that.$('svg').find('.node').removeClass('active');
                    tooltip.hide();
                });

418
                // Center the graph
419 420
                this.setGraphZoomPositionCal();
                zoom.event(svg);
421 422
                //svg.attr('height', this.g.graph().height * initialScale + 40);

423 424 425 426
            }
        });
    return LineageLayoutView;
});