mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Prettier code cleanup for PR #273
This commit is contained in:
parent
eb55f5655f
commit
e41d75c374
@ -433,13 +433,17 @@ export class DocumentDetailComponent
|
||||
}
|
||||
|
||||
nextDoc() {
|
||||
this.documentListViewService.getNext(this.document.id).subscribe((nextDocId: number) => {
|
||||
this.documentListViewService
|
||||
.getNext(this.document.id)
|
||||
.subscribe((nextDocId: number) => {
|
||||
this.router.navigate(['documents', nextDocId])
|
||||
})
|
||||
}
|
||||
|
||||
previousDoc() {
|
||||
this.documentListViewService.getPrevious(this.document.id).subscribe((prevDocId: number) => {
|
||||
this.documentListViewService
|
||||
.getPrevious(this.document.id)
|
||||
.subscribe((prevDocId: number) => {
|
||||
this.router.navigate(['documents', prevDocId])
|
||||
})
|
||||
}
|
||||
|
@ -282,7 +282,7 @@ export class DocumentListViewService {
|
||||
|
||||
hasPrevious(doc: number) {
|
||||
if (this.documents) {
|
||||
let index = this.documents.findIndex(d => d.id == doc)
|
||||
let index = this.documents.findIndex((d) => d.id == doc)
|
||||
return index != -1 && !(index == 0 && this.currentPage == 1)
|
||||
}
|
||||
}
|
||||
@ -311,10 +311,9 @@ export class DocumentListViewService {
|
||||
}
|
||||
|
||||
getPrevious(currentDocId: number): Observable<number> {
|
||||
return new Observable(prevDocId => {
|
||||
return new Observable((prevDocId) => {
|
||||
if (this.documents != null) {
|
||||
|
||||
let index = this.documents.findIndex(d => d.id == currentDocId)
|
||||
let index = this.documents.findIndex((d) => d.id == currentDocId)
|
||||
|
||||
if (index != 0) {
|
||||
prevDocId.next(this.documents[index - 1].id)
|
||||
|
Loading…
x
Reference in New Issue
Block a user