mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
57 lines
2.4 KiB
TypeScript
57 lines
2.4 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { ActivatedRouteSnapshot, Router, 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 { Store } from '@ngrx/store';
|
|
import { map } from 'rxjs/operators';
|
|
import { hasValue } from '../shared/empty.util';
|
|
import { getItemPageRoute } from './item-page-routing-paths';
|
|
import { ItemResolver } from './item.resolver';
|
|
|
|
/**
|
|
* This class represents a resolver that requests a specific item before the route is activated and will redirect to the
|
|
* entity page
|
|
*/
|
|
@Injectable()
|
|
export class ItemPageResolver extends ItemResolver {
|
|
constructor(
|
|
protected itemService: ItemDataService,
|
|
protected store: Store<any>,
|
|
protected router: Router
|
|
) {
|
|
super(itemService, store, router);
|
|
}
|
|
|
|
/**
|
|
* 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 super.resolve(route, state).pipe(
|
|
map((rd: RemoteData<Item>) => {
|
|
if (rd.hasSucceeded && hasValue(rd.payload)) {
|
|
const thisRoute = state.url;
|
|
|
|
// Angular uses a custom function for encodeURIComponent, (e.g. it doesn't encode commas
|
|
// or semicolons) and thisRoute has been encoded with that function. If we want to compare
|
|
// it with itemRoute, we have to run itemRoute through Angular's version as well to ensure
|
|
// the same characters are encoded the same way.
|
|
const itemRoute = this.router.parseUrl(getItemPageRoute(rd.payload)).toString();
|
|
|
|
if (!thisRoute.startsWith(itemRoute)) {
|
|
const itemId = rd.payload.uuid;
|
|
const subRoute = thisRoute.substring(thisRoute.indexOf(itemId) + itemId.length, thisRoute.length);
|
|
this.router.navigateByUrl(itemRoute + subRoute);
|
|
}
|
|
}
|
|
return rd;
|
|
})
|
|
);
|
|
}
|
|
}
|