Skip to content

Commit

Permalink
Merge pull request ELEVATE-Project#47 from anudeep-ks/dev
Browse files Browse the repository at this point in the history
Loading message for survey creation
  • Loading branch information
kiranharidas187 authored Oct 4, 2024
2 parents a7c301e + 90c517c commit 591979b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@
<h2>Solution Upload Portal</h2>
</div>

<div *ngIf="loader" class="spinner">
<mat-spinner [diameter]="70"></mat-spinner>
</div>
<div class="container">
<div *ngIf="loader" class="spinner">
<mat-spinner [diameter]="70"></mat-spinner>
<p>{{ loadingMessage }}</p> </div>

<div class="template-selection-container" *ngIf="!loader">
</div>
</div>

<div class="template-selection-container" *ngIf="!loader">
<mat-card class="tempplate-download-card mat-elevation-z8">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export class TemplateSelectionComponent implements OnInit {
fileInput: any;
fileName = '';
loader: boolean = false;
loadingMessage: string = '';
userSelectedFile: any;
userUploadedFileType: any;
templateLinks: any;
Expand Down Expand Up @@ -111,44 +112,52 @@ export class TemplateSelectionComponent implements OnInit {

validateAndCreateSurvey() {
this.loader = true;
this.loadingMessage = 'Survey creation is in progress. Please wait...'; // Set initial loading message
if (this.userSelectedFile) {
this.templateService.uploadTemplates(this.userSelectedFile).subscribe(
(event: any) => {
this.templateService.validateTemplates(event.result.templatePath, this.userUploadedFileType, this.templateLinks).subscribe(
(data) => {
this.templateService.userSelectedFile = event.result.templatePath;
this.loader = false;
if (data.result.advancedErrors.data.length == 0 && data.result.basicErrors.data.length == 0) {
this.templateService.surveyCreation(this.templateService.userSelectedFile).subscribe(
(surveyEvent: any) => {
this.solutiondetails = surveyEvent.result[0];
this.loadingMessage = 'Survey creation completed successfully!'; // Update loading message to success
this.router.navigate(['/template/template-success', this.solutiondetails.solutionId], {
queryParams: {
downloadbleUrl: this.solutiondetails.downloadbleUrl
}
}); // Navigate to success page
});
this.loader = false; // Set loader to false after successful navigation
},
(surveyError: any) => {
this.loadingMessage = 'Error creating survey. Please try again.'; // Update loading message to error
console.error('Error creating survey:', surveyError);
this.validateTemplate();
this.validateTemplate(); // Handle error (optional)
this.loader = false;
}
);
} else {
this.templateService.templateError = data.result;
this.loadingMessage = 'Survey validation failed. Please check the errors.'; // Update loading message to validation failure
this.router.navigate(['/template/validation-result']); // Navigate to validation result page
this.loader = false;
}
},
(validationError: any) => {
this.loader = false;
this.loadingMessage = 'Error validating template. Please try again.'; // Update loading message to validation error
console.error('Error validating template:', validationError);
this.toaster.error('Error validating template'); // Display error message to user
this.loader = false;
}
);
},
(uploadError: any) => {
this.loader = false;
this.loadingMessage = 'Error uploading file. Please try again.'; // Update loading message to upload error
console.error('Error uploading file:', uploadError);
this.toaster.error('Error uploading file'); // Display error message to user
this.loader = false;
}
);
} else {
Expand Down

0 comments on commit 591979b

Please sign in to comment.