mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
112 lines
4.4 KiB
TypeScript
112 lines
4.4 KiB
TypeScript
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { BehaviorSubject, combineLatest as observableCombineLatest, Observable, Subject } from 'rxjs';
|
|
import { filter, map, mergeMap, startWith, switchMap, take, tap } from 'rxjs/operators';
|
|
import { PaginatedSearchOptions } from '../shared/search/paginated-search-options.model';
|
|
import { SearchService } from '../core/shared/search/search.service';
|
|
import { SortDirection, SortOptions } from '../core/cache/models/sort-options.model';
|
|
import { CollectionDataService } from '../core/data/collection-data.service';
|
|
import { PaginatedList } from '../core/data/paginated-list.model';
|
|
import { RemoteData } from '../core/data/remote-data';
|
|
|
|
import { MetadataService } from '../core/metadata/metadata.service';
|
|
import { Bitstream } from '../core/shared/bitstream.model';
|
|
|
|
import { Collection } from '../core/shared/collection.model';
|
|
import { DSpaceObjectType } from '../core/shared/dspace-object-type.model';
|
|
import { Item } from '../core/shared/item.model';
|
|
import { getFirstSucceededRemoteData, redirectOn4xx, toDSpaceObjectListRD } from '../core/shared/operators';
|
|
|
|
import { fadeIn, fadeInOut } from '../shared/animations/fade';
|
|
import { hasValue, isNotEmpty } from '../shared/empty.util';
|
|
import { PaginationComponentOptions } from '../shared/pagination/pagination-component-options.model';
|
|
import { AuthService } from '../core/auth/auth.service';
|
|
import { PaginationService } from '../core/pagination/pagination.service';
|
|
|
|
@Component({
|
|
selector: 'ds-collection-page',
|
|
styleUrls: ['./collection-page.component.scss'],
|
|
templateUrl: './collection-page.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
animations: [
|
|
fadeIn,
|
|
fadeInOut
|
|
]
|
|
})
|
|
export class CollectionPageComponent implements OnInit {
|
|
collectionRD$: Observable<RemoteData<Collection>>;
|
|
itemRD$: Observable<RemoteData<PaginatedList<Item>>>;
|
|
logoRD$: Observable<RemoteData<Bitstream>>;
|
|
paginationConfig: PaginationComponentOptions;
|
|
sortConfig: SortOptions;
|
|
private paginationChanges$: Subject<{
|
|
paginationConfig: PaginationComponentOptions,
|
|
sortConfig: SortOptions
|
|
}>;
|
|
|
|
constructor(
|
|
private collectionDataService: CollectionDataService,
|
|
private searchService: SearchService,
|
|
private metadata: MetadataService,
|
|
private route: ActivatedRoute,
|
|
private router: Router,
|
|
private authService: AuthService,
|
|
private paginationService: PaginationService,
|
|
|
|
) {
|
|
this.paginationConfig = new PaginationComponentOptions();
|
|
this.paginationConfig.id = 'cp';
|
|
this.paginationConfig.pageSize = 5;
|
|
this.paginationConfig.currentPage = 1;
|
|
this.sortConfig = new SortOptions('dc.date.accessioned', SortDirection.DESC);
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.collectionRD$ = this.route.data.pipe(
|
|
map((data) => data.dso as RemoteData<Collection>),
|
|
redirectOn4xx(this.router, this.authService),
|
|
take(1)
|
|
);
|
|
this.logoRD$ = this.collectionRD$.pipe(
|
|
map((rd: RemoteData<Collection>) => rd.payload),
|
|
filter((collection: Collection) => hasValue(collection)),
|
|
mergeMap((collection: Collection) => collection.logo)
|
|
);
|
|
|
|
this.paginationChanges$ = new BehaviorSubject({
|
|
paginationConfig: this.paginationConfig,
|
|
sortConfig: this.sortConfig
|
|
});
|
|
|
|
const currentPagination$ = this.paginationService.getCurrentPagination(this.paginationConfig.id, this.paginationConfig);
|
|
const currentSort$ = this.paginationService.getCurrentSort(this.paginationConfig.id, this.sortConfig);
|
|
|
|
this.itemRD$ = observableCombineLatest([currentPagination$, currentSort$]).pipe(
|
|
switchMap(([currentPagination, currentSort ]) => this.collectionRD$.pipe(
|
|
getFirstSucceededRemoteData(),
|
|
map((rd) => rd.payload.id),
|
|
switchMap((id: string) => {
|
|
return this.searchService.search(
|
|
new PaginatedSearchOptions({
|
|
scope: id,
|
|
pagination: currentPagination,
|
|
sort: currentSort,
|
|
dsoTypes: [DSpaceObjectType.ITEM]
|
|
})).pipe(toDSpaceObjectListRD()) as Observable<RemoteData<PaginatedList<Item>>>;
|
|
}),
|
|
startWith(undefined) // Make sure switching pages shows loading component
|
|
)
|
|
)
|
|
);
|
|
|
|
this.route.queryParams.pipe(take(1)).subscribe((params) => {
|
|
this.metadata.processRemoteData(this.collectionRD$);
|
|
});
|
|
}
|
|
|
|
isNotEmpty(object: any) {
|
|
return isNotEmpty(object);
|
|
}
|
|
|
|
}
|