import {Component} from '@angular/core'; import {ActivatedRoute, Router} from '@angular/router'; import {Title} from '@angular/platform-browser'; import {PiwikService} from '../openaireLibrary/utils/piwik/piwik.service'; import {EnvProperties} from '../openaireLibrary/utils/properties/env-properties'; import {FAQ} from "../openaireLibrary/utils/entities/FAQ"; @Component({ selector: 'learn-how', template: `

Learn the process

Build a Gateway to your community's open and linked research outcomes. Customized to your needs.
1. Understanding your needs
First, we learn about your requirements and challenges. We help you understand Open Science practices within EOSC and together we’ll talk about how OpenAIRE RCD fits as a solution.
4. Roll out the service
We jointly roll out your new Science Gateway. You take over the business operations and start engaging your researchers, we take care of the smooth operation of the e-service.
2. Develop a pilot
How do you work today, and how would you like to work tomorrow? We tranlate your needs into rules and processes and we configure operational OpenAIRE services. By the end of this phase, we’ll have defined the basic configuration of your Community Gateway.
2. Develop a pilot
How do you work today, and how would you like to work tomorrow? We tranlate your needs into rules and processes and we configure operational OpenAIRE services. By the end of this phase, we’ll have defined the basic configuration of your Community Gateway.
4. Roll out the service
We jointly roll out your new Science Gateway. You take over the business operations and start engaging your researchers, we take care of the smooth operation of the e-service.
3. Test and Validate
You validate and test your new Science Gateway (portal) with your experts and community to ensure all workflows are in place and quality of data meets your standards. If needed, we work together in another iteration to further refine and adapt to your needs.

We look forward to working together and helping you unlock the full potential of your research community through open science.

Get in touch with our team to find out how.

Frequently Asked Questions

Frequently Asked Questions

Coming Soon...
` }) export class LearnHowComponent { public piwiksub: any; questions: FAQ[] = [ /*{ question: 'Coming soon?', answer: 'Yes' }, { question: 'Could you be more specific?', answer: 'No' }*/ ]; public gifs: {"gif": string, "header": string, "text"}[] = []; private pageTitle = "OpenAIRE - Connect | Learn How"; properties:EnvProperties; constructor ( private route: ActivatedRoute, private _router: Router, private _title: Title, private _piwikService: PiwikService) { var description = "OpenAIRE - Connect, Community Dashboard, research community"; this._title.setTitle(this.pageTitle); } public ngOnInit() { this.route.data .subscribe((data: { envSpecific: EnvProperties }) => { this.properties = data.envSpecific; if(this.properties.enablePiwikTrack && (typeof document !== 'undefined')){ this.piwiksub = this._piwikService.trackView(this.properties, "OpenAIRE Connect | Create and manage your community page", this.properties.piwikSiteId).subscribe(); } }); this.createGifs(); } public ngOnDestroy() { if(this.piwiksub){ this.piwiksub.unsubscribe(); } } private createGifs() { this.gifs.push({ gif: "../../../../assets/Connect%20animations.gif", header: "Research Community Dashboard", text: "This is OpenAIRE’s key service for research communities, both established and emerging ones. Our service helps you reach out and engage all your researchers to practice open science out-of-the-box." }); this.gifs.push({ gif: "../../../../assets/admin-portal.png", header: "Research Community Dashboard 2", text: "This is OpenAIRE’s key service for research communities, both established and emerging ones. Our service helps you reach out and engage all your researchers to practice open science out-of-the-box." }); this.gifs.push({ gif: "../../../../assets/banner connect.jpg", header: "Research Community Dashboard 3", text: "This is OpenAIRE’s key service for research communities, both established and emerging ones. Our service helps you reach out and engage all your researchers to practice open science out-of-the-box." }); } }