mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #881 from paperless-ngx/feature-fix-saved-view-query-params
Feature / fix saved view & sort field query params
This commit is contained in:
commit
9b8a490061
@ -22,6 +22,7 @@ import {
|
|||||||
RemoteVersionService,
|
RemoteVersionService,
|
||||||
AppRemoteVersion,
|
AppRemoteVersion,
|
||||||
} from 'src/app/services/rest/remote-version.service'
|
} from 'src/app/services/rest/remote-version.service'
|
||||||
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-app-frame',
|
selector: 'app-app-frame',
|
||||||
@ -37,7 +38,8 @@ export class AppFrameComponent {
|
|||||||
public savedViewService: SavedViewService,
|
public savedViewService: SavedViewService,
|
||||||
private list: DocumentListViewService,
|
private list: DocumentListViewService,
|
||||||
private meta: Meta,
|
private meta: Meta,
|
||||||
private remoteVersionService: RemoteVersionService
|
private remoteVersionService: RemoteVersionService,
|
||||||
|
private queryParamsService: QueryParamsService
|
||||||
) {
|
) {
|
||||||
this.remoteVersionService
|
this.remoteVersionService
|
||||||
.checkForUpdates()
|
.checkForUpdates()
|
||||||
@ -92,7 +94,7 @@ export class AppFrameComponent {
|
|||||||
|
|
||||||
search() {
|
search() {
|
||||||
this.closeMenu()
|
this.closeMenu()
|
||||||
this.list.quickFilter([
|
this.queryParamsService.navigateWithFilterRules([
|
||||||
{
|
{
|
||||||
rule_type: FILTER_FULLTEXT_QUERY,
|
rule_type: FILTER_FULLTEXT_QUERY,
|
||||||
value: (this.searchField.value as string).trim(),
|
value: (this.searchField.value as string).trim(),
|
||||||
|
@ -3,11 +3,11 @@ import { Router } from '@angular/router'
|
|||||||
import { Subscription } from 'rxjs'
|
import { Subscription } from 'rxjs'
|
||||||
import { PaperlessDocument } from 'src/app/data/paperless-document'
|
import { PaperlessDocument } from 'src/app/data/paperless-document'
|
||||||
import { PaperlessSavedView } from 'src/app/data/paperless-saved-view'
|
import { PaperlessSavedView } from 'src/app/data/paperless-saved-view'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
|
||||||
import { ConsumerStatusService } from 'src/app/services/consumer-status.service'
|
import { ConsumerStatusService } from 'src/app/services/consumer-status.service'
|
||||||
import { DocumentService } from 'src/app/services/rest/document.service'
|
import { DocumentService } from 'src/app/services/rest/document.service'
|
||||||
import { PaperlessTag } from 'src/app/data/paperless-tag'
|
import { PaperlessTag } from 'src/app/data/paperless-tag'
|
||||||
import { FILTER_HAS_TAGS_ALL } from 'src/app/data/filter-rule-type'
|
import { FILTER_HAS_TAGS_ALL } from 'src/app/data/filter-rule-type'
|
||||||
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-saved-view-widget',
|
selector: 'app-saved-view-widget',
|
||||||
@ -18,7 +18,7 @@ export class SavedViewWidgetComponent implements OnInit, OnDestroy {
|
|||||||
constructor(
|
constructor(
|
||||||
private documentService: DocumentService,
|
private documentService: DocumentService,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private list: DocumentListViewService,
|
private queryParamsService: QueryParamsService,
|
||||||
private consumerStatusService: ConsumerStatusService
|
private consumerStatusService: ConsumerStatusService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@ -60,13 +60,14 @@ export class SavedViewWidgetComponent implements OnInit, OnDestroy {
|
|||||||
if (this.savedView.show_in_sidebar) {
|
if (this.savedView.show_in_sidebar) {
|
||||||
this.router.navigate(['view', this.savedView.id])
|
this.router.navigate(['view', this.savedView.id])
|
||||||
} else {
|
} else {
|
||||||
this.list.loadSavedView(this.savedView, true)
|
this.router.navigate(['documents'], {
|
||||||
this.router.navigate(['documents'])
|
queryParams: { view: this.savedView.id },
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clickTag(tag: PaperlessTag) {
|
clickTag(tag: PaperlessTag) {
|
||||||
this.list.quickFilter([
|
this.queryParamsService.navigateWithFilterRules([
|
||||||
{ rule_type: FILTER_HAS_TAGS_ALL, value: tag.id.toString() },
|
{ rule_type: FILTER_HAS_TAGS_ALL, value: tag.id.toString() },
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,7 @@ import {
|
|||||||
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
||||||
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
||||||
import { normalizeDateStr } from 'src/app/utils/date'
|
import { normalizeDateStr } from 'src/app/utils/date'
|
||||||
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-document-detail',
|
selector: 'app-document-detail',
|
||||||
@ -114,7 +115,8 @@ export class DocumentDetailComponent
|
|||||||
private documentListViewService: DocumentListViewService,
|
private documentListViewService: DocumentListViewService,
|
||||||
private documentTitlePipe: DocumentTitlePipe,
|
private documentTitlePipe: DocumentTitlePipe,
|
||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private settings: SettingsService
|
private settings: SettingsService,
|
||||||
|
private queryParamsService: QueryParamsService
|
||||||
) {
|
) {
|
||||||
this.titleSubject
|
this.titleSubject
|
||||||
.pipe(
|
.pipe(
|
||||||
@ -446,7 +448,7 @@ export class DocumentDetailComponent
|
|||||||
}
|
}
|
||||||
|
|
||||||
moreLike() {
|
moreLike() {
|
||||||
this.documentListViewService.quickFilter([
|
this.queryParamsService.navigateWithFilterRules([
|
||||||
{
|
{
|
||||||
rule_type: FILTER_FULLTEXT_MORELIKE,
|
rule_type: FILTER_FULLTEXT_MORELIKE,
|
||||||
value: this.documentId.toString(),
|
value: this.documentId.toString(),
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<div ngbDropdown class="btn-group ms-2 flex-fill">
|
<div ngbDropdown class="btn-group ms-2 flex-fill">
|
||||||
<button class="btn btn-outline-primary btn-sm" id="dropdownBasic1" ngbDropdownToggle i18n>Sort</button>
|
<button class="btn btn-outline-primary btn-sm" id="dropdownBasic1" ngbDropdownToggle i18n>Sort</button>
|
||||||
<div ngbDropdownMenu aria-labelledby="dropdownBasic1" class="shadow dropdown-menu-right">
|
<div ngbDropdownMenu aria-labelledby="dropdownBasic1" class="shadow dropdown-menu-right">
|
||||||
<div class="w-100 d-flex btn-group-toggle pb-2 mb-1 border-bottom" ngbRadioGroup [(ngModel)]="list.sortReverse">
|
<div class="w-100 d-flex btn-group-toggle pb-2 mb-1 border-bottom" ngbRadioGroup [(ngModel)]="listSort">
|
||||||
<label ngbButtonLabel class="btn-outline-primary btn-sm mx-2 flex-fill">
|
<label ngbButtonLabel class="btn-outline-primary btn-sm mx-2 flex-fill">
|
||||||
<input ngbButton type="radio" class="btn btn-check btn-sm" [value]="false">
|
<input ngbButton type="radio" class="btn btn-check btn-sm" [value]="false">
|
||||||
<svg class="toolbaricon" fill="currentColor">
|
<svg class="toolbaricon" fill="currentColor">
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<button *ngFor="let f of getSortFields()" ngbDropdownItem (click)="list.sortField = f.field"
|
<button *ngFor="let f of getSortFields()" ngbDropdownItem (click)="setSortField(f.field)"
|
||||||
[class.active]="list.sortField == f.field">{{f.name}}
|
[class.active]="list.sortField == f.field">{{f.name}}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@ -64,7 +64,7 @@
|
|||||||
<button class="btn btn-sm btn-outline-primary dropdown-toggle flex-fill" ngbDropdownToggle i18n>Views</button>
|
<button class="btn btn-sm btn-outline-primary dropdown-toggle flex-fill" ngbDropdownToggle i18n>Views</button>
|
||||||
<div class="dropdown-menu shadow dropdown-menu-right" ngbDropdownMenu>
|
<div class="dropdown-menu shadow dropdown-menu-right" ngbDropdownMenu>
|
||||||
<ng-container *ngIf="!list.activeSavedViewId">
|
<ng-container *ngIf="!list.activeSavedViewId">
|
||||||
<button ngbDropdownItem *ngFor="let view of savedViewService.allViews" (click)="loadViewConfig(view)">{{view.name}}</button>
|
<button ngbDropdownItem *ngFor="let view of savedViewService.allViews" (click)="loadViewConfig(view.id)">{{view.name}}</button>
|
||||||
<div class="dropdown-divider" *ngIf="savedViewService.allViews.length > 0"></div>
|
<div class="dropdown-divider" *ngIf="savedViewService.allViews.length > 0"></div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
@ -9,20 +9,9 @@ import {
|
|||||||
} from '@angular/core'
|
} from '@angular/core'
|
||||||
import { ActivatedRoute, Router } from '@angular/router'
|
import { ActivatedRoute, Router } from '@angular/router'
|
||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import {
|
import { filter, first, map, Subject, switchMap, takeUntil } from 'rxjs'
|
||||||
filter,
|
|
||||||
first,
|
|
||||||
map,
|
|
||||||
Subject,
|
|
||||||
Subscription,
|
|
||||||
switchMap,
|
|
||||||
takeUntil,
|
|
||||||
} from 'rxjs'
|
|
||||||
import { FilterRule, isFullTextFilterRule } from 'src/app/data/filter-rule'
|
import { FilterRule, isFullTextFilterRule } from 'src/app/data/filter-rule'
|
||||||
import {
|
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
||||||
FILTER_FULLTEXT_MORELIKE,
|
|
||||||
FILTER_RULE_TYPES,
|
|
||||||
} from 'src/app/data/filter-rule-type'
|
|
||||||
import { PaperlessDocument } from 'src/app/data/paperless-document'
|
import { PaperlessDocument } from 'src/app/data/paperless-document'
|
||||||
import { PaperlessSavedView } from 'src/app/data/paperless-saved-view'
|
import { PaperlessSavedView } from 'src/app/data/paperless-saved-view'
|
||||||
import {
|
import {
|
||||||
@ -32,7 +21,10 @@ import {
|
|||||||
import { ConsumerStatusService } from 'src/app/services/consumer-status.service'
|
import { ConsumerStatusService } from 'src/app/services/consumer-status.service'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
||||||
import {
|
import {
|
||||||
DocumentService,
|
filterRulesFromQueryParams,
|
||||||
|
QueryParamsService,
|
||||||
|
} from 'src/app/services/query-params.service'
|
||||||
|
import {
|
||||||
DOCUMENT_SORT_FIELDS,
|
DOCUMENT_SORT_FIELDS,
|
||||||
DOCUMENT_SORT_FIELDS_FULLTEXT,
|
DOCUMENT_SORT_FIELDS_FULLTEXT,
|
||||||
} from 'src/app/services/rest/document.service'
|
} from 'src/app/services/rest/document.service'
|
||||||
@ -49,13 +41,13 @@ import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-vi
|
|||||||
export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
constructor(
|
constructor(
|
||||||
public list: DocumentListViewService,
|
public list: DocumentListViewService,
|
||||||
private documentService: DocumentService,
|
|
||||||
public savedViewService: SavedViewService,
|
public savedViewService: SavedViewService,
|
||||||
public route: ActivatedRoute,
|
public route: ActivatedRoute,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private modalService: NgbModal,
|
private modalService: NgbModal,
|
||||||
private consumerStatusService: ConsumerStatusService
|
private consumerStatusService: ConsumerStatusService,
|
||||||
|
private queryParamsService: QueryParamsService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@ViewChild('filterEditor')
|
@ViewChild('filterEditor')
|
||||||
@ -83,8 +75,26 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
: DOCUMENT_SORT_FIELDS
|
: DOCUMENT_SORT_FIELDS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
set listSort(reverse: boolean) {
|
||||||
|
this.list.sortReverse = reverse
|
||||||
|
this.queryParamsService.sortField = this.list.sortField
|
||||||
|
this.queryParamsService.sortReverse = reverse
|
||||||
|
}
|
||||||
|
|
||||||
|
get listSort(): boolean {
|
||||||
|
return this.list.sortReverse
|
||||||
|
}
|
||||||
|
|
||||||
|
setSortField(field: string) {
|
||||||
|
this.list.sortField = field
|
||||||
|
this.queryParamsService.sortField = field
|
||||||
|
this.queryParamsService.sortReverse = this.listSort
|
||||||
|
}
|
||||||
|
|
||||||
onSort(event: SortEvent) {
|
onSort(event: SortEvent) {
|
||||||
this.list.setSort(event.column, event.reverse)
|
this.list.setSort(event.column, event.reverse)
|
||||||
|
this.queryParamsService.sortField = event.column
|
||||||
|
this.queryParamsService.sortReverse = event.reverse
|
||||||
}
|
}
|
||||||
|
|
||||||
get isBulkEditing(): boolean {
|
get isBulkEditing(): boolean {
|
||||||
@ -109,60 +119,39 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
|
|
||||||
this.route.paramMap
|
this.route.paramMap
|
||||||
.pipe(
|
.pipe(
|
||||||
filter((params) => params.has('id')), // only on saved view
|
filter((params) => params.has('id')), // only on saved view e.g. /view/id
|
||||||
switchMap((params) => {
|
switchMap((params) => {
|
||||||
return this.savedViewService
|
return this.savedViewService
|
||||||
.getCached(+params.get('id'))
|
.getCached(+params.get('id'))
|
||||||
.pipe(map((view) => ({ params, view })))
|
.pipe(map((view) => ({ view })))
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||||
.subscribe(({ view, params }) => {
|
.subscribe(({ view }) => {
|
||||||
if (!view) {
|
if (!view) {
|
||||||
this.router.navigate(['404'])
|
this.router.navigate(['404'])
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.list.activateSavedView(view)
|
this.list.activateSavedView(view)
|
||||||
this.list.reload()
|
this.list.reload()
|
||||||
|
this.queryParamsService.updateFromView(view)
|
||||||
this.unmodifiedFilterRules = view.filter_rules
|
this.unmodifiedFilterRules = view.filter_rules
|
||||||
})
|
})
|
||||||
|
|
||||||
const allFilterRuleQueryParams: string[] = FILTER_RULE_TYPES.map(
|
|
||||||
(rt) => rt.filtervar
|
|
||||||
)
|
|
||||||
|
|
||||||
this.route.queryParamMap
|
this.route.queryParamMap
|
||||||
.pipe(
|
.pipe(
|
||||||
filter(() => !this.route.snapshot.paramMap.has('id')), // only when not on saved view
|
filter(() => !this.route.snapshot.paramMap.has('id')), // only when not on /view/id
|
||||||
takeUntil(this.unsubscribeNotifier)
|
takeUntil(this.unsubscribeNotifier)
|
||||||
)
|
)
|
||||||
.subscribe((queryParams) => {
|
.subscribe((queryParams) => {
|
||||||
// transform query params to filter rules
|
if (queryParams.has('view')) {
|
||||||
let filterRulesFromQueryParams: FilterRule[] = []
|
// loading a saved view on /documents
|
||||||
allFilterRuleQueryParams
|
this.loadViewConfig(parseInt(queryParams.get('view')))
|
||||||
.filter((frqp) => queryParams.has(frqp))
|
} else {
|
||||||
.forEach((filterQueryParamName) => {
|
this.list.activateSavedView(null)
|
||||||
const filterQueryParamValues: string[] = queryParams
|
this.queryParamsService.parseQueryParams(queryParams)
|
||||||
.get(filterQueryParamName)
|
this.unmodifiedFilterRules = []
|
||||||
.split(',')
|
}
|
||||||
|
|
||||||
filterRulesFromQueryParams = filterRulesFromQueryParams.concat(
|
|
||||||
// map all values to filter rules
|
|
||||||
filterQueryParamValues.map((val) => {
|
|
||||||
return {
|
|
||||||
rule_type: FILTER_RULE_TYPES.find(
|
|
||||||
(rt) => rt.filtervar == filterQueryParamName
|
|
||||||
).id,
|
|
||||||
value: val,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
this.list.activateSavedView(null)
|
|
||||||
this.list.filterRules = filterRulesFromQueryParams
|
|
||||||
this.list.reload()
|
|
||||||
this.unmodifiedFilterRules = []
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -171,17 +160,7 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||||
.subscribe({
|
.subscribe({
|
||||||
next: (filterRules) => {
|
next: (filterRules) => {
|
||||||
const params =
|
this.queryParamsService.updateFilterRules(filterRules)
|
||||||
this.documentService.filterRulesToQueryParams(filterRules)
|
|
||||||
|
|
||||||
// if we were on a saved view we navigate 'away' to /documents
|
|
||||||
let base = []
|
|
||||||
if (this.route.snapshot.paramMap.has('id')) base = ['/documents']
|
|
||||||
|
|
||||||
this.router.navigate(base, {
|
|
||||||
relativeTo: this.route,
|
|
||||||
queryParams: params,
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -192,9 +171,15 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
this.unsubscribeNotifier.complete()
|
this.unsubscribeNotifier.complete()
|
||||||
}
|
}
|
||||||
|
|
||||||
loadViewConfig(view: PaperlessSavedView) {
|
loadViewConfig(viewId: number) {
|
||||||
this.list.loadSavedView(view)
|
this.savedViewService
|
||||||
this.list.reload()
|
.getCached(viewId)
|
||||||
|
.pipe(first())
|
||||||
|
.subscribe((view) => {
|
||||||
|
this.list.loadSavedView(view)
|
||||||
|
this.list.reload()
|
||||||
|
this.queryParamsService.updateFromView(view)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
saveViewConfig() {
|
saveViewConfig() {
|
||||||
@ -282,7 +267,7 @@ export class DocumentListComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
clickMoreLike(documentID: number) {
|
clickMoreLike(documentID: number) {
|
||||||
this.list.quickFilter([
|
this.queryParamsService.navigateWithFilterRules([
|
||||||
{ rule_type: FILTER_FULLTEXT_MORELIKE, value: documentID.toString() },
|
{ rule_type: FILTER_FULLTEXT_MORELIKE, value: documentID.toString() },
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
|||||||
import { FILTER_CORRESPONDENT } from 'src/app/data/filter-rule-type'
|
import { FILTER_CORRESPONDENT } from 'src/app/data/filter-rule-type'
|
||||||
import { PaperlessCorrespondent } from 'src/app/data/paperless-correspondent'
|
import { PaperlessCorrespondent } from 'src/app/data/paperless-correspondent'
|
||||||
import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe'
|
import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
|
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
|
||||||
import { ToastService } from 'src/app/services/toast.service'
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { CorrespondentEditDialogComponent } from '../../common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component'
|
import { CorrespondentEditDialogComponent } from '../../common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component'
|
||||||
@ -20,7 +20,7 @@ export class CorrespondentListComponent extends ManagementListComponent<Paperles
|
|||||||
correspondentsService: CorrespondentService,
|
correspondentsService: CorrespondentService,
|
||||||
modalService: NgbModal,
|
modalService: NgbModal,
|
||||||
toastService: ToastService,
|
toastService: ToastService,
|
||||||
list: DocumentListViewService,
|
queryParamsService: QueryParamsService,
|
||||||
private datePipe: CustomDatePipe
|
private datePipe: CustomDatePipe
|
||||||
) {
|
) {
|
||||||
super(
|
super(
|
||||||
@ -28,7 +28,7 @@ export class CorrespondentListComponent extends ManagementListComponent<Paperles
|
|||||||
modalService,
|
modalService,
|
||||||
CorrespondentEditDialogComponent,
|
CorrespondentEditDialogComponent,
|
||||||
toastService,
|
toastService,
|
||||||
list,
|
queryParamsService,
|
||||||
FILTER_CORRESPONDENT,
|
FILTER_CORRESPONDENT,
|
||||||
$localize`correspondent`,
|
$localize`correspondent`,
|
||||||
[
|
[
|
||||||
|
@ -2,7 +2,7 @@ import { Component } from '@angular/core'
|
|||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { FILTER_DOCUMENT_TYPE } from 'src/app/data/filter-rule-type'
|
import { FILTER_DOCUMENT_TYPE } from 'src/app/data/filter-rule-type'
|
||||||
import { PaperlessDocumentType } from 'src/app/data/paperless-document-type'
|
import { PaperlessDocumentType } from 'src/app/data/paperless-document-type'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
|
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
|
||||||
import { ToastService } from 'src/app/services/toast.service'
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { DocumentTypeEditDialogComponent } from '../../common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component'
|
import { DocumentTypeEditDialogComponent } from '../../common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component'
|
||||||
@ -18,14 +18,14 @@ export class DocumentTypeListComponent extends ManagementListComponent<Paperless
|
|||||||
documentTypeService: DocumentTypeService,
|
documentTypeService: DocumentTypeService,
|
||||||
modalService: NgbModal,
|
modalService: NgbModal,
|
||||||
toastService: ToastService,
|
toastService: ToastService,
|
||||||
list: DocumentListViewService
|
queryParamsService: QueryParamsService
|
||||||
) {
|
) {
|
||||||
super(
|
super(
|
||||||
documentTypeService,
|
documentTypeService,
|
||||||
modalService,
|
modalService,
|
||||||
DocumentTypeEditDialogComponent,
|
DocumentTypeEditDialogComponent,
|
||||||
toastService,
|
toastService,
|
||||||
list,
|
queryParamsService,
|
||||||
FILTER_DOCUMENT_TYPE,
|
FILTER_DOCUMENT_TYPE,
|
||||||
$localize`document type`,
|
$localize`document type`,
|
||||||
[]
|
[]
|
||||||
|
@ -18,7 +18,7 @@ import {
|
|||||||
SortableDirective,
|
SortableDirective,
|
||||||
SortEvent,
|
SortEvent,
|
||||||
} from 'src/app/directives/sortable.directive'
|
} from 'src/app/directives/sortable.directive'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
import { AbstractNameFilterService } from 'src/app/services/rest/abstract-name-filter-service'
|
import { AbstractNameFilterService } from 'src/app/services/rest/abstract-name-filter-service'
|
||||||
import { ToastService } from 'src/app/services/toast.service'
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component'
|
import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component'
|
||||||
@ -42,7 +42,7 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
|
|||||||
private modalService: NgbModal,
|
private modalService: NgbModal,
|
||||||
private editDialogComponent: any,
|
private editDialogComponent: any,
|
||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private list: DocumentListViewService,
|
private queryParamsService: QueryParamsService,
|
||||||
protected filterRuleType: number,
|
protected filterRuleType: number,
|
||||||
public typeName: string,
|
public typeName: string,
|
||||||
public extraColumns: ManagementListColumn[]
|
public extraColumns: ManagementListColumn[]
|
||||||
@ -140,7 +140,7 @@ export abstract class ManagementListComponent<T extends ObjectWithId>
|
|||||||
}
|
}
|
||||||
|
|
||||||
filterDocuments(object: ObjectWithId) {
|
filterDocuments(object: ObjectWithId) {
|
||||||
this.list.quickFilter([
|
this.queryParamsService.navigateWithFilterRules([
|
||||||
{ rule_type: this.filterRuleType, value: object.id.toString() },
|
{ rule_type: this.filterRuleType, value: object.id.toString() },
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@ import { Component } from '@angular/core'
|
|||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { FILTER_HAS_TAGS_ALL } from 'src/app/data/filter-rule-type'
|
import { FILTER_HAS_TAGS_ALL } from 'src/app/data/filter-rule-type'
|
||||||
import { PaperlessTag } from 'src/app/data/paperless-tag'
|
import { PaperlessTag } from 'src/app/data/paperless-tag'
|
||||||
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
import { TagService } from 'src/app/services/rest/tag.service'
|
import { TagService } from 'src/app/services/rest/tag.service'
|
||||||
import { ToastService } from 'src/app/services/toast.service'
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { TagEditDialogComponent } from '../../common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component'
|
import { TagEditDialogComponent } from '../../common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component'
|
||||||
@ -18,14 +18,14 @@ export class TagListComponent extends ManagementListComponent<PaperlessTag> {
|
|||||||
tagService: TagService,
|
tagService: TagService,
|
||||||
modalService: NgbModal,
|
modalService: NgbModal,
|
||||||
toastService: ToastService,
|
toastService: ToastService,
|
||||||
list: DocumentListViewService
|
queryParamsService: QueryParamsService
|
||||||
) {
|
) {
|
||||||
super(
|
super(
|
||||||
tagService,
|
tagService,
|
||||||
modalService,
|
modalService,
|
||||||
TagEditDialogComponent,
|
TagEditDialogComponent,
|
||||||
toastService,
|
toastService,
|
||||||
list,
|
queryParamsService,
|
||||||
FILTER_HAS_TAGS_ALL,
|
FILTER_HAS_TAGS_ALL,
|
||||||
$localize`tag`,
|
$localize`tag`,
|
||||||
[
|
[
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Injectable } from '@angular/core'
|
import { Injectable } from '@angular/core'
|
||||||
import { ActivatedRoute, Router } from '@angular/router'
|
import { ActivatedRoute, Params, Router } from '@angular/router'
|
||||||
import { Observable } from 'rxjs'
|
import { Observable } from 'rxjs'
|
||||||
import {
|
import {
|
||||||
cloneFilterRules,
|
cloneFilterRules,
|
||||||
@ -220,6 +220,13 @@ export class DocumentListViewService {
|
|||||||
return this.activeListViewState.sortReverse
|
return this.activeListViewState.sortReverse
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get sortParams(): Params {
|
||||||
|
return {
|
||||||
|
sortField: this.sortField,
|
||||||
|
sortReverse: this.sortReverse,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
get collectionSize(): number {
|
get collectionSize(): number {
|
||||||
return this.activeListViewState.collectionSize
|
return this.activeListViewState.collectionSize
|
||||||
}
|
}
|
||||||
@ -265,14 +272,6 @@ export class DocumentListViewService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
quickFilter(filterRules: FilterRule[]) {
|
|
||||||
const params = this.documentService.filterRulesToQueryParams(filterRules)
|
|
||||||
this.router.navigate(['/documents'], {
|
|
||||||
relativeTo: this.route,
|
|
||||||
queryParams: params,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
getLastPage(): number {
|
getLastPage(): number {
|
||||||
return Math.ceil(this.collectionSize / this.currentPageSize)
|
return Math.ceil(this.collectionSize / this.currentPageSize)
|
||||||
}
|
}
|
||||||
@ -434,9 +433,7 @@ export class DocumentListViewService {
|
|||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private documentService: DocumentService,
|
private documentService: DocumentService,
|
||||||
private settings: SettingsService,
|
private settings: SettingsService
|
||||||
private router: Router,
|
|
||||||
private route: ActivatedRoute
|
|
||||||
) {
|
) {
|
||||||
let documentListViewConfigJson = localStorage.getItem(
|
let documentListViewConfigJson = localStorage.getItem(
|
||||||
DOCUMENT_LIST_SERVICE.CURRENT_VIEW_CONFIG
|
DOCUMENT_LIST_SERVICE.CURRENT_VIEW_CONFIG
|
||||||
|
152
src-ui/src/app/services/query-params.service.ts
Normal file
152
src-ui/src/app/services/query-params.service.ts
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
import { Injectable } from '@angular/core'
|
||||||
|
import { ParamMap, Params, Router } from '@angular/router'
|
||||||
|
import { FilterRule } from '../data/filter-rule'
|
||||||
|
import { FILTER_RULE_TYPES } from '../data/filter-rule-type'
|
||||||
|
import { PaperlessSavedView } from '../data/paperless-saved-view'
|
||||||
|
import { DocumentListViewService } from './document-list-view.service'
|
||||||
|
|
||||||
|
const SORT_FIELD_PARAMETER = 'sort'
|
||||||
|
const SORT_REVERSE_PARAMETER = 'reverse'
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class QueryParamsService {
|
||||||
|
constructor(private router: Router, private list: DocumentListViewService) {}
|
||||||
|
|
||||||
|
private filterParams: Params = {}
|
||||||
|
private sortParams: Params = {}
|
||||||
|
|
||||||
|
updateFilterRules(
|
||||||
|
filterRules: FilterRule[],
|
||||||
|
updateQueryParams: boolean = true
|
||||||
|
) {
|
||||||
|
this.filterParams = filterRulesToQueryParams(filterRules)
|
||||||
|
if (updateQueryParams) this.updateQueryParams()
|
||||||
|
}
|
||||||
|
|
||||||
|
set sortField(field: string) {
|
||||||
|
this.sortParams[SORT_FIELD_PARAMETER] = field
|
||||||
|
this.updateQueryParams()
|
||||||
|
}
|
||||||
|
|
||||||
|
set sortReverse(reverse: boolean) {
|
||||||
|
if (!reverse) this.sortParams[SORT_REVERSE_PARAMETER] = undefined
|
||||||
|
else this.sortParams[SORT_REVERSE_PARAMETER] = reverse
|
||||||
|
this.updateQueryParams()
|
||||||
|
}
|
||||||
|
|
||||||
|
get params(): Params {
|
||||||
|
return {
|
||||||
|
...this.sortParams,
|
||||||
|
...this.filterParams,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private updateQueryParams() {
|
||||||
|
// if we were on a saved view we navigate 'away' to /documents
|
||||||
|
let base = []
|
||||||
|
if (this.router.routerState.snapshot.url.includes('/view/'))
|
||||||
|
base = ['/documents']
|
||||||
|
|
||||||
|
this.router.navigate(base, {
|
||||||
|
queryParams: this.params,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
public parseQueryParams(queryParams: ParamMap) {
|
||||||
|
let filterRules = filterRulesFromQueryParams(queryParams)
|
||||||
|
if (
|
||||||
|
filterRules.length ||
|
||||||
|
queryParams.has(SORT_FIELD_PARAMETER) ||
|
||||||
|
queryParams.has(SORT_REVERSE_PARAMETER)
|
||||||
|
) {
|
||||||
|
this.list.filterRules = filterRules
|
||||||
|
this.list.sortField = queryParams.get(SORT_FIELD_PARAMETER)
|
||||||
|
this.list.sortReverse =
|
||||||
|
queryParams.has(SORT_REVERSE_PARAMETER) ||
|
||||||
|
(!queryParams.has(SORT_FIELD_PARAMETER) &&
|
||||||
|
!queryParams.has(SORT_REVERSE_PARAMETER))
|
||||||
|
this.list.reload()
|
||||||
|
} else if (
|
||||||
|
filterRules.length == 0 &&
|
||||||
|
!queryParams.has(SORT_FIELD_PARAMETER)
|
||||||
|
) {
|
||||||
|
// this is navigating to /documents so we need to update the params from the list
|
||||||
|
this.updateFilterRules(this.list.filterRules, false)
|
||||||
|
this.sortField = this.list.sortField
|
||||||
|
this.sortReverse = this.list.sortReverse
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateFromView(view: PaperlessSavedView) {
|
||||||
|
if (!this.router.routerState.snapshot.url.includes('/view/')) {
|
||||||
|
// navigation for /documents?view=
|
||||||
|
this.router.navigate([], {
|
||||||
|
queryParams: { view: view.id },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// make sure params are up-to-date
|
||||||
|
this.updateFilterRules(view.filter_rules, false)
|
||||||
|
this.sortParams[SORT_FIELD_PARAMETER] = this.list.sortField
|
||||||
|
this.sortParams[SORT_REVERSE_PARAMETER] = this.list.sortReverse
|
||||||
|
}
|
||||||
|
|
||||||
|
navigateWithFilterRules(filterRules: FilterRule[]) {
|
||||||
|
this.updateFilterRules(filterRules)
|
||||||
|
this.router.navigate(['/documents'], {
|
||||||
|
queryParams: this.params,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function filterRulesToQueryParams(filterRules: FilterRule[]): Object {
|
||||||
|
if (filterRules) {
|
||||||
|
let params = {}
|
||||||
|
for (let rule of filterRules) {
|
||||||
|
let ruleType = FILTER_RULE_TYPES.find((t) => t.id == rule.rule_type)
|
||||||
|
if (ruleType.multi) {
|
||||||
|
params[ruleType.filtervar] = params[ruleType.filtervar]
|
||||||
|
? params[ruleType.filtervar] + ',' + rule.value
|
||||||
|
: rule.value
|
||||||
|
} else if (ruleType.isnull_filtervar && rule.value == null) {
|
||||||
|
params[ruleType.isnull_filtervar] = true
|
||||||
|
} else {
|
||||||
|
params[ruleType.filtervar] = rule.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return params
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function filterRulesFromQueryParams(queryParams: ParamMap) {
|
||||||
|
const allFilterRuleQueryParams: string[] = FILTER_RULE_TYPES.map(
|
||||||
|
(rt) => rt.filtervar
|
||||||
|
)
|
||||||
|
|
||||||
|
// transform query params to filter rules
|
||||||
|
let filterRulesFromQueryParams: FilterRule[] = []
|
||||||
|
allFilterRuleQueryParams
|
||||||
|
.filter((frqp) => queryParams.has(frqp))
|
||||||
|
.forEach((filterQueryParamName) => {
|
||||||
|
const filterQueryParamValues: string[] = queryParams
|
||||||
|
.get(filterQueryParamName)
|
||||||
|
.split(',')
|
||||||
|
|
||||||
|
filterRulesFromQueryParams = filterRulesFromQueryParams.concat(
|
||||||
|
// map all values to filter rules
|
||||||
|
filterQueryParamValues.map((val) => {
|
||||||
|
return {
|
||||||
|
rule_type: FILTER_RULE_TYPES.find(
|
||||||
|
(rt) => rt.filtervar == filterQueryParamName
|
||||||
|
).id,
|
||||||
|
value: val,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
return filterRulesFromQueryParams
|
||||||
|
}
|
@ -10,8 +10,8 @@ import { map } from 'rxjs/operators'
|
|||||||
import { CorrespondentService } from './correspondent.service'
|
import { CorrespondentService } from './correspondent.service'
|
||||||
import { DocumentTypeService } from './document-type.service'
|
import { DocumentTypeService } from './document-type.service'
|
||||||
import { TagService } from './tag.service'
|
import { TagService } from './tag.service'
|
||||||
import { FILTER_RULE_TYPES } from 'src/app/data/filter-rule-type'
|
|
||||||
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
import { PaperlessDocumentSuggestions } from 'src/app/data/paperless-document-suggestions'
|
||||||
|
import { filterRulesToQueryParams } from '../query-params.service'
|
||||||
|
|
||||||
export const DOCUMENT_SORT_FIELDS = [
|
export const DOCUMENT_SORT_FIELDS = [
|
||||||
{ field: 'archive_serial_number', name: $localize`ASN` },
|
{ field: 'archive_serial_number', name: $localize`ASN` },
|
||||||
@ -57,27 +57,6 @@ export class DocumentService extends AbstractPaperlessService<PaperlessDocument>
|
|||||||
super(http, 'documents')
|
super(http, 'documents')
|
||||||
}
|
}
|
||||||
|
|
||||||
public filterRulesToQueryParams(filterRules: FilterRule[]): Object {
|
|
||||||
if (filterRules) {
|
|
||||||
let params = {}
|
|
||||||
for (let rule of filterRules) {
|
|
||||||
let ruleType = FILTER_RULE_TYPES.find((t) => t.id == rule.rule_type)
|
|
||||||
if (ruleType.multi) {
|
|
||||||
params[ruleType.filtervar] = params[ruleType.filtervar]
|
|
||||||
? params[ruleType.filtervar] + ',' + rule.value
|
|
||||||
: rule.value
|
|
||||||
} else if (ruleType.isnull_filtervar && rule.value == null) {
|
|
||||||
params[ruleType.isnull_filtervar] = true
|
|
||||||
} else {
|
|
||||||
params[ruleType.filtervar] = rule.value
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return params
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
addObservablesToDocument(doc: PaperlessDocument) {
|
addObservablesToDocument(doc: PaperlessDocument) {
|
||||||
if (doc.correspondent) {
|
if (doc.correspondent) {
|
||||||
doc.correspondent$ = this.correspondentService.getCached(
|
doc.correspondent$ = this.correspondentService.getCached(
|
||||||
@ -106,7 +85,7 @@ export class DocumentService extends AbstractPaperlessService<PaperlessDocument>
|
|||||||
pageSize,
|
pageSize,
|
||||||
sortField,
|
sortField,
|
||||||
sortReverse,
|
sortReverse,
|
||||||
Object.assign(extraParams, this.filterRulesToQueryParams(filterRules))
|
Object.assign(extraParams, filterRulesToQueryParams(filterRules))
|
||||||
).pipe(
|
).pipe(
|
||||||
map((results) => {
|
map((results) => {
|
||||||
results.results.forEach((doc) => this.addObservablesToDocument(doc))
|
results.results.forEach((doc) => this.addObservablesToDocument(doc))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user