mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 22:43:03 +00:00
38 lines
1.6 KiB
TypeScript
38 lines
1.6 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, Resolve, RouterStateSnapshot } from '@angular/router';
|
|
import { Observable } from 'rxjs';
|
|
import { RemoteData } from '../core/data/remote-data';
|
|
import { ItemDataService } from '../core/data/item-data.service';
|
|
import { Item } from '../core/shared/item.model';
|
|
import { hasValue } from '../shared/empty.util';
|
|
import { find } from 'rxjs/operators';
|
|
import { followLink } from '../shared/utils/follow-link-config.model';
|
|
import { FindListOptions } from '../core/data/request.models';
|
|
|
|
/**
|
|
* This class represents a resolver that requests a specific item before the route is activated
|
|
*/
|
|
@Injectable()
|
|
export class ItemPageResolver implements Resolve<RemoteData<Item>> {
|
|
constructor(private itemService: ItemDataService) {
|
|
}
|
|
|
|
/**
|
|
* Method for resolving an item based on the parameters in the current route
|
|
* @param {ActivatedRouteSnapshot} route The current ActivatedRouteSnapshot
|
|
* @param {RouterStateSnapshot} state The current RouterStateSnapshot
|
|
* @returns Observable<<RemoteData<Item>> Emits the found item based on the parameters in the current route,
|
|
* or an error if something went wrong
|
|
*/
|
|
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<RemoteData<Item>> {
|
|
return this.itemService.findById(route.params.id,
|
|
followLink('owningCollection'),
|
|
followLink('bundles', new FindListOptions(), true, followLink('bitstreams')),
|
|
followLink('relationships'),
|
|
followLink('version', undefined, true, followLink('versionhistory')),
|
|
).pipe(
|
|
find((RD) => hasValue(RD.error) || RD.hasSucceeded),
|
|
);
|
|
}
|
|
}
|