blob: de7bc5ac1fe7197f931a6a779c1f51c5bfb883cd [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
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
Michael Landoed64b5e2017-06-09 03:19:04 +030021import {AddCategoryModalViewModel} from "../view-models/admin-dashboard/add-category-modal/add-category-modal-view-model";
22import {DashboardViewModel} from "../view-models/dashboard/dashboard-view-model";
23import {WorkspaceViewModel} from "../view-models/workspace/workspace-view-model";
24import {CompositionViewModel} from "../view-models/workspace/tabs/composition/composition-view-model";
25import {DetailsViewModel} from "../view-models/workspace/tabs/composition/tabs/details/details-view-model";
26import {ResourceArtifactsViewModel} from "../view-models/workspace/tabs/composition/tabs/artifacts/artifacts-view-model";
27import {PropertyFormBaseView} from "../view-models/forms/property-forms/base-property-form/property-form-base-model";
28import {PropertyFormViewModel} from "../view-models/forms/property-forms/component-property-form/property-form-view-model";
29import {ModulePropertyView} from "../view-models/forms/property-forms/module-property-modal/module-property-model";
30import {ArtifactResourceFormViewModel} from "../view-models/forms/artifact-form/artifact-form-view-model";
31import {SelectDataTypeViewModel} from "../view-models/forms/property-forms/select-datatype-modal/select-datatype-modal-view-model";
32import {AttributeFormViewModel} from "../view-models/forms/attribute-form/attribute-from-view-model";
33import {ResourcePropertiesViewModel} from "../view-models/workspace/tabs/composition/tabs/properties-and-attributes/properties-view-model";
34import {CatalogViewModel} from "../view-models/catalog/catalog-view-model";
35import {OnboardVendorViewModel} from "../view-models/onboard-vendor/onboard-vendor-view-model";
36import {DistributionViewModel} from "../view-models/workspace/tabs/distribution/distribution-view-model";
37import {SupportViewModel} from "../view-models/support/support-view-model";
38import {ConfirmationModalViewModel} from "../view-models/modals/confirmation-modal/confirmation-modal-view-model";
39import {EmailModalViewModel} from "../view-models/modals/email-modal/email-modal-view-model";
40import {MessageModalViewModel} from "../view-models/modals/message-modal/message-base-modal-model";
41import {ServerMessageModalViewModel} from "../view-models/modals/message-modal/message-server-modal/server-message-modal-view-model";
42import {ClientMessageModalViewModel} from "../view-models/modals/message-modal/message-client-modal/client-message-modal-view-model";
43import {ErrorViewModel} from "../view-models/modals/error-modal/error-view-model";
44import {RelationsViewModel} from "../view-models/workspace/tabs/composition/tabs/relations/relations-view-model";
45import {ResourceInstanceNameViewModel} from "../view-models/forms/resource-instance-name-form/resource-instance-name-model";
46import {WelcomeViewModel} from "../view-models/welcome/welcome-view";
47import {PreLoadingViewModel} from "../view-models/preloading/preloading-view";
48import {TutorialEndViewModel} from "../view-models/tutorial-end/tutorial-end";
49import {AdminDashboardViewModel} from "../view-models/admin-dashboard/admin-dashboard-view-model";
50import {EnvParametersFormViewModel} from "../view-models/forms/env-parameters-form/env-parameters-form";
51import {StructureViewModel} from "../view-models/workspace/tabs/composition/tabs/structure/structure-view";
52import {UserManagementViewModel} from "../view-models/admin-dashboard/user-management/user-management-view-model";
53import {CategoryManagementViewModel} from "../view-models/admin-dashboard/category-management/category-management-view-model";
54
55import {OnboardingModalViewModel} from "../view-models/modals/onboarding-modal/onboarding-modal-view-model";
56import {DistributionStatusModalViewModel} from "../view-models/workspace/tabs/distribution/disribution-status-modal/disribution-status-modal-view-model";
57import {DcaeAppViewModel} from "../view-models/dcae-app/dcae-app-view-model";
58import {GeneralViewModel} from "../view-models/workspace/tabs/general/general-view-model";
59import {IconsViewModel} from "../view-models/workspace/tabs/icons/icons-view-model";
60import {DeploymentArtifactsViewModel} from "../view-models/workspace/tabs/deployment-artifacts/deployment-artifacts-view-model";
61import {InformationArtifactsViewModel} from "../view-models/workspace/tabs/information-artifacts/information-artifacts-view-model";
62import {ToscaArtifactsViewModel} from "../view-models/workspace/tabs/tosca-artifacts/tosca-artifacts-view-model";
63import {PropertiesViewModel} from "../view-models/workspace/tabs/properties/properties-view-model";
64import {AttributesViewModel} from "../view-models/workspace/tabs/attributes/attributes-view-model";
65import {ProductHierarchyViewModel} from "../view-models/workspace/tabs/product-hierarchy/product-hierarchy-view-model";
66import {ActivityLogViewModel} from "../view-models/workspace/tabs/activity-log/activity-log";
67import {ManagementWorkflowViewModel} from "../view-models/workspace/tabs/management-workflow/management-workflow-view-model";
68import {NetworkCallFlowViewModel} from "../view-models/workspace/tabs/network-call-flow/network-call-flow-view-model";
69import {DeploymentViewModel} from "../view-models/workspace/tabs/deployment/deployment-view-model";
70import {ResourceInputsViewModel} from "../view-models/workspace/tabs/inputs/resource-input/resource-inputs-view-model";
71import {ServiceInputsViewModel} from "../view-models/workspace/tabs/inputs/service-input/service-inputs-view-model";
72import {ReqAndCapabilitiesViewModel} from "../view-models/workspace/tabs/req-and-capabilities/req-and-capabilities-view-model";
73import {InputFormViewModel} from "../view-models/forms/input-form/input-form-view-modal";
74import {HierarchyViewModel} from "../view-models/tabs/hierarchy/hierarchy-view-model";
75import {downgradeComponent} from "@angular/upgrade/static";
Michael Landob3d48982017-06-11 14:22:02 +030076import {ConformanceLevelModalViewModel} from "../view-models/modals/conformance-level-modal/conformance-level-modal-view-model";
Michael Landoed64b5e2017-06-09 03:19:04 +030077// import {NG2ExampleComponent} from "../ng2/view-ng2/ng2.example.component/ng2.example.component";
78// import {upgradeAdapter} from "../ng2/app.module";
79// import { UpgradeAdapter } from '@angular/upgrade';
80let moduleName:string = 'Sdc.ViewModels';
81let viewModelModule:ng.IModule = angular.module(moduleName, []);
82
83viewModelModule
84 .controller(moduleName + '.DashboardViewModel', DashboardViewModel)
85
86 .controller(moduleName + '.DetailsViewModel', DetailsViewModel)
87 .controller(moduleName + '.ResourceArtifactsViewModel', ResourceArtifactsViewModel)
88 .controller(moduleName + '.PropertyFormBaseView', PropertyFormBaseView)
89 .controller(moduleName + '.PropertyFormViewModel', PropertyFormViewModel)
90 .controller(moduleName + '.ModulePropertyView', ModulePropertyView)
91 .controller(moduleName + '.SelectDataTypeViewModel', SelectDataTypeViewModel)
92 .controller(moduleName + '.ArtifactResourceFormViewModel', ArtifactResourceFormViewModel)
93 .controller(moduleName + '.AttributeFormViewModel', AttributeFormViewModel)
94 .controller(moduleName + '.ResourcePropertiesViewModel', ResourcePropertiesViewModel)
95 .controller(moduleName + '.CatalogViewModel', CatalogViewModel)
96 .controller(moduleName + '.OnboardVendorViewModel', OnboardVendorViewModel)
97 .controller(moduleName + '.DistributionViewModel', DistributionViewModel)
98 .controller(moduleName + '.SupportViewModel', SupportViewModel)
99 .controller(moduleName + '.ConfirmationModalViewModel', ConfirmationModalViewModel)
100 .controller(moduleName + '.EmailModalViewModel', EmailModalViewModel)
101 .controller(moduleName + '.MessageModalViewModel', MessageModalViewModel)
102 .controller(moduleName + '.ServerMessageModalViewModel', ServerMessageModalViewModel)
103 .controller(moduleName + '.ClientMessageModalViewModel', ClientMessageModalViewModel)
104 .controller(moduleName + '.ErrorViewModel', ErrorViewModel)
105 .controller(moduleName + '.RelationsViewModel', RelationsViewModel)
106 .controller(moduleName + '.ResourceInstanceNameViewModel', ResourceInstanceNameViewModel)
107 .controller(moduleName + '.WelcomeViewModel', WelcomeViewModel)
108 .controller(moduleName + '.PreLoadingViewModel', PreLoadingViewModel)
109 .controller(moduleName + '.TutorialEndViewModel', TutorialEndViewModel)
110 .controller(moduleName + '.AdminDashboardViewModel', AdminDashboardViewModel)
111 .controller(moduleName + '.EnvParametersFormViewModel', EnvParametersFormViewModel)
112 .controller(moduleName + '.StructureViewModel', StructureViewModel)
113 .controller(moduleName + '.AddCategoryModalViewModel', AddCategoryModalViewModel)
114 .controller(moduleName + '.UserManagementViewModel', UserManagementViewModel)
115 .controller(moduleName + '.CategoryManagementViewModel', CategoryManagementViewModel)
116 .controller(moduleName + '.OnboardingModalViewModel', OnboardingModalViewModel)
117 .controller(moduleName + '.DistributionStatusModalViewModel', DistributionStatusModalViewModel)
118 .controller(moduleName + '.DcaeAppViewModel', DcaeAppViewModel)
119 //
120 // //NEW
121 .controller(moduleName + '.WorkspaceViewModel', WorkspaceViewModel)
122 .controller(moduleName + '.ConformanceLevelModalViewModel', ConformanceLevelModalViewModel)
123 .controller(moduleName + '.CompositionViewModel', CompositionViewModel)
124 .controller(moduleName + '.GeneralViewModel', GeneralViewModel)
125 .controller(moduleName + '.IconsViewModel', IconsViewModel)
126 .controller(moduleName + '.DeploymentArtifactsViewModel', DeploymentArtifactsViewModel)
127 .controller(moduleName + '.InformationArtifactsViewModel', InformationArtifactsViewModel)
128 .controller(moduleName + '.ToscaArtifactsViewModel', ToscaArtifactsViewModel)
129 .controller(moduleName + '.PropertiesViewModel', PropertiesViewModel)
130 .controller(moduleName + '.AttributesViewModel', AttributesViewModel)
131 .controller(moduleName + '.ProductHierarchyViewModel', ProductHierarchyViewModel)
132 .controller(moduleName + '.ActivityLogViewModel', ActivityLogViewModel)
133 .controller(moduleName + '.ManagementWorkflowViewModel', ManagementWorkflowViewModel)
134 .controller(moduleName + '.NetworkCallFlowViewModel', NetworkCallFlowViewModel)
135 .controller(moduleName + '.DeploymentViewModel', DeploymentViewModel)
136 .controller(moduleName + '.ResourceInputsViewModel', ResourceInputsViewModel)
137 .controller(moduleName + '.ServiceInputsViewModel', ServiceInputsViewModel)
138 .controller(moduleName + '.ReqAndCapabilitiesViewModel', ReqAndCapabilitiesViewModel)
139 .controller(moduleName + '.InputFormViewModel', InputFormViewModel)
140 //
141 // //TABS
142 .controller(moduleName + '.HierarchyViewModel', HierarchyViewModel)
143
144 // NG2
145 //.controller(moduleName + '.NG2Example', downgradeComponent({component: NG2Example2Component}) );