aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.component.ts
blob: 652d235a06cd32bccccc5a7a726097a12cf8fda6 (plain)
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
/*
============LICENSE_START==========================================
===================================================================
Copyright (C) 2019 Orange. All rights reserved.
===================================================================
Modification Copyright (c) 2020 IBM
===================================================================
Modification Copyright (c) 2020 Orange
===================================================================

Unless otherwise specified, all software contained herein is licensed
under the Apache License, Version 2.0 (the License);
you may not use this software 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.
============LICENSE_END============================================
*/

import dagre from 'dagre';
import graphlib from 'graphlib';
import { Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';
import * as joint from 'jointjs';
import './jointjs/elements/palette.function.element';
import './jointjs/elements/action.element';
import './jointjs/elements/board.function.element';
import { DesignerStore } from './designer.store';
import { ActionElementTypeName } from 'src/app/common/constants/app-constants';
import { GraphUtil } from './graph.util';
import { GraphGenerator } from './graph.generator.util';
import { FunctionsStore } from './functions.store';
import { Subject } from 'rxjs';
import { distinctUntilChanged, takeUntil } from 'rxjs/operators';
import { BluePrintDetailModel } from '../model/BluePrint.detail.model';
import { ActivatedRoute, Router } from '@angular/router';
import { DesignerService } from './designer.service';
import { FilesContent, FolderNodeElement } from '../package-creation/mapping-models/metadata/MetaDataTab.model';
import { PackageCreationModes } from '../package-creation/creationModes/PackageCreationModes';
import { PackageCreationBuilder } from '../package-creation/creationModes/PackageCreationBuilder';
import { PackageCreationStore } from '../package-creation/package-creation.store';
import { PackageCreationService } from '../package-creation/package-creation.service';
import { PackageCreationUtils } from '../package-creation/package-creation.utils';
import * as JSZip from 'jszip';
import { saveAs } from 'file-saver';
import { PackageCreationExtractionService } from '../package-creation/package-creation-extraction.service';
import { CBAPackage } from '../package-creation/mapping-models/CBAPacakge.model';
import { TopologyTemplate } from './model/designer.topologyTemplate.model';
import { ToastrService } from 'ngx-toastr';
import { DesignerDashboardState } from './model/designer.dashboard.state';
import { NgxUiLoaderService } from 'ngx-ui-loader';

@Component({
    selector: 'app-designer',
    templateUrl: './designer.component.html',
    styleUrls: ['./designer.component.css'],
    encapsulation: ViewEncapsulation.None
})
export class DesignerComponent implements OnInit, OnDestroy {

    controllerSideBar: boolean;
    actionAttributesSideBar: boolean;
    functionAttributeSidebar: boolean;
    viewedPackage: BluePrintDetailModel = new BluePrintDetailModel();
    customActionName: string;
    showAction: boolean;
    cl = 'editBar';

    boardGraph: joint.dia.Graph;
    boardPaper: joint.dia.Paper;

    paletteGraph: joint.dia.Graph;
    palettePaper: joint.dia.Paper;
    ngUnsubscribe = new Subject();
    opt = { tx: 100, ty: 100 };
    filesData: any = [];
    folder: FolderNodeElement = new FolderNodeElement();
    zipFile: JSZip = new JSZip();
    cbaPackage: CBAPackage;
    actions: string[] = [];
    dataTarget: string;
    steps: string[];
    designerState: DesignerDashboardState;
    currentActionName: string;
    packageId: any;

    constructor(
        private designerStore: DesignerStore,
        private functionStore: FunctionsStore,
        private packageCreationStore: PackageCreationStore,
        private packageCreationUtils: PackageCreationUtils,
        private graphUtil: GraphUtil,
        private graphGenerator: GraphGenerator,
        private route: ActivatedRoute,
        private router: Router,
        private designerService: DesignerService,
        private packageCreationService: PackageCreationService,
        private packageCreationExtractionService: PackageCreationExtractionService,
        private activatedRoute: ActivatedRoute,
        private ngxService: NgxUiLoaderService,
        private toastService: ToastrService) {
        this.controllerSideBar = true;
        this.actionAttributesSideBar = false;
        this.showAction = false;
        this.functionAttributeSidebar = false;

    }

    _toggleSidebar1() {
        this.controllerSideBar = !this.controllerSideBar;
        if (this.controllerSideBar === false) {
            this.cl = 'editBar2';
        }
        if (this.controllerSideBar === true) {
            this.cl = 'editBar';
        }
    }

    _toggleSidebar2() {
        this.actionAttributesSideBar = !this.actionAttributesSideBar;
    }

    publishBluePrint() {
        this.create();
        this.zipFile.generateAsync({ type: 'blob' })
            .then(blob => {
                const formData = new FormData();
                formData.append('file', blob);
                this.designerService.publishBlueprint(formData).subscribe(res => {
                    this.toastService.success('Package Deployed Successfuly');
                    console.log('Package Deployed...');
                }, error => {
                    this.toastService.error(error.message, 'Package error');
                    console.log(error);
                }, () => {
                    //  this.deployBluePrint = false;
                });
            });
    }


    /**
     * - There is a board (main paper) that will the action and function selected from the palette
     * itmes in this board will be used to create tosca workflow and node templates
     * - There is also palette , whis contains all the possible functions and actions
     * that can be dragged into the board
     * - There is also a fly paper , which is temporarliy paper created on the fly
     * when items is dragged from the palette- and it's deleted when the item is dropped over
     * the board.
     * for more info about the drag and drop algorithem used please visit the following link:
     * https://stackoverflow.com/a/36932973/1340034
     */

    ngOnInit() {
        // this.ngxService.start();
        this.customActionName = this.route.snapshot.paramMap.get('actionName');
        if (this.customActionName !== '') {
            this.showAction = true;
        }
        this.initializeBoard();
        this.initializePalette();
        this.stencilPaperEventListeners();
        const id = this.route.snapshot.paramMap.get('id');
        this.designerService.getPagedPackages(id).subscribe(
            (bluePrintDetailModels) => {
                if (bluePrintDetailModels) {
                    this.viewedPackage = bluePrintDetailModels[0];
                    this.packageCreationService.downloadPackage(this.viewedPackage.artifactName + '/'
                        + this.viewedPackage.artifactVersion)
                        .subscribe(response => {
                            const blob = new Blob([response], { type: 'application/octet-stream' });
                            this.packageCreationExtractionService.extractBlobToStore(blob);
                        });
                }
            });
        this.packageCreationStore.state$.subscribe(cba => {
            this.cbaPackage = cba;
            console.log(cba.templateTopology.content);
            this.designerStore.saveSourceContent(cba.templateTopology.content);

        });

        /**
         * the code to retrieve from server is commented
         */
        this.functionStore.state$
            .pipe(
                distinctUntilChanged((a: any, b: any) => JSON.stringify(a) === JSON.stringify(b)),
                takeUntil(this.ngUnsubscribe))
            .subscribe(state => {

                if (state.serverFunctions) {
                    console.log('inside subscriotn on functions store -->', state.serverFunctions);
                    console.log(state);
                    // this.viewedFunctions = state.functions;
                    const list = state.serverFunctions;

                    const cells = this.graphUtil.buildPaletteGraphFromList(list);
                    this.paletteGraph.resetCells(cells);

                    let idx = 0;
                    cells.forEach(cell => {
                        cell.translate(5, (cell.attributes.size.height + 5) * idx++);
                    });
                }
            });

        this.designerStore.state$
            .pipe(
                distinctUntilChanged((a: any, b: any) => JSON.stringify(a) === JSON.stringify(b)),
                takeUntil(this.ngUnsubscribe))
            .subscribe(state => {
                this.designerState = state;
                if (state.sourceContent) {
                    console.log('inside desinger.component---> ', state);
                    // generate graph from store objects if exist
                    const topologtTemplate: TopologyTemplate = JSON.parse(state.sourceContent);
                    console.log(topologtTemplate);
                    delete state.sourceContent;
                    this.graphGenerator.clear(this.boardGraph);
                    this.graphGenerator.populate(topologtTemplate, this.boardGraph);

                    console.log('all cells', this.boardGraph.getCells());
                    /**
                     * auto arrange elements in graph
                     * https://resources.jointjs.com/docs/jointjs/v3.1/joint.html#layout.DirectedGraph
                     */
                    joint.layout.DirectedGraph.layout(this.boardGraph.getCells(), {
                        dagre,
                        graphlib,
                        setLinkVertices: false,
                        marginX: 10,
                        marginY: 10,
                        clusterPadding: { top: 100, left: 30, right: 10, bottom: 100 },
                        rankDir: 'TB'
                    });
                    this.actions = [];
                    console.log('here');
                    for (const workflowsKey in topologtTemplate.workflows) {
                        if (workflowsKey && !this.actions.includes(workflowsKey)) {
                            this.actions.push(workflowsKey);
                            /* tslint:disable:no-string-literal */
                            if (!this.designerState.template.workflows[workflowsKey]['inputs']) {
                                this.designerState.template.workflows[workflowsKey]['inputs'] = {};
                            }
                            if (!this.designerState.template.workflows[workflowsKey]['outputs']) {
                                this.designerState.template.workflows[workflowsKey]['outputs'] = {};
                            }
                        }
                    }
                }
            });

        // action triggering
        this.functionStore.retrieveFuntions();
        this.activatedRoute.paramMap.subscribe(res => {
            this.packageId = res.get('id');
        });

    }

    initializePalette() {
        if (!this.paletteGraph) {
            this.paletteGraph = new joint.dia.Graph();
            this.palettePaper = new joint.dia.Paper({
                el: $('#palette-paper'),
                model: this.paletteGraph,
                width: 318,
                // height: '100%',
                height: $('#palette-paper').height(),
                // background: {
                //   color: 'rgba(0, 255, 0, 0.3)'
                // },
                interactive: false
                // elements in paletter need to be fixed, please refer to flying paper concept
            });
        }
    }

    initializeBoard() {
        if (!this.boardGraph) {
            console.log('initializeBoard...');
            this.boardGraph = new joint.dia.Graph();
            this.boardPaper = new joint.dia.Paper({
                el: $('#board-paper'),
                model: this.boardGraph,
                height: '100%',
                width: '100%',
                // origin: { x: 80, y: 70 },
                gridSize: 10, // background line sizes
                drawGrid: true,
                // background: {
                // color: 'rgba(0, 255, 0, 0.3)'
                // },
                cellViewNamespace: joint.shapes
            });

            this.boardPaper.on('all', element => {
                // console.log(element);
            });

            this.boardPaper.on('link:pointerdown', link => {
                console.log(link);
            });

            this.boardPaper.on('element:pointerdown', element => {
                // this.modelSelected.emit(element.model.get('model'));
            });

            this.boardPaper.on('blank:pointerclick', () => {
                // this.selectedModel = undefined;
            });

            this.boardGraph.on('change:position', (cell) => {

                const parentId = cell.get('parent');
                if (!parentId) {
                    // this is action
                    return;
                }

                const parent = this.boardGraph.getCell(parentId);

                const parentBbox = parent.getBBox();
                const cellBbox = cell.getBBox();
                if (parentBbox.containsPoint(cellBbox.origin()) &&
                    parentBbox.containsPoint(cellBbox.topRight()) &&
                    parentBbox.containsPoint(cellBbox.corner()) &&
                    parentBbox.containsPoint(cellBbox.bottomLeft())) {

                    // All the four corners of the child are inside
                    // the parent area.
                    return;
                }

                // Revert the child position.
                cell.set('position', cell.previous('position'));
            });
        }
        console.log('done initializing Board...');
    }

    insertCustomActionIntoBoard() {
        console.log('saving action to store action workflow....');
        let actionName = this.graphUtil.generateNewActionName();
        while (this.actions.includes(actionName)) {
            actionName = this.graphUtil.generateNewActionName();
        }
        this.graphUtil.createCustomActionWithName(actionName, this.boardGraph);
        this.designerStore.addDeclarativeWorkFlow(actionName);
        this.actions.push(actionName);
    }

    stencilPaperEventListeners() {
        this.palettePaper.on('cell:pointerdown', (draggedCell, pointerDownEvent, x, y) => {

            $('body').append(`
        <div id="flyPaper"
            style="position:fixed;z-index:100;opacity:.7;pointer-event:none;background-color: transparent !important;"></div>`
            );
            const flyGraph = new joint.dia.Graph();
            const flyPaper = new joint.dia.Paper({
                el: $('#flyPaper'),
                model: flyGraph,
                interactive: true
            });
            const flyShape = draggedCell.model.clone();
            const pos = draggedCell.model.position();
            const offset = {
                x: x - pos.x,
                y: y - pos.y
            };

            flyShape.position(0, 0);
            flyGraph.addCell(flyShape);
            $('#flyPaper').offset({
                left: pointerDownEvent.pageX - offset.x,
                top: pointerDownEvent.pageY - offset.y
            });
            $('body').on('mousemove.fly', mouseMoveEvent => {
                $('#flyPaper').offset({
                    left: mouseMoveEvent.pageX - offset.x,
                    top: mouseMoveEvent.pageY - offset.y
                });
            });

            $('body').on('mouseup.fly', mouseupEvent => {
                const mouseupX = mouseupEvent.pageX;
                const mouseupY = mouseupEvent.pageY;
                const target = this.boardPaper.$el.offset();
                // Dropped over paper ?
                if (mouseupX > target.left &&
                    mouseupX < target.left + this.boardPaper.$el.width() &&
                    mouseupY > target.top && y < target.top + this.boardPaper.$el.height()) {
                    const functionType = this.graphUtil.getFunctionTypeFromPaletteFunction(flyShape);
                    // step name is CDS realted terminology, please refer to tosca types
                    const stepName = functionType;
                    const functionElementForBoard = this.graphUtil.dropFunctionOverActionWithPosition(
                        stepName, functionType,
                        mouseupX, mouseupY,
                        target, offset,
                        this.boardGraph);

                    const parentCell = this.graphUtil.getParent(functionElementForBoard, this.boardPaper);

                    if (parentCell &&
                        parentCell.model.attributes.type === ActionElementTypeName &&
                        this.graphUtil.canEmpedMoreChildern(parentCell.model, this.boardGraph)) {

                        if (this.graphUtil.isEmptyParent(parentCell.model)) {
                            // first function in action
                            const actionName = parentCell.model.attributes.attrs['#label'].text;
                            this.designerStore.addStepToDeclarativeWorkFlow(actionName, stepName, functionType);
                            if (functionType === 'dg-generic') {
                                this.designerStore.addDgGenericNodeTemplate(stepName);
                            } else {
                                this.designerStore.addNodeTemplate(stepName, functionType);
                            }
                        } else {
                            // second action means there was a dg-generic node before
                            this.designerStore.addNodeTemplate(stepName, functionType);
                            // this will fail if multiple dg-generic were added
                            // TODO prevent multi functions of the same type inside the same action
                            const dgGenericNode = this.graphUtil.getDgGenericChild(parentCell.model, this.boardGraph)[0];
                            const dgGenericNodeName = this.graphUtil.getFunctionNameFromBoardFunction(dgGenericNode);
                            this.designerStore.addDgGenericDependency(dgGenericNodeName, stepName);
                        }


                        // Prevent recursive embedding.
                        if (parentCell &&
                            parentCell.model.get('parent') !== functionElementForBoard.id) {
                            parentCell.model.embed(functionElementForBoard);
                        }
                    } else {
                        console.log('function dropped outside action or not allowed, rolling back...');
                        alert('function dropped outside action or not allowed, rolling back...');
                        functionElementForBoard.remove();
                    }
                }
                $('body').off('mousemove.fly').off('mouseup.fly');
                // flyShape.remove();
                $('#flyPaper').remove();
            });
        });
        console.log('done stencilPaperEventListeners()...');
    }

    ngOnDestroy() {
        this.ngUnsubscribe.next();
        this.ngUnsubscribe.complete();
    }

    saveBluePrint() {
        this.ngxService.start();
        FilesContent.clear();
        let packageCreationModes: PackageCreationModes;
        this.cbaPackage = PackageCreationModes.mapModeType(this.cbaPackage);
        this.cbaPackage.metaData = PackageCreationModes.setEntryPoint(this.cbaPackage.metaData);
        packageCreationModes = PackageCreationBuilder.getCreationMode(this.cbaPackage);
        this.designerStore.state$.subscribe(state => {
            this.cbaPackage.templateTopology.content = this.packageCreationUtils.transformToJson(state.template);
        });
        packageCreationModes.execute(this.cbaPackage, this.packageCreationUtils);
        this.filesData.push(this.folder.TREE_DATA);
        this.saveBluePrintToDataBase();

    }

    enrichBluePrint() {
        this.ngxService.start();
        console.log('start enrich ------------');
        this.packageCreationStore.addTopologyTemplate(this.cbaPackage.templateTopology);
        this.formTreeData();
        this.enrichPackage();
    }

    private formTreeData() {
        FilesContent.clear();
        let packageCreationModes: PackageCreationModes;
        this.cbaPackage = PackageCreationModes.mapModeType(this.cbaPackage);
        this.cbaPackage.metaData = PackageCreationModes.setEntryPoint(this.cbaPackage.metaData);
        packageCreationModes = PackageCreationBuilder.getCreationMode(this.cbaPackage);
        packageCreationModes.execute(this.cbaPackage, this.packageCreationUtils);
        this.filesData.push(this.folder.TREE_DATA);
    }

    private enrichPackage() {
        this.create();
        this.zipFile.generateAsync({ type: 'blob' })
            .then(blob => {
                this.packageCreationService.enrichAndDeployPackage(blob).subscribe(response => {
                    // this.packageCreationService.enrichPackage(blob).subscribe(response => {
                    response = JSON.parse(response);
                    console.log(response);
                    console.log('success');
                    const id = response['blueprintModel']['id'];
                    this.router.navigate(['/packages/designer/' + id]);
                    // const blobInfo = new Blob([response], { type: 'application/octet-stream' });
                    // this.packageCreationStore.clear();
                    // this.packageCreationExtractionService.extractBlobToStore(blobInfo);
                    this.toastService.success('Enriched & Deployed successfully ');
                }, err => {
                    console.log(err);
                    this.toastService.error(err.message, 'Enrich Failed');
                    this.ngxService.stop();
                }, () => {
                    this.ngxService.stop();
                });
            }, error => {
                this.toastService.error(error.mesasge, 'Error occurs during enrichment process');
                console.error('Error -' + error.message);
            }, () => {
                this.ngxService.stop();
            });
    }

    create() {
        this.zipFile = new JSZip();
        FilesContent.getMapOfFilesNamesAndContent().forEach((value, key) => {
            this.zipFile.folder(key.split('/')[0]);
            this.zipFile.file(key, value);
        });

    }

    saveBluePrintToDataBase() {
        this.create();
        this.zipFile.generateAsync({ type: 'blob' })
            .then(blob => {
                this.packageCreationService.savePackage(blob).subscribe(
                    bluePrintDetailModels => {
                        this.toastService.success('Package is updated successfully');
                        const id = bluePrintDetailModels.toString().split('id')[1].split(':')[1].split('"')[1];
                        this.router.navigate(['/packages/designer/' + id]);
                        console.log('success');
                    }, error => {
                        this.toastService.error('Error Occured during editing process' + error.message);
                        console.log('Error -' + error.message);
                    }, () => {
                        this.ngxService.stop();
                    });
            }, err => {
            },
                () => {
                    this.ngxService.stop();
                });
    }

    openActionAttributes(customActionName: string) {
        console.log('opening here action attributes');
        this.currentActionName = customActionName;
        this.actionAttributesSideBar = true;
        this.functionAttributeSidebar = false;
        this.designerStore.setCurrentAction(customActionName);
        /* tslint:disable:no-string-literal */
        this.steps = Object.keys(this.designerState.template.workflows[customActionName]['steps']);
    }

    openFunctionAttributes(customFunctionName: string) {
        // console.log(customFunctionName);
        this.actionAttributesSideBar = false;
        this.functionAttributeSidebar = true;
        // console.log(this.designerState.template.workflows[this.currentActionName]
        // ['steps'][customFunctionName]['target']);
        this.designerStore.setCurrentFunction(this.designerState.template.workflows[this.currentActionName]
        ['steps'][customFunctionName]['target']);
    }

    getTarget(stepname) {
        try {
            //  console.log(this.currentActionName + " -- " + stepname)
            return this.designerState.template.workflows[this.currentActionName]
            ['steps'][stepname]['target'];
        } catch (e) {
            // console.log(e);
        }
    }

    downloadPackage() {

        this.ngxService.start();
        this.packageCreationService.downloadPackage(this.viewedPackage.artifactName + '/'
            + this.viewedPackage.artifactVersion).subscribe(response => {
                const blob = new Blob([response], { type: 'application/octet-stream' });
                saveAs(blob, this.viewedPackage.artifactName + '-' + this.viewedPackage.artifactVersion + '-CBA.zip');

            }, err => {
                this.toastService.error('Package ' + this.viewedPackage.artifactName + 'has error when downloading' +
                    err.message);
                this.ngxService.stop();
            }, () => {
                this.toastService.success('Package ' + this.viewedPackage.artifactName + 'downloaded successfully');
                this.ngxService.stop();
            });
    }
}