mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Allow independent saved view control
This commit is contained in:
parent
dc1da7cb24
commit
1b55717cc7
@ -67,7 +67,7 @@
|
|||||||
<div class="dropdown-divider" *ngIf="savedViewService.allViews.length > 0"></div>
|
<div class="dropdown-divider" *ngIf="savedViewService.allViews.length > 0"></div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<button ngbDropdownItem (click)="saveViewConfig()" *ngIf="list.activeSavedViewId" i18n>Save "{{list.activeSavedViewTitle}}"</button>
|
<button ngbDropdownItem (click)="saveViewConfig()" *ngIf="list.activeSavedViewId" [disabled]="!savedViewIsModified" i18n>Save "{{list.activeSavedViewTitle}}"</button>
|
||||||
<button ngbDropdownItem (click)="saveViewConfigAs()" i18n>Save as...</button>
|
<button ngbDropdownItem (click)="saveViewConfigAs()" i18n>Save as...</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -9,7 +9,11 @@ import {
|
|||||||
import { ActivatedRoute, convertToParamMap, Router } from '@angular/router'
|
import { ActivatedRoute, convertToParamMap, Router } from '@angular/router'
|
||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { filter, first, map, Subject, switchMap, takeUntil } from 'rxjs'
|
import { filter, first, map, Subject, switchMap, takeUntil } from 'rxjs'
|
||||||
import { FilterRule, isFullTextFilterRule } from 'src/app/data/filter-rule'
|
import {
|
||||||
|
FilterRule,
|
||||||
|
filterRulesDiffer,
|
||||||
|
isFullTextFilterRule,
|
||||||
|
} from 'src/app/data/filter-rule'
|
||||||
import { FILTER_FULLTEXT_MORELIKE } from 'src/app/data/filter-rule-type'
|
import { FILTER_FULLTEXT_MORELIKE } 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'
|
||||||
@ -54,15 +58,36 @@ export class DocumentListComponent implements OnInit, OnDestroy {
|
|||||||
displayMode = 'smallCards' // largeCards, smallCards, details
|
displayMode = 'smallCards' // largeCards, smallCards, details
|
||||||
|
|
||||||
unmodifiedFilterRules: FilterRule[] = []
|
unmodifiedFilterRules: FilterRule[] = []
|
||||||
|
private unmodifiedSavedView: PaperlessSavedView
|
||||||
|
|
||||||
private unsubscribeNotifier: Subject<any> = new Subject()
|
private unsubscribeNotifier: Subject<any> = new Subject()
|
||||||
|
|
||||||
|
get savedViewIsModified(): boolean {
|
||||||
|
if (!this.list.activeSavedViewId || !this.unmodifiedSavedView) return false
|
||||||
|
else {
|
||||||
|
return (
|
||||||
|
this.unmodifiedSavedView.sort_field !== this.list.sortField ||
|
||||||
|
this.unmodifiedSavedView.sort_reverse !== this.list.sortReverse ||
|
||||||
|
filterRulesDiffer(
|
||||||
|
this.unmodifiedSavedView.filter_rules,
|
||||||
|
this.list.filterRules
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
get isFiltered() {
|
get isFiltered() {
|
||||||
return this.list.filterRules?.length > 0
|
return this.list.filterRules?.length > 0
|
||||||
}
|
}
|
||||||
|
|
||||||
getTitle() {
|
getTitle() {
|
||||||
return this.list.activeSavedViewTitle || $localize`Documents`
|
let title = this.list.activeSavedViewTitle
|
||||||
|
if (title && this.savedViewIsModified) {
|
||||||
|
title += '*'
|
||||||
|
} else if (!title) {
|
||||||
|
title = $localize`Documents`
|
||||||
|
}
|
||||||
|
return title
|
||||||
}
|
}
|
||||||
|
|
||||||
getSortFields() {
|
getSortFields() {
|
||||||
@ -122,7 +147,7 @@ export class DocumentListComponent implements OnInit, OnDestroy {
|
|||||||
this.router.navigate(['404'])
|
this.router.navigate(['404'])
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
this.unmodifiedSavedView = view
|
||||||
this.list.activateSavedViewWithQueryParams(
|
this.list.activateSavedViewWithQueryParams(
|
||||||
view,
|
view,
|
||||||
convertToParamMap(this.route.snapshot.queryParams)
|
convertToParamMap(this.route.snapshot.queryParams)
|
||||||
@ -165,7 +190,8 @@ export class DocumentListComponent implements OnInit, OnDestroy {
|
|||||||
this.savedViewService
|
this.savedViewService
|
||||||
.patch(savedView)
|
.patch(savedView)
|
||||||
.pipe(first())
|
.pipe(first())
|
||||||
.subscribe((result) => {
|
.subscribe((view) => {
|
||||||
|
this.unmodifiedSavedView = view
|
||||||
this.toastService.showInfo(
|
this.toastService.showInfo(
|
||||||
$localize`View "${this.list.activeSavedViewTitle}" saved successfully.`
|
$localize`View "${this.list.activeSavedViewTitle}" saved successfully.`
|
||||||
)
|
)
|
||||||
@ -179,6 +205,7 @@ export class DocumentListComponent implements OnInit, OnDestroy {
|
|||||||
.getCached(viewID)
|
.getCached(viewID)
|
||||||
.pipe(first())
|
.pipe(first())
|
||||||
.subscribe((view) => {
|
.subscribe((view) => {
|
||||||
|
this.unmodifiedSavedView = view
|
||||||
this.list.activateSavedView(view)
|
this.list.activateSavedView(view)
|
||||||
this.list.reload()
|
this.list.reload()
|
||||||
})
|
})
|
||||||
|
@ -225,10 +225,7 @@ export class DocumentListViewService {
|
|||||||
let base = ['/documents']
|
let base = ['/documents']
|
||||||
this.router.navigate(base, {
|
this.router.navigate(base, {
|
||||||
queryParams: paramsFromViewState(activeListViewState),
|
queryParams: paramsFromViewState(activeListViewState),
|
||||||
replaceUrl: !(
|
replaceUrl: !this.router.routerState.snapshot.url.includes('?'), // in case navigating from params-less /documents
|
||||||
this.router.routerState.snapshot.url.includes('?') ||
|
|
||||||
this.router.routerState.snapshot.url.includes('/view/')
|
|
||||||
), // in case navigating from params-less /documents or /view
|
|
||||||
})
|
})
|
||||||
} else if (this._activeSavedViewId) {
|
} else if (this._activeSavedViewId) {
|
||||||
this.router.navigate([], {
|
this.router.navigate([], {
|
||||||
@ -279,7 +276,6 @@ export class DocumentListViewService {
|
|||||||
) {
|
) {
|
||||||
this.activeListViewState.sortField = 'created'
|
this.activeListViewState.sortField = 'created'
|
||||||
}
|
}
|
||||||
this._activeSavedViewId = null
|
|
||||||
this.activeListViewState.filterRules = filterRules
|
this.activeListViewState.filterRules = filterRules
|
||||||
this.reload()
|
this.reload()
|
||||||
this.reduceSelectionToFilter()
|
this.reduceSelectionToFilter()
|
||||||
@ -293,7 +289,6 @@ export class DocumentListViewService {
|
|||||||
set sortField(field: string) {
|
set sortField(field: string) {
|
||||||
this.activeListViewState.sortField = field
|
this.activeListViewState.sortField = field
|
||||||
this.reload()
|
this.reload()
|
||||||
this._activeSavedViewId = null
|
|
||||||
this.saveDocumentListView()
|
this.saveDocumentListView()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -304,7 +299,6 @@ export class DocumentListViewService {
|
|||||||
set sortReverse(reverse: boolean) {
|
set sortReverse(reverse: boolean) {
|
||||||
this.activeListViewState.sortReverse = reverse
|
this.activeListViewState.sortReverse = reverse
|
||||||
this.reload()
|
this.reload()
|
||||||
this._activeSavedViewId = null
|
|
||||||
this.saveDocumentListView()
|
this.saveDocumentListView()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -393,6 +393,10 @@ textarea,
|
|||||||
background-color: var(--bs-primary);
|
background-color: var(--bs-primary);
|
||||||
color: var(--pngx-primary-text-contrast);
|
color: var(--pngx-primary-text-contrast);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.disabled, &:disabled {
|
||||||
|
opacity: 50%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user