import {Component, OnDestroy, OnInit} from "@angular/core"; import {properties} from "../../../../environments/environment"; import {ActivatedRoute, Router} from "@angular/router"; import {Meta, Title} from "@angular/platform-browser"; import {SEOService} from "../../sharedComponents/SEO/SEO.service"; import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component"; import {Subscriber} from "rxjs"; import {StakeholderBaseComponent} from "../../monitor-admin/utils/stakeholder-base.component"; @Component({ selector: 'indicator-themes-page', template: `

Indicator Themes.

Indicator themes that we are covering in the Monitor dashboards.

This is the current set of indicator themes we cover. We’ll keep enriching it as new requests and data are coming into the OpenAIRE Graph. We are at your disposal, should you have any recommendations!

Check out the indicator pages (for funders, research institutions and research initiatives) for the specific indicators for each type of dashboard, and the methodology and terminology page on how we produce the metrics.

Indicator Themes.

Indicator themes that we are covering in the Monitor dashboards.

This is the current set of indicator themes we cover. We’ll keep enriching it as new requests and data are coming into the OpenAIRE Graph. We are at your disposal, should you have any recommendations!

Check out the indicator pages (for {{entities.funders}}, {{entities.organizations}} and {{entities.ris}}) for the specific indicators for each type of dashboard, and the methodology and terminology page on how we produce the metrics.

` }) export class IndicatorThemesComponent extends StakeholderBaseComponent implements OnInit { public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources - Themes'}]; constructor(protected _router: Router, protected _meta: Meta, protected _title: Title, protected seoService: SEOService, protected _route: ActivatedRoute) { super(); } ngOnInit() { this.subscriptions.push(this._route.params.subscribe(params => { this.title = "Monitor | Indicator Themes"; this.description = "Monitor | Indicator Themes"; this.setMetadata(); this.breadcrumbs[0].route = '/' + (params['stakeholder']?params['stakeholder']:''); this.breadcrumbs[0].name = (params['stakeholder']?'dashboard':'home'); })); } }