changes in resource creation 01/83701/2
authorSwapnali Shadanan Pode <sp00501638@techmahindra.com>
Fri, 29 Mar 2019 10:29:54 +0000 (15:59 +0530)
committerSwapnali Pode <sp00501638@techmahindra.com>
Fri, 29 Mar 2019 18:55:45 +0000 (18:55 +0000)
Change-Id: Ia8dbfdf6e68f131c99b79e4bbc90f5cc9e17b31d
Issue-ID: CCSDK-804
Signed-off-by: sp00501638 <sp00501638@techmahindra.com>
cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.html
cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.scss
cds-ui/client/src/app/feature-modules/resource-definition/resource-creation/resource-creation.component.ts

index 8ace910..c4fa67a 100644 (file)
     <ng-template matStepLabel>Browse or Search Resources</ng-template>
   <app-upload-resource (fileData)=upload($event)></app-upload-resource><br><br>
   <app-existing-model></app-existing-model>
-    <div>
-      <button mat-button matStepperNext (click)="updateResourcesState()" class="matStepNextBtn">Upload</button>
+   <div>      
+       <button mat-button matStepperNext (click)="updateResourcesState()" class="matStepNextBtn">Upload</button>
+   </div><br><br>
+   <div *ngIf="showMsg">
+    <p class="success"><strong>File Upload Success!</strong> Please click Proceed to continue!</p>
     </div>
-  </mat-step>
+   </mat-step>
  </mat-vertical-stepper>
  </mat-card-content>
 </mat-card>
\ No newline at end of file
index c751e0e..549fbb7 100644 (file)
@@ -34,6 +34,8 @@ export class ResourceCreationComponent implements OnInit {
 
   myFile: any;
   selectedValue: any;
+  showMsg:boolean=false;
+  
   constructor(private store: Store<IAppState>) {
   }
 
@@ -53,6 +55,7 @@ export class ResourceCreationComponent implements OnInit {
     me.store.dispatch(new LoadResourcesSuccess(data));
     console.log(data);
     }
+    this.showMsg= true;
  }
 
  selectedOption(value){