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

FEAT #12074 TIME 0:35 add unlock gard

parent 5f094d7c
No related branches found
No related tags found
No related merge requests found
...@@ -511,6 +511,8 @@ export class ActionsService { ...@@ -511,6 +511,8 @@ export class ActionsService {
} }
processDocument() { processDocument() {
this.stopRefreshResourceLock();
this.unlockResource();
this.router.navigate([`/process/users/${this.currentUserId}/groups/${this.currentGroupId}/baskets/${this.currentBasketId}/resId/${this.currentResIds}`]); this.router.navigate([`/process/users/${this.currentUserId}/groups/${this.currentGroupId}/baskets/${this.currentBasketId}/resId/${this.currentResIds}`]);
} }
} }
...@@ -10,7 +10,7 @@ import { BasketListComponent } from './list/basket-list.component'; ...@@ -10,7 +10,7 @@ import { BasketListComponent } from './list/basket-list.component';
import { SignatureBookComponent } from './signature-book.component'; import { SignatureBookComponent } from './signature-book.component';
import { SaveNumericPackageComponent } from './save-numeric-package.component'; import { SaveNumericPackageComponent } from './save-numeric-package.component';
import { PrintSeparatorComponent } from './separator/print-separator/print-separator.component'; import { PrintSeparatorComponent } from './separator/print-separator/print-separator.component';
import { AppGuard } from '../service/app.guard'; import { AppGuard, AfterProcessGuard } from '../service/app.guard';
import { FolderDocumentListComponent } from './folder/document-list/folder-document-list.component'; import { FolderDocumentListComponent } from './folder/document-list/folder-document-list.component';
import { IndexationComponent } from './indexation/indexation.component'; import { IndexationComponent } from './indexation/indexation.component';
import { ProcessComponent } from './process/process.component'; import { ProcessComponent } from './process/process.component';
...@@ -24,7 +24,7 @@ import { ProcessComponent } from './process/process.component'; ...@@ -24,7 +24,7 @@ import { ProcessComponent } from './process/process.component';
{ path: 'about-us', canActivate: [AppGuard], component: AboutUsComponent }, { path: 'about-us', canActivate: [AppGuard], component: AboutUsComponent },
{ path: 'home', canActivate: [AppGuard], component: HomeComponent }, { path: 'home', canActivate: [AppGuard], component: HomeComponent },
{ path: 'basketList/users/:userSerialId/groups/:groupSerialId/baskets/:basketId', canActivate: [AppGuard], component: BasketListComponent }, { path: 'basketList/users/:userSerialId/groups/:groupSerialId/baskets/:basketId', canActivate: [AppGuard], component: BasketListComponent },
{ path: 'process/users/:userSerialId/groups/:groupSerialId/baskets/:basketId/resId/:resId', canActivate: [AppGuard], component: ProcessComponent }, { path: 'process/users/:userSerialId/groups/:groupSerialId/baskets/:basketId/resId/:resId', canActivate: [AppGuard], canDeactivate: [AfterProcessGuard], component: ProcessComponent },
{ path: 'folders/:folderId', canActivate: [AppGuard], component: FolderDocumentListComponent }, { path: 'folders/:folderId', canActivate: [AppGuard], component: FolderDocumentListComponent },
{ path: 'saveNumericPackage', canActivate: [AppGuard], component: SaveNumericPackageComponent }, { path: 'saveNumericPackage', canActivate: [AppGuard], component: SaveNumericPackageComponent },
{ path: 'separators/print', canActivate: [AppGuard], component: PrintSeparatorComponent }, { path: 'separators/print', canActivate: [AppGuard], component: PrintSeparatorComponent },
......
...@@ -18,7 +18,6 @@ import { DocumentViewerComponent } from '../viewer/document-viewer.component'; ...@@ -18,7 +18,6 @@ import { DocumentViewerComponent } from '../viewer/document-viewer.component';
import { ConfirmComponent } from '../../plugins/modal/confirm.component'; import { ConfirmComponent } from '../../plugins/modal/confirm.component';
import { AddPrivateIndexingModelModalComponent } from './private-indexing-model/add-private-indexing-model-modal.component'; import { AddPrivateIndexingModelModalComponent } from './private-indexing-model/add-private-indexing-model-modal.component';
import { ActionsService } from '../actions/actions.service'; import { ActionsService } from '../actions/actions.service';
import { AlertComponent } from '../../plugins/modal/alert.component';
@Component({ @Component({
templateUrl: "indexation.component.html", templateUrl: "indexation.component.html",
......
...@@ -30,6 +30,8 @@ export class ProcessComponent implements OnInit { ...@@ -30,6 +30,8 @@ export class ProcessComponent implements OnInit {
loading: boolean = false; loading: boolean = false;
currentResourceLock: any = null;
actionsList: any[] = []; actionsList: any[] = [];
currentUserId: number = null; currentUserId: number = null;
currentBasketId: number = null; currentBasketId: number = null;
...@@ -50,53 +52,53 @@ export class ProcessComponent implements OnInit { ...@@ -50,53 +52,53 @@ export class ProcessComponent implements OnInit {
processTool: any[] = [ processTool: any[] = [
{ {
id: 'dashboard', id: 'dashboard',
icon : 'fas fa-columns', icon: 'fas fa-columns',
label: this.lang.dashboard, label: this.lang.dashboard,
}, },
{ {
id: 'history', id: 'history',
icon : 'fas fa-history', icon: 'fas fa-history',
label: this.lang.history, label: this.lang.history,
}, },
{ {
id: 'notes', id: 'notes',
icon : 'fas fa-pen-square', icon: 'fas fa-pen-square',
label: this.lang.notes, label: this.lang.notes,
}, },
{ {
id: 'attachments', id: 'attachments',
icon : 'fas fa-paperclip', icon: 'fas fa-paperclip',
label: this.lang.attachments, label: this.lang.attachments,
}, },
{ {
id: 'link', id: 'link',
icon : 'fas fa-link', icon: 'fas fa-link',
label: this.lang.links, label: this.lang.links,
}, },
{ {
id: 'diffusionList', id: 'diffusionList',
icon : 'fas fa-share-alt', icon: 'fas fa-share-alt',
label: this.lang.diffusionList, label: this.lang.diffusionList,
}, },
{ {
id: 'mails', id: 'mails',
icon : 'fas fa-envelope', icon: 'fas fa-envelope',
label: this.lang.mailsSent, label: this.lang.mailsSent,
}, },
{ {
id: 'visa', id: 'visa',
icon : 'fas fa-list-ol', icon: 'fas fa-list-ol',
label: this.lang.visaWorkflow, label: this.lang.visaWorkflow,
}, },
{ {
id: 'avis', id: 'avis',
icon : 'fas fa-comment-alt', icon: 'fas fa-comment-alt',
label: this.lang.avis, label: this.lang.avis,
}, },
{ {
id: 'info', id: 'info',
icon : 'fas fa-info-circle', icon: 'fas fa-info-circle',
label: this.lang.informations, label: this.lang.informations,
} }
]; ];
...@@ -108,7 +110,7 @@ export class ProcessComponent implements OnInit { ...@@ -108,7 +110,7 @@ export class ProcessComponent implements OnInit {
@ViewChild('snav2', { static: true }) sidenavRight: MatSidenav; @ViewChild('snav2', { static: true }) sidenavRight: MatSidenav;
@ViewChild('appDocumentViewer', { static: true }) appDocumentViewer: DocumentViewerComponent; @ViewChild('appDocumentViewer', { static: true }) appDocumentViewer: DocumentViewerComponent;
constructor( constructor(
private route: ActivatedRoute, private route: ActivatedRoute,
private _activatedRoute: ActivatedRoute, private _activatedRoute: ActivatedRoute,
...@@ -134,13 +136,15 @@ export class ProcessComponent implements OnInit { ...@@ -134,13 +136,15 @@ export class ProcessComponent implements OnInit {
this.currentUserId = params['userSerialId']; this.currentUserId = params['userSerialId'];
this.currentGroupId = params['groupSerialId']; this.currentGroupId = params['groupSerialId'];
this.currentBasketId = params['basketId']; this.currentBasketId = params['basketId'];
this.currentResourceInformations = { this.currentResourceInformations = {
resId: params['resId'], resId: params['resId'],
category: 'outgoing', category: 'outgoing',
mailtracking: false mailtracking: false
} }
this.lockResource();
this.loading = false; this.loading = false;
// TO : WAIT RIGHT ROUTE FOR PROCESS // TO : WAIT RIGHT ROUTE FOR PROCESS
...@@ -187,8 +191,30 @@ export class ProcessComponent implements OnInit { ...@@ -187,8 +191,30 @@ export class ProcessComponent implements OnInit {
}); });
} }
lockResource() {
this.currentResourceLock = setInterval(() => {
this.http.put(`../../rest/resourcesList/users/${this.currentUserId}/groups/${this.currentGroupId}/baskets/${this.currentBasketId}/lock`, { resources: [this.currentResourceInformations.resId] }).pipe(
catchError((err: any) => {
this.notify.handleErrors(err);
return of(false);
})
).subscribe();
}, 50000);
}
unlockResource() {
clearInterval(this.currentResourceLock);
this.http.put(`../../rest/resourcesList/users/${this.currentUserId}/groups/${this.currentGroupId}/baskets/${this.currentBasketId}/unlock`, { resources: [this.currentResourceInformations.resId] }).pipe(
catchError((err: any) => {
this.notify.handleErrors(err);
return of(false);
})
).subscribe();
}
onSubmit() { onSubmit() {
this.actionService.launchAction(this.selectedAction, this.currentUserId, this.currentGroupId, this.currentBasketId, this.currentResourceInformations.resId, this.currentResourceInformations); this.actionService.launchAction(this.selectedAction, this.currentUserId, this.currentGroupId, this.currentBasketId, this.currentResourceInformations.resId, this.currentResourceInformations);
} }
showActionInCurrentCategory(action: any) { showActionInCurrentCategory(action: any) {
......
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from '@angular/router'; import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, CanDeactivate } from '@angular/router';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs'; import { Observable } from 'rxjs';
import { map } from 'rxjs/operators'; import { map } from 'rxjs/operators';
import { HeaderService } from './header.service'; import { HeaderService } from './header.service';
import { ProcessComponent } from '../app/process/process.component';
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'
...@@ -24,9 +25,9 @@ export class AppGuard implements CanActivate { ...@@ -24,9 +25,9 @@ export class AppGuard implements CanActivate {
.pipe( .pipe(
map((data: any) => { map((data: any) => {
this.headerService.user = { this.headerService.user = {
id : data.id, id: data.id,
userId : data.user_id, userId: data.user_id,
firstname : data.firstname, firstname: data.firstname,
lastname: data.lastname, lastname: data.lastname,
entities: data.entities, entities: data.entities,
groups: data.groups, groups: data.groups,
...@@ -40,3 +41,20 @@ export class AppGuard implements CanActivate { ...@@ -40,3 +41,20 @@ export class AppGuard implements CanActivate {
} }
} }
} }
@Injectable({
providedIn: 'root'
})
export class AfterProcessGuard implements CanDeactivate<ProcessComponent> {
canDeactivate(component: ProcessComponent): boolean {
component.unlockResource();
/*if(component.hasUnsavedData()){
if (confirm("You have unsaved changes! If you leave, your changes will be lost.")) {
return true;
} else {
return false;
}
}*/
return true;
}
}
\ No newline at end of file
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