From e44ab6bf339317ea4e492c27b100ef08906bca98 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Tue, 9 Jan 2024 16:17:47 +0200 Subject: [PATCH] [master | DONE | ADDED]: about.component.ts & about.component.html & about.component.less: Added content in about page. --- .../how-it-works/about.component.html | 204 ++++++++++++++++++ .../how-it-works/about.component.less | 12 ++ .../resources/how-it-works/about.component.ts | 53 ++++- 3 files changed, 262 insertions(+), 7 deletions(-) create mode 100644 src/app/resources/how-it-works/about.component.html create mode 100644 src/app/resources/how-it-works/about.component.less diff --git a/src/app/resources/how-it-works/about.component.html b/src/app/resources/how-it-works/about.component.html new file mode 100644 index 0000000..f5a7dc2 --- /dev/null +++ b/src/app/resources/how-it-works/about.component.html @@ -0,0 +1,204 @@ + +

About

+
+ Welcome to the National Open Access Monitor, Ireland, a dynamic and innovative platform + designed to chart and foster the transition of Ireland’s scholarly output to 100% Open Access. + This project has been entrusted to OpenAIRE, + following a contract awarded through a + competitive tendering process + by the Irish Research eLibrary (IReL) in collaboration with + Education Procurement Services. +
+
+ + + This platform is currently in its pilot phase. + Over the next few months, we are dedicatedly working on enhancing data quality and expanding functionalities. + Our goal is to deliver the final product by June 2024. + This period is crucial for refining our services and ensuring that the platform meets the highest standards of excellence + and user satisfaction, please contact us with any questions or comments. + + + +

Our Mission

+
+ At the heart of this platform is the mission to provide transparent, comprehensive insights into the state of Open Access in Ireland. + It serves as a key instrument for analyzing trends, identifying challenges, + and guiding policy development towards achieving an open, accessible, and sustainable research environment. +
+
+ + +

Context

+
+ In 2022, the National Open Research Forum (NORF) awarded funding to six collaborative projects + to implement priority actions in Ireland’s National Action Plan for Open Research 2022-2030. + By building national capacity and infrastructure for open research, these projects support the visibility and impact + of Irish research and help progress Ireland’s strategic goals for research and innovation under Impact 2030. + Development of the National Open Access Monitor is one of the priority actions + and the funding for management of the project was awarded to IReL. + The tender requirements for the National Open Access Monitor and a definition for open access in this context were + both defined following consultation with national stakeholders. + The impact of the project will be to enable both point-in-time and longitudinal monitoring + of the open access status of Irish research publications as part of national implementation + and monitoring of open research practices. +
+
+ + +

About NORF

+
+ Ireland’s National Open Research Forum (NORF) was established in 2017 to drive the Irish agenda for open research. + NORF provides a space for communication, consultation and cooperation among key stakeholders + in the research system regarding strategic issues and overarching policies and procedures in open research. + NORF developed Ireland’s National Framework on the Transition to an Open Research Environment (2019) + and the National Action Plan for Open Research 2022-2030. +
+
+ + +

About IReL

+
+ IReL is the e-resource licensing consortium for Irish publicly funded higher education institutions + and the lead organisation for the Irish ORCID Consortium. + Since 2004, the IReL service (hosted by Maynooth University) has expanded from providing access + to quality peer-reviewed online research publications and index & abstracting services, + to facilitating open access publishing agreements, and managing the Irish ORCID Consortium. +
+
+ + +

About OpenAIRE

+
+ OpenAIRE AMKE is a non-profit organization established in 2018 to create a European-wide national policy + and open scholarly communication infrastructure. + OpenAIRE started as a series of European Commission projects in 2010 before incorporating + and has built extensive experience in both technical infrastructure and working within the Open Science community. + Its mission is to establish, maintain, and operate an open and sustainable scholarly communication infrastructure + and provide the necessary services, resources, and network for supporting a common European open e-research and e-science environment. + OpenAIRE modus operandi includes applying and contributing to international best practices + to meet the needs of the research community and promote Open Science. In particular, OpenAIRE + +
    +
  • Adheres to and promotes key standards like the FAIR principles.
  • +
  • Provides the OpenAIRE Guidelines + for literature repositories, data archives, and Current Research Information Systems (CRIS) managers, + which (a) adapt global standards and schemas from RDA, COUNTER, COAR, DataCite, etc., + and (b) are adopted by organisations around the world.
  • +
  • As a key partner in delivering the EOSC CORE and the EOSC Interoperability Framework, + OpenAIRE ensures interoperability with the European Open Science Cloud (EOSC).
  • +
  • Supports Open Access policies and advocacy.
  • +
  • Provides capacity building and training for the Open Science community.
  • +
+ +
+ As Ireland moves towards an open research environment, this platform signifies a commitment to transparency, + access, and the advancement of scientific communication. + It is a crucial step in supporting Ireland's alignment with broader European and global movements towards accessible and open scientific research. +
+ +
+ Discover more about this initiative in our Zenodo community, including related reports, presentations, and datasets. +
+ +
Thank you for joining us!
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+
+
+ + + + + + + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+ + + + + + + +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
\ No newline at end of file diff --git a/src/app/resources/how-it-works/about.component.less b/src/app/resources/how-it-works/about.component.less new file mode 100644 index 0000000..26ac83f --- /dev/null +++ b/src/app/resources/how-it-works/about.component.less @@ -0,0 +1,12 @@ +@import (reference) "~src/assets/openaire-theme/less/color.less"; + +.uk-width-medium { + width: 350px; +} + +@pilot-card-border-color: @info-border-color; + +.uk-card.pilot { + border: 1px solid @pilot-card-border-color; + box-shadow: none; +} \ No newline at end of file diff --git a/src/app/resources/how-it-works/about.component.ts b/src/app/resources/how-it-works/about.component.ts index a89017a..f9670f0 100644 --- a/src/app/resources/how-it-works/about.component.ts +++ b/src/app/resources/how-it-works/about.component.ts @@ -1,13 +1,52 @@ -import {Component} from "@angular/core"; +import {ChangeDetectorRef, Component} from "@angular/core"; +import {BaseComponent} from "../../openaireLibrary/sharedComponents/base/base.component"; +import {ActivatedRoute, Router} from "@angular/router"; +import {PiwikService} from "../../openaireLibrary/utils/piwik/piwik.service"; +import {Meta, Title} from "@angular/platform-browser"; +import {SEOService} from "../../openaireLibrary/sharedComponents/SEO/SEO.service"; +import {LayoutService} from "../../openaireLibrary/dashboard/sharedComponents/sidebar/layout.service"; +import {HelperService} from "../../openaireLibrary/utils/helper/helper.service"; @Component({ selector: 'about', - template: ` -
about page
- ` + templateUrl: 'about.component.html', + styleUrls: ['about.component.less'] }) -export class AboutComponent { - constructor() { - +export class AboutComponent extends BaseComponent { + title = 'About'; + description = 'About'; + tab: 'mission' | 'context' | 'norf' | 'irel' | 'openaire' = 'mission'; + contentSections: string[] = ['entities', 'inherited-and-inferred-attributes', 'constructed-attributes']; + activeSection: string; + divContents: any; + + isMobile: boolean = false; + isServer: boolean; + + constructor(protected _route: ActivatedRoute, + protected _piwikService: PiwikService, + protected _meta: Meta, + protected seoService: SEOService, + protected _title: Title, + protected _router: Router, + private cdr: ChangeDetectorRef, + private layoutService: LayoutService, + private helper: HelperService) { + super(); + } + + ngOnInit() { + this.setMetadata(); + this.subscriptions.push(this._route.fragment.subscribe(fragment => { + if(fragment) { + this.activeSection = fragment; + } else { + this.activeSection = 'mission'; + } + })); + this.layoutService.isMobile.subscribe(isMobile => { + this.isMobile = isMobile; + this.cdr.detectChanges(); + }); } } \ No newline at end of file