mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { DSOBreadcrumbsService } from './dso-breadcrumbs.service';
|
|
import { DSOBreadcrumbResolver } from './dso-breadcrumb.resolver';
|
|
import { CommunityDataService } from '../data/community-data.service';
|
|
import { Community } from '../shared/community.model';
|
|
import { followLink, FollowLinkConfig } from '../../shared/utils/follow-link-config.model';
|
|
|
|
/**
|
|
* The class that resolves the BreadcrumbConfig object for a Community
|
|
*/
|
|
@Injectable()
|
|
export class CommunityBreadcrumbResolver extends DSOBreadcrumbResolver<Community> {
|
|
constructor(protected breadcrumbService: DSOBreadcrumbsService, protected dataService: CommunityDataService) {
|
|
super(breadcrumbService, dataService);
|
|
}
|
|
|
|
/**
|
|
* Method that returns the follow links to already resolve
|
|
* The self links defined in this list are expected to be requested somewhere in the near future
|
|
* Requesting them as embeds will limit the number of requests
|
|
*/
|
|
get followLinks(): Array<FollowLinkConfig<Community>> {
|
|
return [
|
|
followLink('parentCommunity')
|
|
];
|
|
}
|
|
}
|