2022-06-23 18:46:53 +02:00
|
|
|
import {Component, Inject, Input, PLATFORM_ID, ViewChild} from '@angular/core';
|
2020-01-28 17:20:54 +01:00
|
|
|
import {ActivatedRoute} from "@angular/router";
|
|
|
|
import {RouterHelper} from "../routerHelper.class";
|
|
|
|
import {EnvProperties} from '../properties/env-properties';
|
2019-10-02 16:17:31 +02:00
|
|
|
import {isPlatformBrowser} from "@angular/common";
|
2020-03-13 12:42:57 +01:00
|
|
|
import {Author} from "../result-preview/result-preview";
|
2020-03-16 14:09:46 +01:00
|
|
|
import {AlertModal} from "../modal/alert";
|
2020-07-13 16:42:34 +02:00
|
|
|
import {properties} from "../../../../environments/environment";
|
2019-05-29 14:24:43 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'showAuthors',
|
|
|
|
template: `
|
2023-07-25 18:09:09 +02:00
|
|
|
<ng-template #author_template let-author="author" let-i="i" let-italic="italic">
|
|
|
|
<span *ngIf="isSticky || (!author.orcid && !author.orcid_pending) || !isBrowser" style="margin-right: 5px;"
|
2023-05-08 09:32:45 +02:00
|
|
|
[class.uk-text-italic]="italic">
|
2022-06-09 15:10:04 +02:00
|
|
|
{{author.fullName + ";"}}
|
2022-04-12 13:51:54 +02:00
|
|
|
</span>
|
2023-07-25 18:09:09 +02:00
|
|
|
<ng-container *ngIf="!isSticky && (author.orcid || author.orcid_pending) && isBrowser">
|
|
|
|
<a #toggle class="uk-flex-inline uk-flex-middle uk-link-text">
|
|
|
|
<img *ngIf="author.orcid" src="assets/common-assets/common/ORCIDiD_icon16x16.png" alt="orcid"
|
|
|
|
loading="lazy" style="width:16px; height:16px; margin-right: 3px;">
|
|
|
|
<img *ngIf="!author.orcid && author.orcid_pending"
|
|
|
|
src="assets/common-assets/common/ORCIDiD_iconbw16x16.png" alt="orcid bw" loading="lazy"
|
|
|
|
style="margin-right: 3px;">
|
|
|
|
<span style="margin-right: 5px;" [class.uk-text-italic]="italic">
|
|
|
|
{{author.fullName + ";"}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
<div *ngIf="!isMobile" class="default-dropdown uk-margin-remove-top uk-dropdown orcid-dropdown" uk-dropdown="mode:click; offset: 4" style="min-width: 465px !important;">
|
|
|
|
<ng-container *ngTemplateOutlet="dropdown"></ng-container>
|
|
|
|
</div>
|
|
|
|
<mobile-dropdown *ngIf="isMobile" [toggle]="toggle">
|
|
|
|
<div class="orcid-dropdown">
|
|
|
|
<ng-container *ngTemplateOutlet="dropdown"></ng-container>
|
|
|
|
</div>
|
|
|
|
</mobile-dropdown>
|
|
|
|
<ng-template #dropdown>
|
|
|
|
<div class="uk-padding-small">
|
|
|
|
<h6 class="uk-margin-remove">{{author.fullName}}</h6>
|
|
|
|
<div>
|
|
|
|
<div class="uk-text-meta uk-margin-bottom">ORCID</div>
|
2022-04-12 13:51:54 +02:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
<div class="uk-text-meta uk-text-xsmall uk-margin-small-top uk-margin-small-bottom">
|
|
|
|
<img *ngIf="author.orcid" src="assets/common-assets/common/ORCIDiD_icon16x16.png" alt=""
|
|
|
|
loading="lazy">{{" "}}
|
|
|
|
<img *ngIf="!author.orcid && author.orcid_pending"
|
|
|
|
src="assets/common-assets/common/ORCIDiD_iconbw16x16.png" alt="" loading="lazy">{{" "}}
|
2022-04-12 13:51:54 +02:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
<i *ngIf="author.orcid">Harvested from ORCID Public Data File</i>
|
|
|
|
<i *ngIf="!author.orcid && author.orcid_pending">Derived by OpenAIRE algorithms or harvested
|
|
|
|
from 3d party repositories</i>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="clipboard-wrapper uk-width-1-1 uk-flex uk-flex-middle uk-flex-center"
|
|
|
|
style="min-height: 43px; min-width: 280px;">
|
|
|
|
<input #element class="uk-padding-small uk-text-emphasis uk-width-expand uk-disabled"
|
|
|
|
[value]="properties.orcidURL+(author.orcid ? author.orcid : author.orcid_pending)"/>
|
|
|
|
<button class="uk-button uk-button-link uk-margin-small-right copy orcid_clipboard_btn" [ngClass]="'orcid_clipboard_btn_auhtor_'+i"
|
|
|
|
title="Copy to clipboard" (click)="copyToClipboard(element)">
|
|
|
|
<icon name="content_copy" visuallyHidden="Copy to clipboard" [flex]="true"></icon>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="uk-text-center uk-margin-small-top">
|
|
|
|
<a class="uk-button uk-button-text custom-external"
|
|
|
|
title="Visit author in ORCID"
|
|
|
|
[href]="properties.orcidURL+(author.orcid ? author.orcid : author.orcid_pending)"
|
|
|
|
target="_blank">
|
|
|
|
VISIT AUTHOR IN ORCID
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div class="uk-margin-top uk-text-bold uk-text-emphasis uk-text-center">
|
|
|
|
{{author.fullName}} in OpenAIRE
|
|
|
|
</div>
|
|
|
|
<div class="uk-text-center uk-margin-top uk-margin-large-left uk-margin-large-right">
|
|
|
|
<a *ngIf="properties.adminToolsPortalType !== 'eosc'"
|
|
|
|
class="uk-button uk-button-primary uk-text-bold uk-padding-remove-top uk-padding-remove-bottom"
|
|
|
|
(click)="onClick()"
|
|
|
|
[queryParams]="routerHelper.createQueryParams(['orcid','oc'],[(author['orcid'] ? author['orcid'] : author['orcid_pending']),'and'])"
|
|
|
|
routerLinkActive="router-link-active" [routerLink]="properties.searchLinkToAdvancedResults">
|
|
|
|
<span class="space">Search</span>
|
|
|
|
</a>
|
|
|
|
<a *ngIf="properties.adminToolsPortalType == 'eosc'"
|
|
|
|
class="uk-button uk-button-primary uk-text-bold uk-padding-remove-top uk-padding-remove-bottom uk-light"
|
|
|
|
[href]="'https://explore.openaire.eu'+properties.searchLinkToAdvancedResults+'?orcid='+(author['orcid'] ? author['orcid'] : author['orcid_pending'])+'&oc=and'"
|
|
|
|
target="_blank">
|
|
|
|
<span class="space custom-external">Search in OpenAIRE</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-07-22 15:39:35 +02:00
|
|
|
</div>
|
2023-07-25 18:09:09 +02:00
|
|
|
</ng-template>
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
</ng-template>
|
2022-04-12 13:51:54 +02:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
<div *ngIf="authors"
|
|
|
|
class="uk-height-max-medium uk-overflow-auto uk-text-small uk-text-emphasis uk-flex uk-flex-wrap">
|
2023-07-11 11:59:43 +02:00
|
|
|
<span class="uk-text-meta uk-margin-xsmall-right">
|
|
|
|
Authors:
|
|
|
|
</span>
|
2023-07-25 18:09:09 +02:00
|
|
|
<ng-container *ngFor="let author of authors.slice(0, viewAll?authors.length:authorsLimit) let i=index">
|
|
|
|
<ng-container
|
|
|
|
*ngTemplateOutlet="author_template; context: { author: author, i:i, italic: true}"></ng-container>
|
|
|
|
</ng-container>
|
|
|
|
<span *ngIf="!showAll && authors && authors.length > authorsLimit" class="uk-text-meta">
|
|
|
|
+{{authors.length - authorsLimit | number}} more
|
2023-02-20 15:59:07 +01:00
|
|
|
</span>
|
2023-07-25 18:09:09 +02:00
|
|
|
<span *ngIf="showAll && authors && authors.length > authorsLimit && !viewAll">
|
2023-10-02 11:18:29 +02:00
|
|
|
<a (click)="viewAllClick();" class="uk-background-muted custom-extra-entities">
|
2023-07-25 18:09:09 +02:00
|
|
|
+{{authors.length - authorsLimit | number}} Authors
|
2022-04-12 13:51:54 +02:00
|
|
|
</a>
|
|
|
|
</span>
|
2023-07-25 18:09:09 +02:00
|
|
|
<div *ngIf="viewAll && lessBtn" class="uk-text-small">
|
|
|
|
<a (click)="viewAll = !viewAll; lessBtn=false;">View less</a>
|
|
|
|
</div>
|
2023-02-20 15:59:07 +01:00
|
|
|
</div>
|
2022-04-12 13:51:54 +02:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
<modal-alert *ngIf="!isMobile" #authorsModal>
|
|
|
|
<div class="uk-text-small uk-text-emphasis uk-grid uk-grid-column-collapse uk-grid-row-small" uk-grid>
|
|
|
|
<ng-container *ngFor="let author of authors; let i=index">
|
|
|
|
<ng-container *ngTemplateOutlet="author_template; context: { author: author, i:i}"></ng-container>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
</modal-alert>
|
2023-02-22 22:13:46 +01:00
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
<fs-modal *ngIf="isMobile" #authorsModal classTitle="uk-tile-default uk-border-bottom">
|
|
|
|
<div class="uk-text-small uk-text-emphasis uk-grid uk-grid-column-collapse uk-grid-row-small" uk-grid>
|
|
|
|
<ng-container *ngFor="let author of authors; let i=index">
|
|
|
|
<ng-container *ngTemplateOutlet="author_template; context: { author: author, i:i}"></ng-container>
|
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
</fs-modal>
|
2020-01-28 17:20:54 +01:00
|
|
|
`
|
2020-02-07 14:05:07 +01:00
|
|
|
|
2019-05-29 14:24:43 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
export class ShowAuthorsComponent {
|
2023-02-22 22:13:46 +01:00
|
|
|
@Input() isMobile: boolean = false;
|
2020-02-07 14:05:07 +01:00
|
|
|
@Input() authors: Author[];
|
2022-06-16 18:37:31 +02:00
|
|
|
@Input() isSticky: boolean = false;
|
2022-04-16 09:47:30 +02:00
|
|
|
@Input() authorsLimit: number = 7;
|
2019-05-29 14:24:43 +02:00
|
|
|
@Input() showAll: boolean = true;
|
2020-03-16 14:09:46 +01:00
|
|
|
@Input() modal: AlertModal;
|
2022-04-12 13:51:54 +02:00
|
|
|
@Input() viewAll: boolean = false;
|
2023-05-12 14:55:22 +02:00
|
|
|
@Input() showInline: boolean = false; // do not open modal for "view more" when this is true
|
2022-04-12 13:51:54 +02:00
|
|
|
public lessBtn: boolean = false;
|
|
|
|
@ViewChild('authorsModal') authorsModal;
|
|
|
|
|
2020-07-13 16:42:34 +02:00
|
|
|
public properties: EnvProperties = properties;
|
2020-02-07 14:05:07 +01:00
|
|
|
public routerHelper: RouterHelper = new RouterHelper();
|
|
|
|
|
2023-07-25 18:09:09 +02:00
|
|
|
isBrowser: boolean;
|
2022-04-16 09:47:30 +02:00
|
|
|
public clipboard;
|
|
|
|
|
2020-02-07 14:05:07 +01:00
|
|
|
constructor(private route: ActivatedRoute, @Inject(PLATFORM_ID) private platformId: string) {
|
2023-07-25 18:09:09 +02:00
|
|
|
this.isBrowser = isPlatformBrowser(platformId);
|
2019-10-02 16:17:31 +02:00
|
|
|
}
|
2020-02-07 14:05:07 +01:00
|
|
|
|
2022-05-17 11:15:15 +02:00
|
|
|
ngOnInit() {}
|
2020-02-07 14:05:07 +01:00
|
|
|
|
2020-03-16 14:09:46 +01:00
|
|
|
public onClick() {
|
2020-07-22 15:39:35 +02:00
|
|
|
if (this.modal) {
|
2020-03-16 14:09:46 +01:00
|
|
|
this.modal.cancel();
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 13:51:54 +02:00
|
|
|
|
|
|
|
public viewAllClick() {
|
2023-05-12 14:55:22 +02:00
|
|
|
if(this.authors.length <= this.authorsLimit*2 || this.showInline) {
|
2022-04-12 13:51:54 +02:00
|
|
|
this.viewAll = true;
|
|
|
|
this.lessBtn = true;
|
|
|
|
} else {
|
|
|
|
this.openAuthorsModal();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public openAuthorsModal() {
|
2023-02-22 22:13:46 +01:00
|
|
|
if (this.isMobile) {
|
|
|
|
this.authorsModal.okButton = false;
|
|
|
|
this.authorsModal.title = "Authors";
|
|
|
|
this.authorsModal.open();
|
|
|
|
} else {
|
|
|
|
this.authorsModal.cancelButton = false;
|
|
|
|
this.authorsModal.okButton = false;
|
|
|
|
this.authorsModal.alertTitle = "Authors";
|
|
|
|
this.authorsModal.open();
|
|
|
|
}
|
2022-04-12 13:51:54 +02:00
|
|
|
}
|
2022-04-16 09:47:30 +02:00
|
|
|
|
2022-05-17 11:15:15 +02:00
|
|
|
copyToClipboard(element: HTMLInputElement) {
|
|
|
|
element.select();
|
|
|
|
if (typeof document !== 'undefined') {
|
|
|
|
document.execCommand('copy');
|
2022-04-16 09:47:30 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-29 14:24:43 +02:00
|
|
|
}
|