[master | ADDED | DONE] add text content for user-actions page

This commit is contained in:
Alex Martzios 2024-01-09 17:08:28 +02:00
parent f49056e84b
commit 31d1d5b7cc
3 changed files with 76 additions and 6 deletions

View File

@ -0,0 +1,51 @@
<div>
<div class="uk-banner">
<div class="uk-container uk-container-large uk-section uk-section-small">
<div class="uk-flex uk-flex-column uk-flex-middle uk-flex-center uk-text-center" uk-scrollspy-class>
<h1 class="uk-h2" uk-scrollspy-class>User Actions</h1>
<div class="uk-text-large uk-width-1-2@l uk-width-2-3" uk-scrollspy-class>
Once you are logged in (researchers should use their ORCID ID), you will be all set to access the following
</div>
</div>
</div>
</div>
<div uk-scrollspy="target: [uk-scrollspy-class]; cls: uk-animation-fade; delay: 250">
<div class="uk-section uk-container uk-container-large" uk-scrollspy-class>
<div id="parentContainer" class="uk-grid uk-grid-large" uk-grid>
<div class="uk-width-medium uk-margin-top">
<div class="uk-sticky" uk-sticky="end: !#parentContainer; offset: 100;">
<slider-tabs type="scrollable" position="left">
<slider-tab tabId="adding" tabTitle="Adding"></slider-tab>
<slider-tab tabId="linking" tabTitle="Linking"></slider-tab>
<slider-tab tabId="upload" tabTitle="Upload DOIs"></slider-tab>
</slider-tabs>
</div>
</div>
<div class="uk-width-expand uk-margin-top">
<div id="adding" class="uk-width-xlarge uk-margin-large-bottom">
<h3>Adding research products to your ORCID record</h3>
<p>Researchers who log in using their ORCID ID have the ability to claim additional research outputs as their own. Once claimed, this information synchronizes with their ORCID profile and will be reflected in both the ORCID system and this portal following the next update of the OpenAIRE Graph, which occurs approximately monthly. This integration ensures that researchers can see their claimed research outputs in both places, maintaining consistency and visibility of their work.</p>
<h5 class="uk-text-italic">How to Claim research products as my own?</h5>
<p>After signing in, click on your initials on the top right corner of any page and then click on “My ORCiD links” after granting permission to OpenAIRE to access and update your ORCID works … ( I cannot complete this because there is a bug and I cant connect)</p>
</div>
<div id="linking" class="uk-width-xlarge uk-margin-large-bottom">
<h3>Linking research products</h3>
<p>Linking is a functionality provided by OpenAIRE enabling users to connect research results with projects, research communities, or other research outcomes. This linked information is subsequently integrated into the OpenAIRE Graph and, consequently, becomes accessible in the National Open Access Monitor, Ireland.</p>
<h5 class="uk-text-italic">Where to Find the Linking Feature?</h5>
<p>To access the Linking feature, sign in to your account, click on the circle with your initials in the top right corner, and select Link. Additionally, the linking option is available under any research product while browsing. Each Monitor includes a Browse Research Products tab at the top for easy navigation and access.</p>
<h5 class="uk-text-italic">Types of Research Results for Linking</h5>
<p>Users have two options for linking research results:</p>
<h5 class="uk-text-italic">Visibility of New Links</h5>
<p>The visibility of newly created links depends on their origin:</p>
<h5 class="uk-text-italic">Managing My Links</h5>
<p>All users can manage their links through the My Links page. After linking results, users can view and manage their list of created links, including the option to delete them if needed.</p>
</div>
<div id="upload" class="uk-width-xlarge uk-margin-large-bottom">
<h3>Upload DOIs</h3>
<p>To access the Upload DOIs feature, sign in to your account, click on the circle with your initials in the top right corner, and select Upload DOIs. In this page, users can upload a CSV file containing a list of DOI identifiers. After uploading the CSV file, a report will be available showing information about the publications of the given DOIs found in the OA Monitor. The information includes the publication title, the access mode (Open, Closed, Embargo or Restricted), the access routes (gold, hybrid, bronze), if the publication is green and if it is published in OA diamond Journal. Additionally, it shows reports given the list of DOIs on number of valid DOIs, total number for each OA Mode, total number of each OA route, number green and diamond, number of DOIs found and if there are duplicates or invalid DOIs in the given list.</p>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,3 @@
.uk-width-medium {
width: 350px;
}

View File

@ -1,13 +1,29 @@
import {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 {SEOService} from "../../openaireLibrary/sharedComponents/SEO/SEO.service";
import {Meta, Title} from "@angular/platform-browser";
@Component({
selector: 'user-actions',
template: `
<div>user actions page</div>
`
templateUrl: 'user-actions.component.html',
styleUrls: ['user-actions.component.less']
})
export class UserActionsComponent {
constructor() {
export class UserActionsComponent extends BaseComponent{
title = 'User Actions';
description = 'User Actions';
constructor(protected _route: ActivatedRoute,
protected _piwikService: PiwikService,
protected _meta: Meta,
protected seoService: SEOService,
protected _title: Title,
protected _router: Router) {
super();
}
ngOnInit() {
this.setMetadata();
}
}