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

FEAT #8753 add load pj +1

parent 09ab91b2
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ import {
import { SignaturesComponent } from '../signatures/signatures.component';
import { ActivatedRoute } from '@angular/router';
import { HttpClient } from '@angular/common/http';
import { connectableObservableDescriptor } from 'rxjs/internal/observable/ConnectableObservable';
@Component({
selector: 'app-document',
......@@ -81,6 +82,7 @@ export class DocumentComponent implements OnInit {
});
this.pdfRender(this.docList[this.currentDoc]);
this.context = (<HTMLCanvasElement>this.canvas.nativeElement).getContext('2d');
this.loadNextDoc();
}, () => {
console.log('error !');
});
......@@ -92,6 +94,7 @@ export class DocumentComponent implements OnInit {
});
}
pdfRender(document: any) {
const pdfData = atob(document.document);
......@@ -164,17 +167,8 @@ export class DocumentComponent implements OnInit {
this.signaturesService.isTaggable = false;
this.pageNum = 1;
this.currentDoc++;
if (this.docList[this.currentDoc].document.length === 0) {
this.http.get('../rest/attachments/' + this.docList[this.currentDoc].id)
.subscribe((data: any) => {
this.docList[this.currentDoc] = data.attachment;
this.pdfRender(this.docList[this.currentDoc]);
}, () => {
console.log('error !');
});
} else {
this.pdfRender(this.docList[this.currentDoc]);
}
this.pdfRender(this.docList[this.currentDoc]);
this.loadNextDoc();
}
prevDoc() {
......@@ -360,6 +354,24 @@ export class DocumentComponent implements OnInit {
}
});
}
loadNextDoc () {
if (this.docList[this.currentDoc + 1] && this.docList[this.currentDoc + 1].id && this.docList[this.currentDoc + 1].document === '') {
this.http.get('../rest/attachments/' + this.docList[this.currentDoc + 1].id)
.subscribe((dataPj: any) => {
this.docList[this.currentDoc + 1] = dataPj.attachment;
this.snackBar.open('Pièce jointe chargé', null,
{
duration: 3000,
panelClass: 'center-snackbar',
verticalPosition: 'top'
}
);
}, () => {
console.log('error !');
});
}
}
}
@Component({
......
......@@ -28,7 +28,7 @@
"interface-over-type-literal": true,
"label-position": true,
"max-line-length": [
true,
false,
140
],
"member-access": false,
......
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