mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: saved view permissions fixes (#7672)
This commit is contained in:
parent
f1559b7108
commit
bee963c23d
@ -332,7 +332,7 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li [ngbNavItem]="SettingsNavIDs.SavedViews">
|
<li [ngbNavItem]="SettingsNavIDs.SavedViews" *pngxIfPermissions="{ action: PermissionAction.Change, type: PermissionType.SavedView }">
|
||||||
<a ngbNavLink i18n>Saved views</a>
|
<a ngbNavLink i18n>Saved views</a>
|
||||||
<ng-template ngbNavContent>
|
<ng-template ngbNavContent>
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ describe('AppFrameComponent', () => {
|
|||||||
{
|
{
|
||||||
provide: SavedViewService,
|
provide: SavedViewService,
|
||||||
useValue: {
|
useValue: {
|
||||||
initialize: () => {},
|
reload: () => {},
|
||||||
listAll: () =>
|
listAll: () =>
|
||||||
of({
|
of({
|
||||||
all: [saved_views.map((v) => v.id)],
|
all: [saved_views.map((v) => v.id)],
|
||||||
@ -170,7 +170,7 @@ describe('AppFrameComponent', () => {
|
|||||||
.mockReturnValue('Hello World')
|
.mockReturnValue('Hello World')
|
||||||
jest.spyOn(permissionsService, 'currentUserCan').mockReturnValue(true)
|
jest.spyOn(permissionsService, 'currentUserCan').mockReturnValue(true)
|
||||||
|
|
||||||
savedViewSpy = jest.spyOn(savedViewService, 'initialize')
|
savedViewSpy = jest.spyOn(savedViewService, 'reload')
|
||||||
|
|
||||||
fixture = TestBed.createComponent(AppFrameComponent)
|
fixture = TestBed.createComponent(AppFrameComponent)
|
||||||
component = fixture.componentInstance
|
component = fixture.componentInstance
|
||||||
|
@ -73,7 +73,7 @@ export class AppFrameComponent
|
|||||||
PermissionType.SavedView
|
PermissionType.SavedView
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
this.savedViewService.initialize()
|
this.savedViewService.reload()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ describe(`Additional service tests for SavedViewService`, () => {
|
|||||||
let settingsService
|
let settingsService
|
||||||
|
|
||||||
it('should retrieve saved views and sort them', () => {
|
it('should retrieve saved views and sort them', () => {
|
||||||
service.initialize()
|
service.reload()
|
||||||
const req = httpTestingController.expectOne(
|
const req = httpTestingController.expectOne(
|
||||||
`${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000`
|
`${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000`
|
||||||
)
|
)
|
||||||
@ -70,7 +70,7 @@ describe(`Additional service tests for SavedViewService`, () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('should gracefully handle errors', () => {
|
it('should gracefully handle errors', () => {
|
||||||
service.initialize()
|
service.reload()
|
||||||
const req = httpTestingController.expectOne(
|
const req = httpTestingController.expectOne(
|
||||||
`${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000`
|
`${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000`
|
||||||
)
|
)
|
||||||
|
@ -6,6 +6,7 @@ import { SavedView } from 'src/app/data/saved-view'
|
|||||||
import { AbstractPaperlessService } from './abstract-paperless-service'
|
import { AbstractPaperlessService } from './abstract-paperless-service'
|
||||||
import { SettingsService } from '../settings.service'
|
import { SettingsService } from '../settings.service'
|
||||||
import { SETTINGS_KEYS } from 'src/app/data/ui-settings'
|
import { SETTINGS_KEYS } from 'src/app/data/ui-settings'
|
||||||
|
import { Results } from 'src/app/data/results'
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
@ -21,22 +22,31 @@ export class SavedViewService extends AbstractPaperlessService<SavedView> {
|
|||||||
super(http, 'saved_views')
|
super(http, 'saved_views')
|
||||||
}
|
}
|
||||||
|
|
||||||
public initialize() {
|
public list(
|
||||||
this.reload()
|
page?: number,
|
||||||
|
pageSize?: number,
|
||||||
|
sortField?: string,
|
||||||
|
sortReverse?: boolean,
|
||||||
|
extraParams?: any
|
||||||
|
): Observable<Results<SavedView>> {
|
||||||
|
return super.list(page, pageSize, sortField, sortReverse, extraParams).pipe(
|
||||||
|
tap({
|
||||||
|
next: (r) => {
|
||||||
|
this.savedViews = r.results
|
||||||
|
this.loading = false
|
||||||
|
this.settingsService.dashboardIsEmpty =
|
||||||
|
this.dashboardViews.length === 0
|
||||||
|
},
|
||||||
|
error: () => {
|
||||||
|
this.loading = false
|
||||||
|
this.settingsService.dashboardIsEmpty = true
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private reload() {
|
public reload() {
|
||||||
this.listAll().subscribe({
|
this.listAll().subscribe()
|
||||||
next: (r) => {
|
|
||||||
this.savedViews = r.results
|
|
||||||
this.loading = false
|
|
||||||
this.settingsService.dashboardIsEmpty = this.dashboardViews.length === 0
|
|
||||||
},
|
|
||||||
error: () => {
|
|
||||||
this.loading = false
|
|
||||||
this.settingsService.dashboardIsEmpty = true
|
|
||||||
},
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get allViews() {
|
get allViews() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user