Skip to content
Snippets Groups Projects
Commit ba8be3f5 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

55693: Temporary pagination fix (remove url params on tab change)

parent 7b74d9c0
No related branches found
No related tags found
No related merge requests found
......@@ -15,14 +15,15 @@
</div>
</div>
<ngb-tabset>
<ngb-tabset (tabChange)="tabChange($event)">
<ngb-tab title="{{'collection.item-mapper.tabs.browse' | translate}}">
<ng-template ngbTabContent>
<div class="mt-2">
<ds-viewable-collection
[config]="(searchOptions$ | async)?.pagination"
[sortConfig]="(searchOptions$ | async)?.sort"
[objects]="collectionItemsRD$ | async">
[objects]="collectionItemsRD$ | async"
[hideGear]="true">
</ds-viewable-collection>
</div>
</ng-template>
......
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { fadeIn, fadeInOut } from '../../shared/animations/fade';
import { CollectionDataService } from '../../core/data/collection-data.service';
import { ActivatedRoute, PRIMARY_OUTLET, Router, UrlSegmentGroup } from '@angular/router';
import { RemoteData } from '../../core/data/remote-data';
import { Observable } from 'rxjs/Observable';
......@@ -8,16 +7,14 @@ import { Collection } from '../../core/shared/collection.model';
import { SearchConfigurationService } from '../../+search-page/search-service/search-configuration.service';
import { PaginatedSearchOptions } from '../../+search-page/paginated-search-options.model';
import { PaginatedList } from '../../core/data/paginated-list';
import { Item } from '../../core/shared/item.model';
import { combineLatest, filter, flatMap, map, switchMap, take, tap } from 'rxjs/operators';
import { filterSuccessfulResponses, getSucceededRemoteData, toDSpaceObjectListRD } from '../../core/shared/operators';
import { flatMap, map, switchMap } from 'rxjs/operators';
import { getSucceededRemoteData, toDSpaceObjectListRD } from '../../core/shared/operators';
import { SearchService } from '../../+search-page/search-service/search.service';
import { DSpaceObject } from '../../core/shared/dspace-object.model';
import { DSpaceObjectType } from '../../core/shared/dspace-object-type.model';
import { SortDirection, SortOptions } from '../../core/cache/models/sort-options.model';
import { NotificationsService } from '../../shared/notifications/notifications.service';
import { ItemDataService } from '../../core/data/item-data.service';
import { forkJoin } from 'rxjs/observable/forkJoin';
import { RestResponse } from '../../core/cache/response-cache.models';
@Component({
......@@ -68,7 +65,6 @@ export class CollectionItemMapperComponent implements OnInit {
);
this.mappingItemsRD$ = this.searchOptions$.pipe(
flatMap((options: PaginatedSearchOptions) => {
options.sort.field = 'dc.title';
return this.searchService.search(Object.assign(options, {
scope: undefined,
dsoType: DSpaceObjectType.ITEM,
......@@ -98,6 +94,15 @@ export class CollectionItemMapperComponent implements OnInit {
});
}
tabChange(event) {
// TODO: Fix tabs to maintain their own pagination options (once the current pagination system is improved)
// Temporary solution: Clear url params when changing tabs
if (this.router.url.indexOf('?') > -1) {
const url: string = this.router.url.substring(0, this.router.url.indexOf('?'));
this.router.navigateByUrl(url);
}
}
getCurrentUrl(): string {
const urlTree = this.router.parseUrl(this.router.url);
const g: UrlSegmentGroup = urlTree.root.children[PRIMARY_OUTLET];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment