diff options
Diffstat (limited to 'catalog-ui/src/app/directives/graphs-v2/composition-graph/composition-graph.html')
-rw-r--r-- | catalog-ui/src/app/directives/graphs-v2/composition-graph/composition-graph.html | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/catalog-ui/src/app/directives/graphs-v2/composition-graph/composition-graph.html b/catalog-ui/src/app/directives/graphs-v2/composition-graph/composition-graph.html deleted file mode 100644 index b473f44628..0000000000 --- a/catalog-ui/src/app/directives/graphs-v2/composition-graph/composition-graph.html +++ /dev/null @@ -1,67 +0,0 @@ -<!-- - ~ Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. - ~ - ~ Licensed 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. - --> - - -<loader display="isLoading" loader-type="composition-graph"></loader> -<div class="sdc-composition-graph-wrapper {{zoneTagMode}}" ng-class="{'with-sidebar': withSidebar, 'view-only':isViewOnly}" - data-drop="!zoneTagMode" - data-jqyoui-options="{accept: verifyDrop}" - data-jqyoui-droppable="{onDrop:'dropCallback', beforeDrop: 'beforeDropCallback'}"> -</div> - -<!-- <relation-menu relation-menu-directive-obj="relationMenuDirectiveObj" is-link-menu-open="isLinkMenuOpen" - create-relation="createLinkFromMenu" cancel="cancelRelationMenu()"></relation-menu> --> - -<menu-list-ng2 [props]="canvasMenuProps"></menu-list-ng2> - - <div class="w-sdc-search-menu" data-ng-class="{'with-sidebar': withSidebar}"> - - <ng2-service-path-selector - ng-if="component.isService()" - [service]="component" - [draw-path]="drawPathOnCy" - [delete-paths]="deletePathsOnCy" - [selected-path-id]="selectedPathId"> - </ng2-service-path-selector> - <ng2-service-path - ng-if="component.isService()" - [service]="component" - [on-create]="createOrUpdateServicePath" - [is-view-only]="isViewOnly"> - </ng2-service-path> - <ng2-search-with-autocomplete - [search-placeholder]="'Type to search'" - [auto-complete-values]="componentInstanceNames" - (search-changed)="getAutoCompleteValues($event)" - (search-button-clicked)="highlightSearchMatches($event)" - [search-bar-class]="'composition-search'"> - </ng2-search-with-autocomplete> - <div class="zoom-icons sprite-new canvas-fit-all" data-ng-click="zoomAllWithoutSidebar()"></div> - <div class="zoom-icons sprite-new zoom-plus" data-ng-click="zoom(true)"></div> - <div class="zoom-icons sprite-new zoom-minus" data-ng-click="zoom(false)"></div> - </div> -<!--<asset-popover ng-if="assetPopoverOpen" asset-popover-obj="assetPopoverObj" delete-asset="deleteNode(assetPopoverObj.nodeId)"></asset-popover>--> -<div class="sdc-canvas-zones__wrapper {{zoneTagMode}}" data-ng-class="{'with-sidebar': withSidebar}"> - <ng2-zone-container data-ng-repeat="zone in zones" [title]="zone.title" [type]="zone.type" [count]="zone.instances.length" - [visible]="zone.visible" [minimized]="zone.minimized" (minimize)="zoneMinimizeToggle(zone.type)" (background-click)="zoneBackgroundClicked()"> - <ng2-zone-instance - data-ng-repeat="instance in zone.instances" [hidden]="instance.hidden" - [zone-instance]="instance" [default-icon-text]="zone.defaultIconText" [is-active]="activeZoneInstance == instance" [active-instance-mode]="activeZoneInstance && activeZoneInstance.mode" - [is-view-only]="isViewOnly" [force-save]="instance.forceSave" (mode-change)="zoneInstanceModeChanged($event.newMode, $event.instance, zone.type)" (tag-handle-click)="zoneInstanceTagged($event)" - (assignment-save-start)="zoneAssignmentSaveStart()" (assignment-save-complete)="zoneAssignmentSaveComplete($event)"> - </ng2-zone-instance> - </ng2-zone-container> -</div>
\ No newline at end of file |