a couple adjustments for the document viewer.

This commit is contained in:
jonaswinkler 2020-12-12 22:56:44 +01:00
parent e77be6a2ed
commit 1c4d19198f
3 changed files with 7 additions and 5 deletions

View File

@ -35,7 +35,7 @@
<div class="row">
<div class="col-md-6 col-xl-4 mb-4">
<div class="col mb-4">
<form [formGroup]='documentForm' (ngSubmit)="save()">
@ -172,8 +172,8 @@
</div>
<div class="col-md-6 col-xl-8 mb-3">
<div class="pdf-viewer-container">
<pdf-viewer [src]="previewUrl" [original-size]="false" [show-borders]="false"></pdf-viewer>
<div class="pdf-viewer-container" *ngIf="getContentType() == 'application/pdf'">
<pdf-viewer [src]="previewUrl" [original-size]="false" [show-borders]="true"></pdf-viewer>
</div>
</div>
</div>

View File

@ -2,7 +2,5 @@
height: calc(100vh - 160px);
top: 70px;
position: sticky;
padding: 10px;
background-color: gray;
overflow-y: scroll;
}

View File

@ -59,6 +59,10 @@ export class DocumentDetailComponent implements OnInit {
private documentListViewService: DocumentListViewService,
private titleService: Title) { }
getContentType() {
return this.metadata?.has_archive_version ? 'application/pdf' : this.metadata?.original_mime_type
}
ngOnInit(): void {
this.documentForm.valueChanges.subscribe(wow => {
Object.assign(this.document, this.documentForm.value)