mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
212 lines
7.8 KiB
TypeScript
212 lines
7.8 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
import { PaperlessCorrespondent } from 'src/app/data/paperless-correspondent';
|
|
import { PaperlessDocument } from 'src/app/data/paperless-document';
|
|
import { PaperlessDocumentMetadata } from 'src/app/data/paperless-document-metadata';
|
|
import { PaperlessDocumentType } from 'src/app/data/paperless-document-type';
|
|
import { DocumentTitlePipe } from 'src/app/pipes/document-title.pipe';
|
|
import { DocumentListViewService } from 'src/app/services/document-list-view.service';
|
|
import { OpenDocumentsService } from 'src/app/services/open-documents.service';
|
|
import { CorrespondentService } from 'src/app/services/rest/correspondent.service';
|
|
import { DocumentTypeService } from 'src/app/services/rest/document-type.service';
|
|
import { DocumentService } from 'src/app/services/rest/document.service';
|
|
import { ConfirmDialogComponent } from '../common/confirm-dialog/confirm-dialog.component';
|
|
import { CorrespondentEditDialogComponent } from '../manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component';
|
|
import { DocumentTypeEditDialogComponent } from '../manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component';
|
|
import { PDFDocumentProxy } from 'ng2-pdf-viewer';
|
|
import { ToastService } from 'src/app/services/toast.service';
|
|
|
|
@Component({
|
|
selector: 'app-document-detail',
|
|
templateUrl: './document-detail.component.html',
|
|
styleUrls: ['./document-detail.component.scss']
|
|
})
|
|
export class DocumentDetailComponent implements OnInit {
|
|
|
|
expandOriginalMetadata = false
|
|
expandArchivedMetadata = false
|
|
|
|
error: any
|
|
|
|
networkActive = false
|
|
|
|
documentId: number
|
|
document: PaperlessDocument
|
|
metadata: PaperlessDocumentMetadata
|
|
title: string
|
|
previewUrl: string
|
|
downloadUrl: string
|
|
downloadOriginalUrl: string
|
|
|
|
correspondents: PaperlessCorrespondent[]
|
|
documentTypes: PaperlessDocumentType[]
|
|
|
|
documentForm: FormGroup = new FormGroup({
|
|
title: new FormControl(''),
|
|
content: new FormControl(''),
|
|
created: new FormControl(),
|
|
correspondent: new FormControl(),
|
|
document_type: new FormControl(),
|
|
archive_serial_number: new FormControl(),
|
|
tags: new FormControl([])
|
|
})
|
|
|
|
previewCurrentPage: number = 1
|
|
previewNumPages: number = 1
|
|
|
|
constructor(
|
|
private documentsService: DocumentService,
|
|
private route: ActivatedRoute,
|
|
private correspondentService: CorrespondentService,
|
|
private documentTypeService: DocumentTypeService,
|
|
private router: Router,
|
|
private modalService: NgbModal,
|
|
private openDocumentService: OpenDocumentsService,
|
|
private documentListViewService: DocumentListViewService,
|
|
private documentTitlePipe: DocumentTitlePipe,
|
|
private toastService: ToastService) { }
|
|
|
|
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)
|
|
})
|
|
|
|
this.correspondentService.listAll().subscribe(result => this.correspondents = result.results)
|
|
this.documentTypeService.listAll().subscribe(result => this.documentTypes = result.results)
|
|
|
|
this.route.paramMap.subscribe(paramMap => {
|
|
this.documentId = +paramMap.get('id')
|
|
this.previewUrl = this.documentsService.getPreviewUrl(this.documentId)
|
|
this.downloadUrl = this.documentsService.getDownloadUrl(this.documentId)
|
|
this.downloadOriginalUrl = this.documentsService.getDownloadUrl(this.documentId, true)
|
|
if (this.openDocumentService.getOpenDocument(this.documentId)) {
|
|
this.updateComponent(this.openDocumentService.getOpenDocument(this.documentId))
|
|
} else {
|
|
this.documentsService.get(this.documentId).subscribe(doc => {
|
|
this.openDocumentService.openDocument(doc)
|
|
this.updateComponent(doc)
|
|
}, error => {this.router.navigate(['404'])})
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
updateComponent(doc: PaperlessDocument) {
|
|
this.document = doc
|
|
this.documentsService.getMetadata(doc.id).subscribe(result => {
|
|
this.metadata = result
|
|
})
|
|
this.title = this.documentTitlePipe.transform(doc.title)
|
|
this.documentForm.patchValue(doc)
|
|
}
|
|
|
|
createDocumentType() {
|
|
var modal = this.modalService.open(DocumentTypeEditDialogComponent, {backdrop: 'static'})
|
|
modal.componentInstance.dialogMode = 'create'
|
|
modal.componentInstance.success.subscribe(newDocumentType => {
|
|
this.documentTypeService.listAll().subscribe(documentTypes => {
|
|
this.documentTypes = documentTypes.results
|
|
this.documentForm.get('document_type').setValue(newDocumentType.id)
|
|
})
|
|
})
|
|
}
|
|
|
|
createCorrespondent() {
|
|
var modal = this.modalService.open(CorrespondentEditDialogComponent, {backdrop: 'static'})
|
|
modal.componentInstance.dialogMode = 'create'
|
|
modal.componentInstance.success.subscribe(newCorrespondent => {
|
|
this.correspondentService.listAll().subscribe(correspondents => {
|
|
this.correspondents = correspondents.results
|
|
this.documentForm.get('correspondent').setValue(newCorrespondent.id)
|
|
})
|
|
})
|
|
}
|
|
|
|
discard() {
|
|
this.documentsService.get(this.documentId).subscribe(doc => {
|
|
Object.assign(this.document, doc)
|
|
this.title = doc.title
|
|
this.documentForm.patchValue(doc)
|
|
}, error => {this.router.navigate(['404'])})
|
|
}
|
|
|
|
save() {
|
|
this.networkActive = true
|
|
this.documentsService.update(this.document).subscribe(result => {
|
|
this.close()
|
|
this.networkActive = false
|
|
this.error = null
|
|
}, error => {
|
|
this.networkActive = false
|
|
this.error = error.error
|
|
})
|
|
}
|
|
|
|
saveEditNext() {
|
|
this.networkActive = true
|
|
this.documentsService.update(this.document).subscribe(result => {
|
|
this.error = null
|
|
this.documentListViewService.getNext(this.document.id).subscribe(nextDocId => {
|
|
this.networkActive = false
|
|
if (nextDocId) {
|
|
this.openDocumentService.closeDocument(this.document)
|
|
this.router.navigate(['documents', nextDocId])
|
|
}
|
|
}, error => {
|
|
this.networkActive = false
|
|
})
|
|
}, error => {
|
|
this.networkActive = false
|
|
this.error = error.error
|
|
})
|
|
}
|
|
|
|
close() {
|
|
this.openDocumentService.closeDocument(this.document)
|
|
if (this.documentListViewService.savedViewId) {
|
|
this.router.navigate(['view', this.documentListViewService.savedViewId])
|
|
} else {
|
|
this.router.navigate(['documents'])
|
|
}
|
|
}
|
|
|
|
delete() {
|
|
let modal = this.modalService.open(ConfirmDialogComponent, {backdrop: 'static'})
|
|
modal.componentInstance.title = $localize`Confirm delete`
|
|
modal.componentInstance.messageBold = $localize`Do you really want to delete document "${this.document.title}"?`
|
|
modal.componentInstance.message = $localize`The files for this document will be deleted permanently. This operation cannot be undone.`
|
|
modal.componentInstance.btnClass = "btn-danger"
|
|
modal.componentInstance.btnCaption = $localize`Delete document`
|
|
modal.componentInstance.confirmClicked.subscribe(() => {
|
|
modal.componentInstance.buttonsEnabled = false
|
|
this.documentsService.delete(this.document).subscribe(() => {
|
|
modal.close()
|
|
this.close()
|
|
}, error => {
|
|
this.toastService.showError($localize`Error deleting document: ${JSON.stringify(error)}`)
|
|
modal.componentInstance.buttonsEnabled = true
|
|
})
|
|
})
|
|
|
|
}
|
|
|
|
moreLike() {
|
|
this.router.navigate(["search"], {queryParams: {more_like:this.document.id}})
|
|
}
|
|
|
|
hasNext() {
|
|
return this.documentListViewService.hasNext(this.documentId)
|
|
}
|
|
|
|
pdfPreviewLoaded(pdf: PDFDocumentProxy) {
|
|
this.previewNumPages = pdf.numPages
|
|
}
|
|
|
|
}
|