Sync Integ to Master
[sdc.git] / catalog-ui / src / app / directives / graphs-v2 / composition-graph / utils / composition-graph-nodes-utils.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 import * as _ from "lodash";
22 import {Component, NodesFactory, ComponentInstance, CompositionCiNodeVl,IAppMenu,AssetPopoverObj, Service} from "app/models";
23 import {EventListenerService, LoaderService} from "app/services";
24 import {GRAPH_EVENTS,ModalsHandler,GraphUIObjects} from "app/utils";
25 import {CompositionGraphGeneralUtils} from "./composition-graph-general-utils";
26 import {CommonGraphUtils} from "../../common/common-graph-utils";
27 import {CompositionCiServicePathLink} from "app/models/graph/graph-links/composition-graph-links/composition-ci-service-path-link";
28 import {ServiceGenericResponse} from "app/ng2/services/responses/service-generic-response";
29 import {ServiceServiceNg2} from 'app/ng2/services/component-services/service.service';
30 /**
31  * Created by obarda on 11/9/2016.
32  */
33 export class CompositionGraphNodesUtils {
34     constructor(private NodesFactory:NodesFactory, private $log:ng.ILogService,
35                 private GeneralGraphUtils:CompositionGraphGeneralUtils,
36                 private commonGraphUtils:CommonGraphUtils,
37                 private eventListenerService:EventListenerService,
38                 private loaderService:LoaderService,
39                 private serviceService:ServiceServiceNg2,
40                 /*private sdcMenu: IAppMenu,
41                 private ModalsHandler: ModalsHandler*/) {
42
43     }
44
45     /**
46      * Returns component instances for all nodes passed in
47      * @param nodes - Cy nodes
48      * @returns {any[]}
49      */
50     public getAllNodesData(nodes:Cy.CollectionNodes) {
51         return _.map(nodes, (node:Cy.CollectionFirstNode)=> {
52             return node.data();
53         })
54     };
55
56
57     public highlightMatchingNodesByName = (cy: Cy.Instance, nameToMatch: string) => {
58
59         cy.batch(() => {
60             cy.nodes("[name !@^= '" + nameToMatch + "']").style({ 'background-image-opacity': 0.4 });
61             cy.nodes("[name @^= '" + nameToMatch + "']").style({ 'background-image-opacity': 1 });
62         })
63         
64     }
65
66     //Returns all nodes whose name starts with searchTerm
67     public getMatchingNodesByName = (cy: Cy.Instance, nameToMatch: string): Cy.CollectionNodes => {
68         return cy.nodes("[name @^= '" + nameToMatch + "']");
69     };
70
71     /**
72      * Deletes component instances on server and then removes it from the graph as well
73      * @param cy
74      * @param component
75      * @param nodeToDelete
76      */
77     public deleteNode(cy:Cy.Instance, component:Component, nodeToDelete:Cy.CollectionNodes):void {
78
79         this.loaderService.showLoader('composition-graph');
80         let onSuccess:(response:ComponentInstance) => void = (response:ComponentInstance) => {
81             console.info('onSuccess', response);
82
83             //if node to delete is a UCPE, remove all children (except UCPE-CPs) and remove their "hostedOn" links
84             if (nodeToDelete.data().isUcpe) {
85                 _.each(cy.nodes('[?isInsideGroup]'), (node)=> {
86                     this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_REMOVE_NODE_FROM_UCPE, node, nodeToDelete);
87                 });
88             }
89
90             //check whether the node is connected to any VLs that only have one other connection. If so, delete that VL as well
91             if (!(nodeToDelete.data() instanceof CompositionCiNodeVl)) {
92                 let connectedVls:Array<Cy.CollectionFirstNode> = this.getConnectedVlToNode(nodeToDelete);
93                 this.handleConnectedVlsToDelete(connectedVls);
94             }
95
96             // check whether there is a service path going through this node, and if so clean it from the graph.
97             let nodeId = nodeToDelete.data().id;
98             let connectedPathLinks = cy.collection(`[type="${CompositionCiServicePathLink.LINK_TYPE}"][source="${nodeId}"], [type="${CompositionCiServicePathLink.LINK_TYPE}"][target="${nodeId}"]`);
99             _.forEach(connectedPathLinks, (link, key) => {
100                 cy.remove(`[pathId="${link.data().pathId}"]`);
101             });
102
103             // update service path list
104             this.serviceService.getComponentCompositionData(component).subscribe((response:ServiceGenericResponse) => {
105                 (<Service>component).forwardingPaths = response.forwardingPaths;
106             });
107
108             //update UI
109             cy.remove(nodeToDelete);
110         };
111
112         let onFailed:(response:any) => void = (response:any) => {
113             console.info('onFailed', response);
114         };
115
116
117         this.GeneralGraphUtils.getGraphUtilsServerUpdateQueue().addBlockingUIActionWithReleaseCallback(
118             () => component.deleteComponentInstance(nodeToDelete.data().componentInstance.uniqueId).then(onSuccess, onFailed),
119             () => this.loaderService.hideLoader('composition-graph')
120         );
121
122     };
123
124 /*
125         public confirmDeleteNode = (nodeId:string, cy:Cy.Instance, component:Component) => {
126             let node:Cy.CollectionNodes = cy.getElementById(nodeId);
127             let onOk = ():void => {
128                 this.deleteNode(cy, component, node);
129             };
130
131             let componentInstance:ComponentInstance = node.data().componentInstance;
132             let state = "deleteInstance";
133             let title:string =  this.sdcMenu.alertMessages[state].title;
134             let message:string =  this.sdcMenu.alertMessages[state].message.format([componentInstance.name]);
135
136             this.ModalsHandler.openAlertModal(title, message).then(onOk);
137         };*/
138     /**
139      * Finds all VLs connected to a single node
140      * @param node
141      * @returns {Array<Cy.CollectionFirstNode>}
142      */
143     public getConnectedVlToNode = (node:Cy.CollectionNodes):Array<Cy.CollectionFirstNode> => {
144         let connectedVls:Array<Cy.CollectionFirstNode> = new Array<Cy.CollectionFirstNode>();
145         _.forEach(node.connectedEdges().connectedNodes(), (node:Cy.CollectionFirstNode) => {
146             if (node.data() instanceof CompositionCiNodeVl) {
147                 connectedVls.push(node);
148             }
149         });
150         return connectedVls;
151     };
152
153
154     /**
155      * Delete all VLs that have only two connected nodes (this function is called when deleting a node)
156      * @param connectedVls
157      */
158     public handleConnectedVlsToDelete = (connectedVls:Array<Cy.CollectionFirstNode>) => {
159         _.forEach(connectedVls, (vlToDelete:Cy.CollectionNodes) => {
160
161             if (vlToDelete.connectedEdges().length === 2) { // if vl connected only to 2 nodes need to delete the vl
162                 this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_DELETE_COMPONENT_INSTANCE, vlToDelete.data().componentInstance);
163             }
164         });
165     };
166
167
168     /**
169      * This function is called when moving a node in or out of UCPE.
170      * Deletes all connected VLs that have less than 2 valid connections remaining after the move
171      * Returns the collection of vls that are in the process of deletion (async) to prevent duplicate calls while deletion is in progress
172      * @param component
173      * @param cy
174      * @param node - node that was moved in/out of ucpe
175      */
176     public deleteNodeVLsUponMoveToOrFromUCPE = (component:Component, cy:Cy.Instance, node:Cy.CollectionNodes):Cy.CollectionNodes => {
177         if (node.data() instanceof CompositionCiNodeVl) {
178             return;
179         }
180
181         let connectedVLsToDelete:Cy.CollectionNodes = cy.collection();
182         _.forEach(node.neighborhood('node'), (connectedNode) => {
183
184             //Find all neighboring nodes that are VLs
185             if (connectedNode.data() instanceof CompositionCiNodeVl) {
186
187                 //check VL's neighbors to see if it has 2 or more nodes whose location is compatible with VL (regardless of whether VL is in or out of UCPE)
188                 let compatibleNodeCount = 0;
189                 let vlNeighborhood = connectedNode.neighborhood('node');
190                 _.forEach(vlNeighborhood, (vlNeighborNode)=> {
191                     if (this.commonGraphUtils.nodeLocationsCompatible(cy, connectedNode, vlNeighborNode)) {
192                         compatibleNodeCount++;
193                     }
194                 });
195
196                 if (compatibleNodeCount < 2) {
197                     connectedVLsToDelete = connectedVLsToDelete.add(connectedNode);
198                 }
199             }
200         });
201
202         connectedVLsToDelete.each((i, vlToDelete:Cy.CollectionNodes)=> {
203             this.deleteNode(cy, component, vlToDelete);
204         });
205         return connectedVLsToDelete;
206     };
207
208     /**
209      * This function will update nodes position. if the new position is into or out of ucpe, the node will trigger the ucpe events
210      * @param cy
211      * @param component
212      * @param nodesMoved - the node/multiple nodes now moved by the user
213      */
214     public onNodesPositionChanged = (cy:Cy.Instance, component:Component, nodesMoved:Cy.CollectionNodes):void => {
215
216         if (nodesMoved.length === 0) {
217             return;
218         }
219
220         let isValidMove:boolean = this.GeneralGraphUtils.isGroupValidDrop(cy, nodesMoved);
221         if (isValidMove) {
222
223             this.$log.debug(`composition-graph::ValidDrop:: updating node position`);
224             let instancesToUpdateInNonBlockingAction:Array<ComponentInstance> = new Array<ComponentInstance>();
225
226             _.each(nodesMoved, (node:Cy.CollectionFirstNode)=> {  //update all nodes new position
227
228                 if (node.data().isUcpePart && !node.data().isUcpe) {
229                     return;
230                 }//No need to update UCPE-CPs
231
232                 //update position
233                 let newPosition:Cy.Position = this.commonGraphUtils.getNodePosition(node);
234                 node.data().componentInstance.updatePosition(newPosition.x, newPosition.y);
235
236                 //check if node moved to or from UCPE
237                 let ucpe = this.commonGraphUtils.isInUcpe(node.cy(), node.boundingbox());
238                 if (node.data().isInsideGroup || ucpe.length) {
239                     this.handleUcpeChildMove(node, ucpe, instancesToUpdateInNonBlockingAction);
240                 } else {
241                     instancesToUpdateInNonBlockingAction.push(node.data().componentInstance);
242                 }
243
244             });
245
246             if (instancesToUpdateInNonBlockingAction.length > 0) {
247                 this.GeneralGraphUtils.pushMultipleUpdateComponentInstancesRequestToQueue(false, instancesToUpdateInNonBlockingAction, component);
248             }
249         } else {
250             this.$log.debug(`composition-graph::notValidDrop:: node return to latest position`);
251             //reset nodes position
252             nodesMoved.positions((i, node) => {
253                 return {
254                     x: +node.data().componentInstance.posX,
255                     y: +node.data().componentInstance.posY
256                 };
257             })
258         }
259
260         this.GeneralGraphUtils.getGraphUtilsServerUpdateQueue().addBlockingUIActionWithReleaseCallback(() => {
261         }, () => {
262             this.loaderService.hideLoader('composition-graph');
263         });
264
265     };
266
267     /**
268      * Checks whether the node has been added or removed from UCPE and triggers appropriate events
269      * @param node - node moved
270      * @param ucpeContainer - UCPE container that the node has been moved to. When moving a node out of ucpe, param will be empty
271      * @param instancesToUpdateInNonBlockingAction
272      */
273     public handleUcpeChildMove(node:Cy.CollectionFirstNode, ucpeContainer:Cy.CollectionElements, instancesToUpdateInNonBlockingAction:Array<ComponentInstance>) {
274
275         if (node.data().isInsideGroup) {
276             if (ucpeContainer.length) { //moving node within UCPE. Simply update position
277                 this.commonGraphUtils.updateUcpeChildPosition(<Cy.CollectionNodes>node, ucpeContainer);
278                 instancesToUpdateInNonBlockingAction.push(node.data().componentInstance);
279             } else { //removing node from UCPE. Notify observers
280                 this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_REMOVE_NODE_FROM_UCPE, node, ucpeContainer);
281             }
282         } else if (!node.data().isInsideGroup && ucpeContainer.length && !node.data().isUcpePart) { //adding node to UCPE
283             this.eventListenerService.notifyObservers(GRAPH_EVENTS.ON_INSERT_NODE_TO_UCPE, node, ucpeContainer, true);
284         }
285     }
286         /**
287          * Gets the position for the asset popover menu
288          * Then, check if right edge of menu would overlap horizontal screen edge (palette offset + canvas width - right panel)
289          * Then, check if bottom edge of menu would overlap the vertical end of the canvas.
290          * @param cy
291          * @param node
292          * @returns {Cy.Position}
293         
294         public createAssetPopover = (cy: Cy.Instance, node:Cy.CollectionFirstNode, isViewOnly:boolean):AssetPopoverObj => {
295
296             let menuOffset:Cy.Position = { x: node.renderedWidth() / 2, y: -(node.renderedWidth() / 2) };// getNodePositionWithOffset returns central point of node. First add node.renderedWidth()/2 to get its to border.
297             let menuPosition:Cy.Position = this.commonGraphUtils.getNodePositionWithOffset(node, menuOffset);
298             let menuSide:string = 'right';
299
300             if(menuPosition.x + GraphUIObjects.COMPOSITION_NODE_MENU_WIDTH >= cy.width() + GraphUIObjects.DIAGRAM_PALETTE_WIDTH_OFFSET - GraphUIObjects.COMPOSITION_RIGHT_PANEL_OFFSET){
301                 menuPosition.x -= menuOffset.x * 2 + GraphUIObjects.COMPOSITION_NODE_MENU_WIDTH; //menu position already includes offset to the right. Therefore, subtract double offset so we have same distance from node for menu on left
302                 menuSide = 'left';
303             }
304
305             if(menuPosition.y + GraphUIObjects.COMPOSITION_NODE_MENU_HEIGHT >= cy.height()){
306                 menuPosition.y = menuPosition.y - GraphUIObjects.COMPOSITION_NODE_MENU_HEIGHT - menuOffset.y * 2;
307             }
308
309             return new AssetPopoverObj(node.data().id, node.data().name, menuPosition, menuSide, isViewOnly);
310         };
311  */
312
313     }
314
315
316     CompositionGraphNodesUtils.$inject = ['NodesFactory', '$log', 'CompositionGraphGeneralUtils', 'CommonGraphUtils', 'EventListenerService', 'LoaderService', 'ServiceServiceNg2' /*, 'sdcMenu', 'ModalsHandler'*/]
317