Select template formatting 20/91820/1
authorEzhilarasi <ezhrajam@in.ibm.com>
Mon, 22 Jul 2019 15:50:57 +0000 (21:20 +0530)
committerEzhilarasi <ezhrajam@in.ibm.com>
Mon, 22 Jul 2019 15:51:05 +0000 (21:21 +0530)
Removed unwanted code and imports
Change-Id: I485dcb63a059109ab503c3874fe217c377d03d6a
Issue-ID: CCSDK-1275
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.html
cds-ui/client/src/app/feature-modules/blueprint/select-template/select-template.component.ts

index 97c65b2..46e1ea7 100644 (file)
@@ -34,9 +34,6 @@ limitations under the License.
         <ng-template matStepLabel>Browse CBA Template file</ng-template>
         <div class="matStepContent">
             <app-search-template [optionSelected]="templateOption" (cbaFile)="fileChange($event)"></app-search-template>
-            <!-- <div>
-                <button mat-button matStepperNext class="matStepNextBtn">Upload</button>
-            </div>-->
         </div>
     </mat-step>
     <mat-step [stepControl]="step3FormGroup">
index 561f15a..9188b43 100644 (file)
@@ -19,8 +19,6 @@ limitations under the License.
 ============LICENSE_END============================================
 */
 import { Component, OnInit } from '@angular/core';
-import { Observable } from 'rxjs';
-import { Store } from '@ngrx/store';
 import { IBlueprint } from 'src/app/common/core/store/models/blueprint.model';
 import { IBlueprintState } from 'src/app/common/core/store/models/blueprintState.model';
 import { IMetaData } from 'src/app/common/core/store/models/metadata.model';
@@ -40,8 +38,7 @@ export class SelectTemplateComponent implements OnInit {
   importModel: IImportModel;
   templateOption: any;
 
-  constructor(private store: Store<IBlueprintState>) {
-    // this.importModel.file = '';
+  constructor() {
   }
 
   ngOnInit() {
@@ -51,23 +48,14 @@ export class SelectTemplateComponent implements OnInit {
     this.templateOption = option;
     console.log(this.templateOption);
   }
-  
+
   fileChange(topologyTemp: ITopologyTemplate) {
     this.topologyTemplate = topologyTemp;
     console.log(topologyTemp);
   }
   metaDataDetail(data: IMetaData) {
-    
+
     this.metaData = data;
     console.log("parent" + this.metaData.author_email);
   }
-  upload() {
-
-  }
-  
-  // saveBlueprintModel(){
-  //   this.blueprint.toplogyTemplates=this.topologyTemplate;
-  //   this.blueprint.metadata= this.metaData;
-  //  // this.store.dispatch(new CreateBlueprint(this.blueprint));
-  // }
 }