mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
32 lines
1.5 KiB
TypeScript
32 lines
1.5 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, Resolve, RouterStateSnapshot } from '@angular/router';
|
|
import { Observable } from 'rxjs';
|
|
import { find } from 'rxjs/operators';
|
|
import { RemoteData } from '../../../core/data/remote-data';
|
|
import { BitstreamFormat } from '../../../core/shared/bitstream-format.model';
|
|
import { BitstreamFormatDataService } from '../../../core/data/bitstream-format-data.service';
|
|
import { hasValue } from '../../../shared/empty.util';
|
|
|
|
/**
|
|
* This class represents a resolver that requests a specific bitstreamFormat before the route is activated
|
|
*/
|
|
@Injectable()
|
|
export class BitstreamFormatsResolver implements Resolve<RemoteData<BitstreamFormat>> {
|
|
constructor(private bitstreamFormatDataService: BitstreamFormatDataService) {
|
|
}
|
|
|
|
/**
|
|
* Method for resolving an bitstreamFormat based on the parameters in the current route
|
|
* @param {ActivatedRouteSnapshot} route The current ActivatedRouteSnapshot
|
|
* @param {RouterStateSnapshot} state The current RouterStateSnapshot
|
|
* @returns Observable<<RemoteData<BitstreamFormat>> Emits the found bitstreamFormat based on the parameters in the current route,
|
|
* or an error if something went wrong
|
|
*/
|
|
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<RemoteData<BitstreamFormat>> {
|
|
return this.bitstreamFormatDataService.findById(route.params.id)
|
|
.pipe(
|
|
find((RD) => hasValue(RD.error) || RD.hasSucceeded),
|
|
);
|
|
}
|
|
}
|