2022-08-29 15:57:04 +02:00
|
|
|
|
import {Component, OnDestroy, OnInit} from "@angular/core";
|
2022-08-05 10:34:37 +02:00
|
|
|
|
import {properties} from "../../../../environments/environment";
|
2022-08-05 14:50:53 +02:00
|
|
|
|
import {ActivatedRoute, Router} from "@angular/router";
|
2022-08-05 10:34:37 +02:00
|
|
|
|
import {Meta, Title} from "@angular/platform-browser";
|
|
|
|
|
import {SEOService} from "../../sharedComponents/SEO/SEO.service";
|
2022-08-29 15:30:12 +02:00
|
|
|
|
import {Breadcrumb} from "../../utils/breadcrumbs/breadcrumbs.component";
|
2022-08-29 15:57:04 +02:00
|
|
|
|
import {Subscriber} from "rxjs";
|
2023-11-13 14:00:05 +01:00
|
|
|
|
import {StakeholderBaseComponent} from "../../monitor-admin/utils/stakeholder-base.component";
|
2022-08-05 10:34:37 +02:00
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'indicator-themes-page',
|
|
|
|
|
template: `
|
2022-11-28 09:58:20 +01:00
|
|
|
|
<div class="uk-visible@m">
|
|
|
|
|
<div class="uk-container uk-container-large uk-section uk-section-small uk-padding-remove-bottom">
|
|
|
|
|
<div class="uk-padding-small uk-padding-remove-horizontal">
|
|
|
|
|
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="uk-container uk-container-large uk-section">
|
|
|
|
|
<h1>Indicator Themes<span class="uk-text-primary">.</span></h1>
|
|
|
|
|
<div class="uk-section">
|
|
|
|
|
<div class="uk-grid uk-grid-large uk-flex-middle" uk-grid>
|
|
|
|
|
<div class="uk-width-3-5">
|
|
|
|
|
<img src="assets/common-assets/monitor-assets/indicator-themes-circle.png">
|
2022-08-05 10:34:37 +02:00
|
|
|
|
</div>
|
2022-11-28 09:58:20 +01:00
|
|
|
|
<div class="uk-width-expand">
|
|
|
|
|
<div>
|
|
|
|
|
<h5>Indicator themes that we are covering in the Monitor dashboards.</h5>
|
|
|
|
|
<p>
|
2023-05-15 15:47:25 +02:00
|
|
|
|
This is the current set of indicator themes we cover. We’ll keep enriching it as new requests and data are coming into the <a href="https://graph.openaire.eu" class="text-graph" target="_blank">OpenAIRE Graph</a>. We are at your disposal, should you have any recommendations!
|
2022-11-28 09:58:20 +01:00
|
|
|
|
</p>
|
|
|
|
|
<p>
|
2023-11-14 09:17:18 +01:00
|
|
|
|
Check out the indicator pages (for <a [routerLink]="['../funder']" [relativeTo]="_route">funders</a>,
|
|
|
|
|
<a [routerLink]="['../organization']" [relativeTo]="_route">research institutions</a> and
|
|
|
|
|
<a [routerLink]="['../ri']" [relativeTo]="_route">research initiatives</a>)
|
|
|
|
|
for the specific indicators for each type of dashboard, and the <a [routerLink]="['../../methodology']" [relativeTo]="_route">methodology and terminology</a> page on how we produce the metrics.
|
2022-11-28 09:58:20 +01:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="uk-hidden@m">
|
|
|
|
|
<div class="uk-section uk-container uk-container-large">
|
|
|
|
|
<h1 class="uk-heading-small uk-text-center uk-padding-small uk-padding-remove-vertical">Indicator Themes<span class="uk-text-primary">.</span></h1>
|
|
|
|
|
<div class="uk-text-center uk-margin-large-top">
|
|
|
|
|
<div class="uk-padding-small uk-padding-remove-vertical">
|
|
|
|
|
<img src="assets/common-assets/monitor-assets/indicator-themes-circle.png">
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<h5 class="uk-margin-large-top uk-margin-large-bottom">Indicator themes that we are covering in the Monitor dashboards.</h5>
|
|
|
|
|
<p>
|
2023-05-15 15:47:25 +02:00
|
|
|
|
This is the current set of indicator themes we cover. We’ll keep enriching it as new requests and data are coming into the <a href="https://graph.openaire.eu" class="text-graph" target="_blank">OpenAIRE Graph</a>. We are at your disposal, should you have any recommendations!
|
2022-11-28 09:58:20 +01:00
|
|
|
|
</p>
|
|
|
|
|
<p>
|
2023-11-14 09:17:18 +01:00
|
|
|
|
Check out the indicator pages (for <a [routerLink]="['../funder']" [relativeTo]="_route" class="uk-text-lowercase">{{entities.funders}}</a>,
|
|
|
|
|
<a [routerLink]="['../organization']" [relativeTo]="_route" class="uk-text-lowercase">{{entities.organizations}}</a> and
|
|
|
|
|
<a [routerLink]="['../ri']" [relativeTo]="_route" class="uk-text-lowercase">{{entities.ris}}</a>)
|
|
|
|
|
for the specific indicators for each type of dashboard, and the <a [routerLink]="['../../methodology']" [relativeTo]="_route">methodology and terminology</a> page on how we produce the metrics.
|
2022-11-28 09:58:20 +01:00
|
|
|
|
</p>
|
2022-08-05 10:34:37 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`
|
|
|
|
|
})
|
2023-11-13 14:00:05 +01:00
|
|
|
|
export class IndicatorThemesComponent extends StakeholderBaseComponent implements OnInit {
|
2022-09-19 15:47:52 +02:00
|
|
|
|
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Resources - Themes'}];
|
2022-08-05 10:34:37 +02:00
|
|
|
|
|
2023-11-13 14:00:05 +01:00
|
|
|
|
constructor(protected _router: Router,
|
|
|
|
|
protected _meta: Meta,
|
|
|
|
|
protected _title: Title,
|
|
|
|
|
protected seoService: SEOService,
|
|
|
|
|
protected _route: ActivatedRoute) {
|
|
|
|
|
super();
|
2022-08-05 10:34:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
2023-11-13 14:00:05 +01:00
|
|
|
|
this.subscriptions.push(this._route.params.subscribe(params => {
|
|
|
|
|
this.title = "Monitor | Indicator Themes";
|
|
|
|
|
this.description = "Monitor | Indicator Themes";
|
|
|
|
|
this.setMetadata();
|
2022-08-29 15:57:04 +02:00
|
|
|
|
this.breadcrumbs[0].route = '/' + (params['stakeholder']?params['stakeholder']:'');
|
2022-09-06 16:07:10 +02:00
|
|
|
|
this.breadcrumbs[0].name = (params['stakeholder']?'dashboard':'home');
|
2022-08-29 15:57:04 +02:00
|
|
|
|
}));
|
|
|
|
|
}
|
2022-08-05 10:34:37 +02:00
|
|
|
|
}
|