Skip to content
Snippets Groups Projects
Commit c85fbfde authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #14561 TIME 0:10 WIP front indexation

parent 33f07798
No related branches found
No related tags found
No related merge requests found
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { Component, OnInit, TemplateRef, ViewChild, ViewContainerRef } from '@angular/core'; import { Component, OnInit, TemplateRef, ViewChild, ViewContainerRef } from '@angular/core';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { MenuController } from '@ionic/angular'; import { LoadingController, MenuController } from '@ionic/angular';
import { of } from 'rxjs'; import { of } from 'rxjs';
import { catchError, finalize, tap } from 'rxjs/operators'; import { catchError, finalize, tap } from 'rxjs/operators';
import { VisaWorkflowComponent } from '../document/visa-workflow/visa-workflow.component'; import { VisaWorkflowComponent } from '../document/visa-workflow/visa-workflow.component';
...@@ -30,6 +30,7 @@ export class IndexationComponent implements OnInit { ...@@ -30,6 +30,7 @@ export class IndexationComponent implements OnInit {
public viewContainerRef: ViewContainerRef, public viewContainerRef: ViewContainerRef,
public notificationService: NotificationService, public notificationService: NotificationService,
public authService: AuthService, public authService: AuthService,
public loadingController: LoadingController,
) { } ) { }
ngOnInit(): void { ngOnInit(): void {
...@@ -47,17 +48,23 @@ export class IndexationComponent implements OnInit { ...@@ -47,17 +48,23 @@ export class IndexationComponent implements OnInit {
this.signaturesService.detachTemplate('rightContent'); this.signaturesService.detachTemplate('rightContent');
} }
async onSubmit() { onSubmit() {
if (this.isValid()) { if (this.isValid()) {
const objTosend = this.formatData(); this.loadingController.create({
for (let index = 0; index < objTosend.length; index++) { message: 'Enregistrement ...',
console.log('save..'); spinner: 'dots'
await this.saveDocument(objTosend[index], index); }).then(async (load: HTMLIonLoadingElement) => {
} load.present();
if (this.errors.length === 0) { const objTosend = this.formatData();
this.notificationService.success('Document(s) importé(s)'); for (let index = 0; index < objTosend.length; index++) {
this.router.navigate(['/home']); await this.saveDocument(objTosend[index], index);
} }
load.dismiss();
if (this.errors.length === 0) {
this.notificationService.success('Document(s) importé(s)');
this.router.navigate(['/home']);
}
});
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment