rxjs compatibility

This commit is contained in:
Michael Shamoon 2022-03-26 14:18:16 -07:00
parent cae4d3fae3
commit 7c2ae129d7

View File

@ -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[]) {