mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
rxjs compatibility
This commit is contained in:
parent
cae4d3fae3
commit
7c2ae129d7
@ -143,8 +143,8 @@ export class DocumentListViewService {
|
|||||||
activeListViewState.sortReverse,
|
activeListViewState.sortReverse,
|
||||||
activeListViewState.filterRules
|
activeListViewState.filterRules
|
||||||
)
|
)
|
||||||
.subscribe(
|
.subscribe({
|
||||||
(result) => {
|
next: (result) => {
|
||||||
this.isReloading = false
|
this.isReloading = false
|
||||||
activeListViewState.collectionSize = result.count
|
activeListViewState.collectionSize = result.count
|
||||||
activeListViewState.documents = result.results
|
activeListViewState.documents = result.results
|
||||||
@ -153,7 +153,7 @@ export class DocumentListViewService {
|
|||||||
}
|
}
|
||||||
this.rangeSelectionAnchorIndex = this.lastRangeSelectionToIndex = null
|
this.rangeSelectionAnchorIndex = this.lastRangeSelectionToIndex = null
|
||||||
},
|
},
|
||||||
(error) => {
|
error: (error) => {
|
||||||
this.isReloading = false
|
this.isReloading = false
|
||||||
if (activeListViewState.currentPage != 1 && error.status == 404) {
|
if (activeListViewState.currentPage != 1 && error.status == 404) {
|
||||||
// this happens when applying a filter: the current page might not be available anymore due to the reduced result set.
|
// this happens when applying a filter: the current page might not be available anymore due to the reduced result set.
|
||||||
@ -162,8 +162,8 @@ export class DocumentListViewService {
|
|||||||
} else {
|
} else {
|
||||||
this.error = error.error
|
this.error = error.error
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
)
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
set filterRules(filterRules: FilterRule[]) {
|
set filterRules(filterRules: FilterRule[]) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user