mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
118 lines
3.7 KiB
TypeScript
118 lines
3.7 KiB
TypeScript
import { Component, OnInit, ViewChild } from '@angular/core';
|
|
import { Title } from '@angular/platform-browser';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
import { PaperlessSavedView } from 'src/app/data/paperless-saved-view';
|
|
import { DocumentListViewService } from 'src/app/services/document-list-view.service';
|
|
import { DOCUMENT_SORT_FIELDS } from 'src/app/services/rest/document.service';
|
|
import { SavedViewService } from 'src/app/services/rest/saved-view.service';
|
|
import { Toast, ToastService } from 'src/app/services/toast.service';
|
|
import { environment } from 'src/environments/environment';
|
|
import { FilterEditorComponent } from '../filter-editor/filter-editor.component';
|
|
import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component';
|
|
|
|
@Component({
|
|
selector: 'app-document-list',
|
|
templateUrl: './document-list.component.html',
|
|
styleUrls: ['./document-list.component.scss']
|
|
})
|
|
export class DocumentListComponent implements OnInit {
|
|
|
|
constructor(
|
|
public list: DocumentListViewService,
|
|
public savedViewService: SavedViewService,
|
|
public route: ActivatedRoute,
|
|
private router: Router,
|
|
private toastService: ToastService,
|
|
public modalService: NgbModal,
|
|
private titleService: Title) { }
|
|
|
|
@ViewChild("filterEditor")
|
|
private filterEditor: FilterEditorComponent
|
|
|
|
displayMode = 'smallCards' // largeCards, smallCards, details
|
|
|
|
get isFiltered() {
|
|
return this.list.filterRules?.length > 0
|
|
}
|
|
|
|
getTitle() {
|
|
return this.list.savedViewTitle || "Documents"
|
|
}
|
|
|
|
getSortFields() {
|
|
return DOCUMENT_SORT_FIELDS
|
|
}
|
|
|
|
saveDisplayMode() {
|
|
localStorage.setItem('document-list:displayMode', this.displayMode)
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
if (localStorage.getItem('document-list:displayMode') != null) {
|
|
this.displayMode = localStorage.getItem('document-list:displayMode')
|
|
}
|
|
this.route.paramMap.subscribe(params => {
|
|
this.list.clear()
|
|
if (params.has('id')) {
|
|
this.savedViewService.getCached(+params.get('id')).subscribe(view => {
|
|
if (!view) {
|
|
this.router.navigate(["404"])
|
|
return
|
|
}
|
|
|
|
this.list.savedView = view
|
|
this.titleService.setTitle(`${this.list.savedView.name} - ${environment.appTitle}`)
|
|
this.list.reload()
|
|
})
|
|
} else {
|
|
this.list.savedView = null
|
|
this.titleService.setTitle(`Documents - ${environment.appTitle}`)
|
|
this.list.reload()
|
|
}
|
|
})
|
|
}
|
|
|
|
|
|
loadViewConfig(view: PaperlessSavedView) {
|
|
this.list.load(view)
|
|
this.list.reload()
|
|
}
|
|
|
|
saveViewConfig() {
|
|
this.savedViewService.update(this.list.savedView).subscribe(result => {
|
|
this.toastService.showToast(Toast.make("Information", `View "${this.list.savedView.name}" saved successfully.`))
|
|
})
|
|
|
|
}
|
|
|
|
saveViewConfigAs() {
|
|
let modal = this.modalService.open(SaveViewConfigDialogComponent, {backdrop: 'static'})
|
|
modal.componentInstance.saveClicked.subscribe(formValue => {
|
|
this.savedViewService.create({
|
|
name: formValue.name,
|
|
show_on_dashboard: formValue.showOnDashboard,
|
|
show_in_sidebar: formValue.showInSideBar,
|
|
filter_rules: this.list.filterRules,
|
|
sort_reverse: this.list.sortReverse,
|
|
sort_field: this.list.sortField
|
|
}).subscribe(() => {
|
|
modal.close()
|
|
})
|
|
})
|
|
}
|
|
|
|
clickTag(tagID: number) {
|
|
this.filterEditor.toggleTag(tagID)
|
|
}
|
|
|
|
clickCorrespondent(correspondentID: number) {
|
|
this.filterEditor.toggleCorrespondent(correspondentID)
|
|
}
|
|
|
|
clickDocumentType(documentTypeID: number) {
|
|
this.filterEditor.toggleDocumentType(documentTypeID)
|
|
}
|
|
|
|
}
|