blob: d426512d808cd7fe59021153a2a0641438220c73 [file] [log] [blame]
Michael Landodd603392017-07-12 00:54:52 +03001/*-
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
Idan Amit7363f3d2018-03-21 12:04:57 +020010 *
Michael Landodd603392017-07-12 00:54:52 +030011 * http://www.apache.org/licenses/LICENSE-2.0
Idan Amit7363f3d2018-03-21 12:04:57 +020012 *
Michael Landodd603392017-07-12 00:54:52 +030013 * 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
Michael Landoed64b5e2017-06-09 03:19:04 +030021import {ClickedOutsideDirective} from "../directives/clicked-outside/clicked-outside-directive";
22import {LoaderDirective} from "../directives/loader/loader-directive";
23import {UserHeaderDetailsDirective} from "../directives/user-header-details/user-header-details-directive";
24import {FileTypeDirective} from "../directives/file-type/file-type";
25import {DownloadArtifactDirective} from "../directives/download-artifact/download-artifact";
26import {EllipsisDirective} from "../directives/ellipsis/ellipsis-directive";
27import {InvalidCharactersDirective} from "../directives/invalid-characters/invalid-characters";
28import {ExpandCollapseDirective} from "../directives/utils/expand-collapse/expand-collapse";
29import {PerfectScrollerDirective} from "../directives/perfect-scrollbar/angular-perfect-scrollbar";
30import {SdcModalDirective} from "../directives/modal/sdc-modal";
31import {FileOpenerDirective} from "../directives/file-opener/file-opener";
32import {FileUploadDirective} from "../directives/file-upload/file-upload";
33import {StructureTreeDirective} from "../directives/structure-tree/structure-tree-directive";
34import {SmartTooltipDirective} from "../directives/utils/smart-tooltip/smart-tooltip";
35import {PrintGraphScreenDirective} from "../directives/print-graph-screen/print-graph-screen";
36import {TagDirective} from "../directives/tag/tag-directive";
37import {SdcTagsDirective} from "../directives/utils/sdc-tags/sdc-tags";
38import {SdcKeyboardEventsDirective} from "../directives/utils/sdc-keyboard-events/sdc-keyboard-events";
39import {ExpandCollapseMenuBoxDirective} from "../directives/utils/expand-collapse-menu-box/expand-collaps-menu-box";
40import {PunchOutDirective} from "../directives/punch-out/punch-out";
41import {CustomValidationDirective} from "../directives/custom-validation/custom-validation";
42import {EcompHeaderDirective} from "../directives/ecomp-header/ecomp-header";
Michael Landoed64b5e2017-06-09 03:19:04 +030043import {EditNamePopoverDirective} from "../directives/edit-name-popover/edit-name-popover-directive";
44import {DataTypeFieldsStructureDirective} from "../directives/property-types/data-type-fields-structure/data-type-fields-structure";
45import {TypeMapDirective} from "../directives/property-types/type-map/type-map-directive";
46import {TypeListDirective} from "../directives/property-types/type-list/type-list-directive";
47import {SelectDataTypeFieldsStructureDirective} from "../directives/select-property-types/select-data-type-fields-structure/select-data-type-fields-structure";
48import {SelectTypeMapDirective} from "../directives/select-property-types/select-type-map/select-type-map-directive";
49import {SelectTypeListDirective} from "../directives/select-property-types/select-type-list/select-type-list-directive";
50import {ValidationOnLoadDirective} from "../directives/utils/validation-on-load/validation-on-load";
51import {InfoTooltipDirective} from "../directives/info-tooltip/info-tooltip";
52import {SdcTabsDirective} from "../directives/sdc-tabs/sdc-tabs-directive";
53import {SdcSingleTabDirective, InnerSdcSingleTabDirective} from "../directives/sdc-tabs/sdc-single-tab/sdc-single-tab-directive";
54import {ExpandCollapseListHeaderDirective} from "../directives/utils/expand-collapse-list-header/expand-collapse-list-header";
55import {JsonExportExcelDirective} from "../directives/export-json-to-excel/export-json-to-excel";
Michael Landoed64b5e2017-06-09 03:19:04 +030056import {TopProgressDirective} from "../directives/layout/top-progress/top-progress";
57import {CheckboxElementDirective} from "../directives/elements/checkbox/checkbox";
58import {RadiobuttonElementDirective} from "../directives/elements/radiobutton/radiobutton";
59import {OnLastRepeatDirective} from "../directives/events/on-last-repeat/on-last-repeat";
60import {InputRowDirective} from "../directives/inputs-and-properties/inputs/input-row-directive";
61import {PropertyRowDirective} from "../directives/inputs-and-properties/properties/property-row-directive";
62import {NodesFactory} from "../models/graph/nodes/nodes-factory";
63import {LinksFactory} from "../models/graph/graph-links/links-factory";
64import {ImageCreatorService} from "../directives/graphs-v2/image-creator/image-creator.service";
65import {Palette} from "../directives/graphs-v2/palette/palette.directive";
66import {CompositionGraph} from "../directives/graphs-v2/composition-graph/composition-graph.directive";
Michael Landoed64b5e2017-06-09 03:19:04 +030067import {DeploymentGraph} from "../directives/graphs-v2/deployment-graph/deployment-graph.directive";
68import {CommonGraphUtils} from "../directives/graphs-v2/common/common-graph-utils";
69import {CompositionGraphNodesUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-nodes-utils";
70import {CompositionGraphGeneralUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-general-utils";
71import {CompositionGraphLinkUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-links-utils";
72import {DeploymentGraphGeneralUtils} from "../directives/graphs-v2/deployment-graph/deployment-utils/deployment-graph-general-utils";
73import {CompositionGraphPaletteUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-palette-utils";
Michael Landoa5445102018-03-04 14:53:33 +020074import {CompositionGraphZoneUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-zone-utils";
Michael Landoed64b5e2017-06-09 03:19:04 +030075import {MatchCapabilitiesRequirementsUtils} from "../directives/graphs-v2/composition-graph/utils/match-capability-requierment-utils";
Michael Landoed64b5e2017-06-09 03:19:04 +030076import {CapabilitiesListDirective} from "../directives/capabilities-and-requirements/capability/capabilities-list-directive";
77import {RequirementsListDirective} from "../directives/capabilities-and-requirements/requirement/requirements-list-directive";
Michael Landoa5445102018-03-04 14:53:33 +020078import {ServicePathGraphUtils} from "../directives/graphs-v2/composition-graph/utils/composition-graph-service-path-utils";
Michael Lando5b593492018-07-29 16:13:45 +030079import {PreventDoubleClickDirective} from "../directives/prevent-double-click/prevent-double-click";
Michael Landoed64b5e2017-06-09 03:19:04 +030080
81let moduleName:string = 'Sdc.Directives';
82let directiveModule:ng.IModule = angular.module(moduleName, []);
83
84directiveModule.directive('clickedOutside', ClickedOutsideDirective.factory);
85directiveModule.directive('loader', LoaderDirective.factory);
86directiveModule.directive('userHeaderDetails', UserHeaderDetailsDirective.factory);
87directiveModule.directive('ellipsis', EllipsisDirective.factory);
88directiveModule.directive('downloadArtifact', DownloadArtifactDirective.factory);
89directiveModule.directive('fileType', FileTypeDirective.factory);
90directiveModule.directive('invalidCharacters', InvalidCharactersDirective.factory);
91directiveModule.directive('perfectScrollbar', PerfectScrollerDirective.factory);
92directiveModule.directive('expandCollapse', ExpandCollapseDirective.factory);
Michael Lando5b593492018-07-29 16:13:45 +030093directiveModule.directive('ng1Modal', SdcModalDirective.factory);
Michael Landoed64b5e2017-06-09 03:19:04 +030094directiveModule.directive('fileOpener', FileOpenerDirective.factory);
95directiveModule.directive('fileUpload', FileUploadDirective.factory);
96directiveModule.directive('structureTree', StructureTreeDirective.factory);
97directiveModule.directive('sdcSmartTooltip', SmartTooltipDirective.factory);
98directiveModule.directive('printGraphScreen', PrintGraphScreenDirective.factory);
99directiveModule.directive('sdcTag', TagDirective.factory);
100directiveModule.directive('sdcTags', SdcTagsDirective.factory);
101directiveModule.directive('sdcKeyboardEvents', SdcKeyboardEventsDirective.factory);
102directiveModule.directive('expandCollapseMenuBox', ExpandCollapseMenuBoxDirective.factory);
103directiveModule.directive('punchOut', PunchOutDirective.factory);
104directiveModule.directive('customValidation', CustomValidationDirective.factory);
105directiveModule.directive('ecompHeader', EcompHeaderDirective.factory);
Michael Landoed64b5e2017-06-09 03:19:04 +0300106directiveModule.directive('editNamePopover', EditNamePopoverDirective.factory);
107directiveModule.directive('fieldsStructure', DataTypeFieldsStructureDirective.factory);
108directiveModule.directive('typeMap', TypeMapDirective.factory);
109directiveModule.directive('typeList', TypeListDirective.factory);
110directiveModule.directive('selectFieldsStructure', SelectDataTypeFieldsStructureDirective.factory);
111directiveModule.directive('selectTypeMap', SelectTypeMapDirective.factory);
112directiveModule.directive('selectTypeList', SelectTypeListDirective.factory);
113directiveModule.directive('infoTooltip', InfoTooltipDirective.factory);
114directiveModule.directive('validationOnLoad', ValidationOnLoadDirective.factory);
Michael Lando5b593492018-07-29 16:13:45 +0300115directiveModule.directive('ng1Tabs', SdcTabsDirective.factory);
Michael Landoed64b5e2017-06-09 03:19:04 +0300116directiveModule.directive('sdcSingleTab', SdcSingleTabDirective.factory);
117directiveModule.directive('innerSdcSingleTab', InnerSdcSingleTabDirective.factory);
118directiveModule.directive('jsonExportExcel', JsonExportExcelDirective.factory);
119directiveModule.directive('expandCollapseListHeader', ExpandCollapseListHeaderDirective.factory);
Michael Lando5b593492018-07-29 16:13:45 +0300120directiveModule.directive('preventDoubleClick', PreventDoubleClickDirective.factory);
121//
Michael Landoed64b5e2017-06-09 03:19:04 +0300122//
123// // Layouts
Michael Landoed64b5e2017-06-09 03:19:04 +0300124directiveModule.directive('topProgress', TopProgressDirective.factory);
125//
126// // Elements
Michael Lando5b593492018-07-29 16:13:45 +0300127directiveModule.directive('ng1Checkbox', CheckboxElementDirective.factory);
Michael Landoed64b5e2017-06-09 03:19:04 +0300128directiveModule.directive('sdcRadioButton', RadiobuttonElementDirective.factory);
129//
130// // Events
131directiveModule.directive('onLastRepeat', OnLastRepeatDirective.factory);
132//
133// //Inputs & Properties
134directiveModule.directive('inputRow', InputRowDirective.factory);
135directiveModule.directive('propertyRow', PropertyRowDirective.factory);
136//
137//
138// // ------------------------------------------- Composition & Deployment Graphs------------------------------------------//
139//
140// //Util service for Graph
141directiveModule.service('NodesFactory', NodesFactory);
142directiveModule.service('LinksFactory', LinksFactory);
143directiveModule.service('ImageCreatorService', ImageCreatorService);
144//
145// //composition
146directiveModule.directive('palette', Palette.factory);
147directiveModule.directive('compositionGraph', CompositionGraph.factory);
Anjali walsatwar3527b3e2018-09-26 18:53:06 +0530148
Michael Landoed64b5e2017-06-09 03:19:04 +0300149//
150// //deployment
151directiveModule.directive('deploymentGraph', DeploymentGraph.factory);
152//
153// //Graph Utils - Common
154directiveModule.service('CommonGraphUtils', CommonGraphUtils);
155//
156// //Composition Graph Utils
157directiveModule.service('CompositionGraphNodesUtils', CompositionGraphNodesUtils);
158directiveModule.service('CompositionGraphGeneralUtils', CompositionGraphGeneralUtils);
159directiveModule.service('CompositionGraphLinkUtils', CompositionGraphLinkUtils);
160directiveModule.service('CompositionGraphPaletteUtils', CompositionGraphPaletteUtils);
Michael Landoa5445102018-03-04 14:53:33 +0200161directiveModule.service('CompositionGraphZoneUtils', CompositionGraphZoneUtils);
Michael Landoed64b5e2017-06-09 03:19:04 +0300162directiveModule.service('MatchCapabilitiesRequirementsUtils', MatchCapabilitiesRequirementsUtils);
Michael Landoa5445102018-03-04 14:53:33 +0200163directiveModule.service('ServicePathGraphUtils', ServicePathGraphUtils);
164
Michael Landoed64b5e2017-06-09 03:19:04 +0300165//
166// //Deployment Graph Utils
167directiveModule.service('DeploymentGraphGeneralUtils', DeploymentGraphGeneralUtils);
168
169
170//Compoisiton right tab directives
171directiveModule.directive('capabilitiesList', CapabilitiesListDirective.factory);
172directiveModule.directive('requirementsList', RequirementsListDirective.factory);
Tal Gitelman51d50f02017-12-10 18:55:03 +0200173
174
175// *** NG2 Components (downgraded) *** //
Michael Landoa5445102018-03-04 14:53:33 +0200176import { downgradeComponent } from "@angular/upgrade/static";
177import { MenuListNg2Component } from "../ng2/components/downgrade-wrappers/menu-list-ng2/menu-list-ng2.component";
178import { TopNavComponent } from "../ng2/components/layout/top-nav/top-nav.component";
179import { ZoneContainerComponent } from "../ng2/components/ui/canvas-zone/zone-container.component";
180import { ZoneInstanceComponent } from "../ng2/components/ui/canvas-zone/zone-instance/zone-instance.component";
Michael Lando5b593492018-07-29 16:13:45 +0300181import { CompositionPanelComponent } from 'app/ng2/pages/composition/panel/panel.component';
182import { CompositionPanelHeaderComponent } from 'app/ng2/pages/composition/panel/panel-header/panel-header.component';
Michael Landoa5445102018-03-04 14:53:33 +0200183import { PropertiesAssignmentComponent } from "../ng2/pages/properties-assignment/properties-assignment.page.component";
184import { SearchWithAutoCompleteComponent } from "../ng2/components/ui/search-with-autocomplete/search-with-autocomplete.component";
185import { PalettePopupPanelComponent } from "../ng2/components/ui/palette-popup-panel/palette-popup-panel.component";
186import { ServicePathComponent } from '../ng2/components/logic/service-path/service-path.component';
187import { ServicePathSelectorComponent } from '../ng2/components/logic/service-path-selector/service-path-selector.component';
Michael Lando5b593492018-07-29 16:13:45 +0300188import { MultilineEllipsisComponent } from "../ng2/shared/multiline-ellipsis/multiline-ellipsis.component";
Arielk802bd2a2018-04-16 15:37:39 +0300189import { InterfaceOperationComponent } from '../ng2/pages/interface-operation/interface-operation.page.component';
190import { PluginFrameComponent } from "../ng2/components/ui/plugin/plugin-frame.component";
Michael Lando5b593492018-07-29 16:13:45 +0300191import { TileComponent } from "../ng2/components/ui/tile/tile.component";
192
Tal Gitelman51d50f02017-12-10 18:55:03 +0200193
194directiveModule.directive('menuListNg2', downgradeComponent({
195 component: MenuListNg2Component,
196 inputs: ['props']
197}) as angular.IDirectiveFactory);
Michael Landoa5445102018-03-04 14:53:33 +0200198
Tal Gitelman51d50f02017-12-10 18:55:03 +0200199directiveModule.directive('topNav', downgradeComponent({
200 component: TopNavComponent,
Michael Lando5b593492018-07-29 16:13:45 +0300201 inputs: ['version', 'menuModel', 'topLvlSelectedIndex', 'hideSearch', 'searchTerm', 'notificationIconCallback', 'unsavedChanges', 'unsavedChangesCallback'],
Tal Gitelman51d50f02017-12-10 18:55:03 +0200202 outputs: ['searchTermChange']
203}) as ng.IDirectiveFactory);
Michael Landoa5445102018-03-04 14:53:33 +0200204
205directiveModule.directive('ng2ZoneContainer', downgradeComponent({
206 component: ZoneContainerComponent,
Michael Lando5b593492018-07-29 16:13:45 +0300207 inputs: ['title', 'count', 'type', 'visible', 'minimized'],
208 outputs: ['minimize', 'backgroundClick']
Michael Landoa5445102018-03-04 14:53:33 +0200209}) as angular.IDirectiveFactory);
210
211directiveModule.directive('ng2ZoneInstance', downgradeComponent({
Michael Lando5b593492018-07-29 16:13:45 +0300212 component: ZoneInstanceComponent,
213 inputs: ['zoneInstance', 'isActive', 'activeInstanceMode', 'defaultIconText', 'isViewOnly', 'hidden', 'forceSave'],
214 outputs: ['modeChange', 'tagHandleClick', 'assignmentSaveStart', 'assignmentSaveComplete']
215}) as angular.IDirectiveFactory);
216
217directiveModule.directive('ng2CompositionPanel', downgradeComponent({
218 component: CompositionPanelComponent,
219 inputs: ['isViewOnly', 'isLoading', 'isCertified', 'selectedZoneInstanceId', 'selectedZoneInstanceType', 'selectedZoneInstanceName', 'topologyTemplate'],
Michael Landoa5445102018-03-04 14:53:33 +0200220}) as angular.IDirectiveFactory);
221
222directiveModule.directive('propertiesAssignment', downgradeComponent({
223 component: PropertiesAssignmentComponent
224}) as angular.IDirectiveFactory);
225
226directiveModule.directive('ng2SearchWithAutocomplete', downgradeComponent({
227 component: SearchWithAutoCompleteComponent,
228 inputs: ['searchPlaceholder', 'searchBarClass', 'autoCompleteValues'],
229 outputs: ['searchChanged', 'searchButtonClicked']
230}) as angular.IDirectiveFactory);
231
Michael Landoa5445102018-03-04 14:53:33 +0200232directiveModule.directive('ng2PalettePopupPanel', downgradeComponent({
233 component: PalettePopupPanelComponent,
234 inputs: [],
235 outputs: []
236}) as angular.IDirectiveFactory);
237
238directiveModule.directive('ng2ServicePath', downgradeComponent({
239 component: ServicePathComponent,
Michael Lando5b593492018-07-29 16:13:45 +0300240 inputs: ['onCreate', 'service', 'isViewOnly'],
Michael Landoa5445102018-03-04 14:53:33 +0200241 outputs: []
242}) as angular.IDirectiveFactory);
243
244directiveModule.directive('ng2ServicePathSelector', downgradeComponent({
245 component: ServicePathSelectorComponent,
246 inputs: ['drawPath', 'deletePaths', 'service', 'selectedPathId'],
247 outputs: []
248}) as angular.IDirectiveFactory);
Idan Amit7363f3d2018-03-21 12:04:57 +0200249
Arielk802bd2a2018-04-16 15:37:39 +0300250directiveModule.directive('ng2InterfaceOperation', downgradeComponent({
251 component: InterfaceOperationComponent,
Arielkbce89862018-05-30 14:52:00 +0300252 inputs: ['component', 'readonly'],
Arielk802bd2a2018-04-16 15:37:39 +0300253 outputs: []
254}) as angular.IDirectiveFactory);
255
Michael Lando5b593492018-07-29 16:13:45 +0300256directiveModule.directive('ng2MultilineEllipsis', downgradeComponent({
257 component: MultilineEllipsisComponent,
258 inputs: ['lines', 'lineHeight', 'className'],
259 outputs: ['hasEllipsisChanged']
260}) as angular.IDirectiveFactory);
261
262directiveModule.directive('ng2UiTile', downgradeComponent({
263 component: TileComponent,
264 inputs: ['component'],
265 outputs: ['onTileClick']
266}) as angular.IDirectiveFactory);
267
Idan Amit7363f3d2018-03-21 12:04:57 +0200268directiveModule.directive('pluginFrame', downgradeComponent( {
269 component: PluginFrameComponent,
270 inputs: ['plugin', 'queryParams'],
271 outputs: ['onLoadingDone']
272}) as angular.IDirectiveFactory);