aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/graphs-v2/composition-graph/utils/composition-graph-palette-utils.ts
blob: 83bf7475016c940a9632a31f1e16ff2dfef667c2 (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
import {EventListenerService, LoaderService} from "app/services";
import {CapabilitiesGroup, NodesFactory, ComponentInstance, Component, CompositionCiNodeBase, RequirementsGroup} from "app/models";
import {ComponentFactory, ComponentInstanceFactory, GRAPH_EVENTS, GraphUIObjects} from "app/utils";
import {CompositionGraphGeneralUtils} from "./composition-graph-general-utils";
import {CommonGraphUtils} from "../../common/common-graph-utils";
import 'angular-dragdrop';
import {LeftPaletteComponent} from "../../../../models/components/displayComponent";

export class CompositionGraphPaletteUtils {

    constructor(private ComponentFactory:ComponentFactory,
                private $filter:ng.IFilterService,
                private loaderService:LoaderService,
                private generalGraphUtils:CompositionGraphGeneralUtils,
                private componentInstanceFactory:ComponentInstanceFactory,
                private nodesFactory:NodesFactory,
                private commonGraphUtils:CommonGraphUtils,
                private eventListenerService:EventListenerService) {
    }

    /**
     * Calculate the dragged element (html element) position on canvas
     * @param cy
     * @param event
     * @param position
     * @returns {Cy.BoundingBox}
     * @private
     */
    private _getNodeBBox(cy:Cy.Instance, event:IDragDropEvent, position?:Cy.Position) {
        let bbox = <Cy.BoundingBox>{};
        if (!position) {
            position = this.commonGraphUtils.getCytoscapeNodePosition(cy, event);
        }
        let cushionWidth:number = 40;
        let cushionHeight:number = 40;

        bbox.x1 = position.x - cushionWidth / 2;
        bbox.y1 = position.y - cushionHeight / 2;
        bbox.x2 = position.x + cushionWidth / 2;
        bbox.y2 = position.y + cushionHeight / 2;
        return bbox;
    }

    /**
     * Create the component instance, update data from parent component in the left palette and notify on_insert_to_ucpe if component was dragg into ucpe
     * @param cy
     * @param fullComponent
     * @param event
     * @param component
     */
    private _createComponentInstanceOnGraphFromPaletteComponent(cy:Cy.Instance, fullComponent:LeftPaletteComponent, event:IDragDropEvent, component:Component) {

        let componentInstanceToCreate:ComponentInstance = this.componentInstanceFactory.createComponentInstanceFromComponent(fullComponent);
        let cytoscapePosition:Cy.Position = this.commonGraphUtils.getCytoscapeNodePosition(cy, event);

        componentInstanceToCreate.posX = cytoscapePosition.x;
        componentInstanceToCreate.posY = cytoscapePosition.y;


        let onFailedCreatingInstance:(error:any) => void = (error:any) => {
            this.loaderService.hideLoader('composition-graph');
        };

        //on success - update node data
        let onSuccessCreatingInstance = (createInstance:ComponentInstance):void => {

            this.loaderService.hideLoader('composition-graph');

            createInstance.name = this.$filter('resourceName')(createInstance.name);
            createInstance.requirements = new RequirementsGroup(createInstance.requirements);
            createInstance.capabilities = new CapabilitiesGroup(createInstance.capabilities);
            createInstance.componentVersion = fullComponent.version;
            createInstance.icon = fullComponent.icon;
            createInstance.setInstanceRC();

            let newNode:CompositionCiNodeBase = this.nodesFactory.createNode(createInstance);
            let cyNode:Cy.CollectionNodes = this.commonGraphUtils.addComponentInstanceNodeToGraph(cy, newNode);

            //check if node was dropped into a UCPE
            let ucpe:Cy.CollectionElements = this.commonGraphUtils.isInUcpe(cy, cyNode.boundingbox());
            if (ucpe.length > 0) {
                this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_INSERT_NODE_TO_UCPE, cyNode, ucpe, false);
            }
            this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_CREATE_COMPONENT_INSTANCE);

        };

        this.loaderService.showLoader('composition-graph');

        // Create the component instance on server
        this.generalGraphUtils.getGraphUtilsServerUpdateQueue().addBlockingUIAction(() => {
            component.createComponentInstance(componentInstanceToCreate).then(onSuccessCreatingInstance, onFailedCreatingInstance);
        });
    }

    /**
     * Thid function applay red/green background when component dragged from palette
     * @param cy
     * @param event
     * @param dragElement
     * @param dragComponent
     */
    public onComponentDrag(cy:Cy.Instance, event:IDragDropEvent, dragElement:JQuery, dragComponent:ComponentInstance) {

        if (event.clientX < GraphUIObjects.DIAGRAM_PALETTE_WIDTH_OFFSET || event.clientY < GraphUIObjects.DIAGRAM_HEADER_OFFSET) { //hovering over palette. Dont bother computing validity of drop
            dragElement.removeClass('red');
            return;
        }

        let offsetPosition = {
            x: event.clientX - GraphUIObjects.DIAGRAM_PALETTE_WIDTH_OFFSET,
            y: event.clientY - GraphUIObjects.DIAGRAM_HEADER_OFFSET
        };
        let bbox = this._getNodeBBox(cy, event, offsetPosition);

        if (this.generalGraphUtils.isPaletteDropValid(cy, bbox, dragComponent)) {
            dragElement.removeClass('red');
        } else {
            dragElement.addClass('red');
        }
    }

    /**
     *  This function is called when after dropping node on canvas
     *  Check if the capability & requirements fulfilled and if not get from server
     * @param cy
     * @param event
     * @param component
     */
    public addNodeFromPalette(cy:Cy.Instance, event:IDragDropEvent, component:Component) {
        this.loaderService.showLoader('composition-graph');

        let draggedComponent:LeftPaletteComponent = event.dataTransfer.component;

        if (this.generalGraphUtils.componentRequirementsAndCapabilitiesCaching.containsKey(draggedComponent.uniqueId)) {
            let fullComponent = this.generalGraphUtils.componentRequirementsAndCapabilitiesCaching.getValue(draggedComponent.uniqueId);
            draggedComponent.capabilities = fullComponent.capabilities;
            draggedComponent.requirements = fullComponent.requirements;
            this._createComponentInstanceOnGraphFromPaletteComponent(cy, draggedComponent, event, component);

        } else {

            this.ComponentFactory.getComponentFromServer(draggedComponent.getComponentSubType(), draggedComponent.uniqueId)
                .then((fullComponent:Component) => {
                    draggedComponent.capabilities = fullComponent.capabilities;
                    draggedComponent.requirements = fullComponent.requirements;
                    this._createComponentInstanceOnGraphFromPaletteComponent(cy, draggedComponent, event, component);
                });
        }
    }
}


CompositionGraphPaletteUtils.$inject = [
    'ComponentFactory',
    '$filter',
    'LoaderService',
    'CompositionGraphGeneralUtils',
    'ComponentInstanceFactory',
    'NodesFactory',
    'CommonGraphUtils',
    'EventListenerService'
];