|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
<div class="landing uk-section uk-padding-remove tm-middle">
|
|
|
|
|
<div class="tm-main">
|
|
|
|
|
<!-- Desktop view -->
|
|
|
|
|
<div class="uk-visible@m landing uk-section uk-padding-remove tm-middle">
|
|
|
|
|
<div *ngIf="!isMobile" class="tm-main">
|
|
|
|
|
<div class="dataprovider">
|
|
|
|
|
<div *ngIf="!showFeedback" class="uk-grid uk-margin-remove-left" uk-grid>
|
|
|
|
|
|
|
|
|
@ -120,7 +121,8 @@
|
|
|
|
|
[entityType]="getTypeName()"
|
|
|
|
|
[compatibility]="dataProviderInfo.compatibility"
|
|
|
|
|
[aggregationStatus]="dataProviderInfo.aggregationStatus"
|
|
|
|
|
[thematic]="dataProviderInfo.thematic" [type]="type">
|
|
|
|
|
[thematic]="dataProviderInfo.thematic" [type]="type"
|
|
|
|
|
[journal]="dataProviderInfo.journal">
|
|
|
|
|
</landing-header>
|
|
|
|
|
|
|
|
|
|
<!-- Labels -->
|
|
|
|
@ -266,326 +268,37 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="landing-sections" class="uk-text-small">
|
|
|
|
|
<div id="summary" class="landing-section landing-section-height-auto">
|
|
|
|
|
<div class="uk-card uk-card-default card-tab uk-grid uk-margin-remove-left uk-margin-medium-top uk-margin-medium-bottom">
|
|
|
|
|
<div *ngIf="!(hasPrimaryInfo || (!aggregationStatusIsInitialized || hasAggregationStatusInfo)) && !hasSecondaryInfo"
|
|
|
|
|
class="uk-width-expand uk-height-small uk-flex uk-flex-center uk-flex-middle">
|
|
|
|
|
<div class="uk-animation-fade uk-text-meta uk-text-large">
|
|
|
|
|
No summary information available
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="hasPrimaryInfo || (!aggregationStatusIsInitialized || hasAggregationStatusInfo)"
|
|
|
|
|
class="uk-width-expand uk-padding uk-inline">
|
|
|
|
|
<!-- Description -->
|
|
|
|
|
<div *ngIf="dataProviderInfo.description" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-justify">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Description</div>
|
|
|
|
|
<div class="multi-line-ellipsis lines-10">
|
|
|
|
|
<div #descriptionDiv class="uk-margin-small-bottom"
|
|
|
|
|
[innerHtml]="dataProviderInfo.description"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="showViewMoreButton" class="uk-flex uk-flex-right">
|
|
|
|
|
<a (click)="openDescriptionModal();" class="view-more-less-link">
|
|
|
|
|
View more
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ul *ngIf="hasJournalInfo" class="uk-list uk-margin-medium-bottom uk-margin-remove-top">
|
|
|
|
|
<showPublisher [journal]="dataProviderInfo.journal" [properties]="properties"></showPublisher>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="hasAggregationStatusInfo || dataProviderInfo.fundedContent"
|
|
|
|
|
class="uk-margin-medium-bottom uk-animation-fade uk-animation-fast">
|
|
|
|
|
<span *ngIf="dataProviderInfo.aggregationStatus?.fulltexts && dataProviderInfo.aggregationStatus?.fulltexts != -1"
|
|
|
|
|
class="uk-margin-right uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Collected full-texts</div>
|
|
|
|
|
{{dataProviderInfo.aggregationStatus.fulltexts | number}}
|
|
|
|
|
</span>
|
|
|
|
|
<span *ngIf="dataProviderInfo.fundedContent && dataProviderInfo.fundedContent > 0"
|
|
|
|
|
class="uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Results with funding information</div>
|
|
|
|
|
{{dataProviderInfo.fundedContent | number}}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="!aggregationStatusIsInitialized || !dataProviderInfo.fundedContent"
|
|
|
|
|
class="uk-animation-fade uk-margin-top uk-width-1-1" role="alert">
|
|
|
|
|
<span class="loading-gif uk-align-center"></span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.countries != undefined && dataProviderInfo.countries.length > 0"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Countries</div>
|
|
|
|
|
{{dataProviderInfo.countries.join(", ")}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.jurisdiction" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Jurisdiction</div>
|
|
|
|
|
{{dataProviderInfo.jurisdiction}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.contentpolicy" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Content policy</div>
|
|
|
|
|
{{dataProviderInfo.contentpolicy}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Subjects -->
|
|
|
|
|
<div *ngIf="dataProviderInfo.subjects && dataProviderInfo.subjects.length > 0"
|
|
|
|
|
class="uk-margin-medium-bottom uk-margin-bottom">
|
|
|
|
|
<div class="uk-height-max-medium uk-overflow-auto">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Subjects </div>
|
|
|
|
|
<span>{{dataProviderInfo.subjects.slice(0, lessBtnSubjects ? dataProviderInfo.subjects.length : thresholdSubjects).join(", ")}}</span>
|
|
|
|
|
<span *ngIf="dataProviderInfo.subjects.length > thresholdSubjects && !lessBtnSubjects"> ... </span>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.subjects.length > thresholdSubjects && !lessBtnSubjects"
|
|
|
|
|
class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllSubjectsClick();" class="view-more-less-link">
|
|
|
|
|
View all {{dataProviderInfo.subjects.length | number}} subjects
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="viewAllSubjects && lessBtnSubjects" class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllSubjects = !viewAllSubjects; lessBtnSubjects=false;" class="view-more-less-link">View less subjects</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="hasSecondaryInfo"
|
|
|
|
|
[class]="'uk-inline uk-padding uk-padding-remove-horizontal ' + (hasPrimaryInfo?'uk-width-1-3@m': 'uk-width-expand')">
|
|
|
|
|
<div class="uk-padding uk-padding-remove-vertical uk-height-1-1">
|
|
|
|
|
<div *ngIf="dataProviderInfo.oaiPmhURL || dataProviderInfo.provenance?.size > 0"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div *ngIf="dataProviderInfo.oaiPmhURL" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">OAI-PMH</div>
|
|
|
|
|
<a target="_blank" href="{{dataProviderInfo.oaiPmhURL}}" class="custom-external">
|
|
|
|
|
{{dataProviderInfo.oaiPmhURL}}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.provenance?.size > 0" class="uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Detailed information @ </div>
|
|
|
|
|
<span *ngFor="let provenance of getKeys(dataProviderInfo.provenance); let i=index">
|
|
|
|
|
<a *ngIf="dataProviderInfo.provenance.get(provenance).url.length == 1" class="custom-external uk-link-text"
|
|
|
|
|
target="_blank" href="{{dataProviderInfo.provenance.get(provenance).url}}">
|
|
|
|
|
{{provenance}}
|
|
|
|
|
</a>
|
|
|
|
|
<ng-container *ngIf="dataProviderInfo.provenance.get(provenance).url.length > 1">
|
|
|
|
|
<span class="custom-external">{{provenance}}</span>
|
|
|
|
|
<ng-container *ngFor="let url of dataProviderInfo.provenance.get(provenance).url; let i=index">
|
|
|
|
|
[<a target="_blank" href="{{url}}">{{i}}</a>]
|
|
|
|
|
</ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<span *ngIf="i < dataProviderInfo.provenance.size-1">, </span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.organizations && dataProviderInfo.organizations.length > 0"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">{{openaireEntities.ORGANIZATIONS}}</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="organizations_template; context: { threshold: lessBtnOrganizations ? dataProviderInfo.organizations.length : thresholdOrganizations }"></ng-container>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.organizations.length > thresholdOrganizations && !lessBtnOrganizations"
|
|
|
|
|
class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllOrganizationsClick();" class="view-more-less-link">
|
|
|
|
|
View all {{dataProviderInfo.organizations.length | number}} organizations
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="viewAllOrganizations && lessBtnOrganizations" class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllOrganizations = !viewAllOrganizations; lessBtnOrganizations=false;" class="view-more-less-link">View less organizations</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Projects-->
|
|
|
|
|
<ng-container>
|
|
|
|
|
<ng-container *ngTemplateOutlet="summary_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchProjects.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="projects" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchProjects" resultType="project"
|
|
|
|
|
[params]="getParamsForSearchLink()"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedProjects"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="projects_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!-- Datasources -->
|
|
|
|
|
<ng-container *ngIf="fetchDataproviders.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="datasources" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchDataproviders" resultType="dataprovider"
|
|
|
|
|
[params]="getParamsForSearchLink()"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedDataProviders"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="dataproviders_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Publications-->
|
|
|
|
|
<ng-container *ngIf="fetchPublications.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="publications" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchPublications" resultType="publication"
|
|
|
|
|
[params]="getParamsForSearchLink('publications')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="publications_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Research Data-->
|
|
|
|
|
<ng-container *ngIf="fetchDatasets.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="datasets" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchDatasets" resultType="dataset"
|
|
|
|
|
[params]="getParamsForSearchLink('datasets')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="datasets_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Software-->
|
|
|
|
|
<ng-container *ngIf="fetchSoftware.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="software" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchSoftware" resultType="software"
|
|
|
|
|
[params]="getParamsForSearchLink('software')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="software_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Other-->
|
|
|
|
|
<ng-container *ngIf="fetchOrps.searchUtils.totalResults > 0">
|
|
|
|
|
<div id="other" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchOrps" resultType="other"
|
|
|
|
|
[params]="getParamsForSearchLink('other')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="other_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Related Datasources-->
|
|
|
|
|
<ng-container *ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<div id="relatedDatasources" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<relatedDatasourcesTab
|
|
|
|
|
[dataproviderId]="datasourceId"
|
|
|
|
|
[results]="dataProviderInfo.relatedDatasources"
|
|
|
|
|
[loading]="loadingRelatedDatasources"
|
|
|
|
|
[fetchResults]="fetchAggregatorsResults"
|
|
|
|
|
[collectedFromName]="dataProviderInfo.title.name"
|
|
|
|
|
[properties]=properties
|
|
|
|
|
[modal]="relatedDatasourcesModal">
|
|
|
|
|
</relatedDatasourcesTab>
|
|
|
|
|
</div>
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<ng-container *ngTemplateOutlet="relatedDatasources_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!-- Metrics -->
|
|
|
|
|
<ng-container *ngIf="dataProviderInfo && hasMetrics">
|
|
|
|
|
<div id="metrics" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<ul class="uk-subnav uk-subnav-pill-alt uk-margin-remove" uk-switcher>
|
|
|
|
|
<li class="uk-padding-remove">
|
|
|
|
|
<a href="#">Overview</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li *ngIf="totalDownloads ||totalViews">
|
|
|
|
|
<a href="#" (click)="clickedUsageMetrics()">Usage</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="uk-switcher uk-margin-large-top">
|
|
|
|
|
<!-- overview -->
|
|
|
|
|
<li>
|
|
|
|
|
<div *ngIf="totalDownloads || totalViews">
|
|
|
|
|
<div class="uk-grid-divider" uk-grid>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="uk-text-center uk-margin-small-bottom">
|
|
|
|
|
<img src="assets/common-assets/logo-small-usage-counts.png" loading="lazy" alt="OpenAIRE UsageCounts">
|
|
|
|
|
</div>
|
|
|
|
|
<span class="uk-text-uppercase uk-text-xsmall">Usage by</span>
|
|
|
|
|
<span class="uk-display-block uk-text-bolder">UsageCounts</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<table class="uk-table uk-table-small">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr *ngIf="totalDownloads">
|
|
|
|
|
<td class="uk-padding-remove-top">
|
|
|
|
|
<icon name="download" [flex]="true" [ratio]="1.2" customClass="uk-text-background text-usage-counts"></icon>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-top">
|
|
|
|
|
Downloads
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-top uk-text-uppercase uk-text-bolder"
|
|
|
|
|
[attr.uk-tooltip]="totalDownloads >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalDownloads | number}}">
|
|
|
|
|
{{formatNumber(totalDownloads)}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr *ngIf="totalViews">
|
|
|
|
|
<td class="uk-padding-remove-bottom">
|
|
|
|
|
<icon name="visibility" [flex]="true" [ratio]="1.2" customClass="uk-text-background text-usage-counts"></icon>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-bottom">
|
|
|
|
|
Views
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-bottom uk-text-uppercase uk-text-bolder"
|
|
|
|
|
[attr.uk-tooltip]="totalViews >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalViews | number}}">
|
|
|
|
|
{{formatNumber(totalViews)}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- usage -->
|
|
|
|
|
<li>
|
|
|
|
|
<div class="uk-flex uk-flex-center uk-flex-middle">
|
|
|
|
|
<div class="uk-margin-large-right">
|
|
|
|
|
<div *ngIf="totalDownloads" class="uk-text-center uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-background uk-text-bold number metrics-number"
|
|
|
|
|
[attr.uk-tooltip]="totalDownloads >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalDownloads | number}}">{{formatNumber(totalDownloads)}}</div>
|
|
|
|
|
<div class="uk-text-bold">Downloads</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="totalViews" class="uk-text-center uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-background uk-text-bold number metrics-number"
|
|
|
|
|
[attr.uk-tooltip]="totalViews >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalViews | number}}">{{formatNumber(totalViews)}}</div>
|
|
|
|
|
<div class="uk-text-bold">Views</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngIf="viewsFrameUrl || downloadsFrameUrl">
|
|
|
|
|
<div *ngIf="metricsClicked && downloadsFrameUrl && totalDownloads" class="uk-margin-large-right">
|
|
|
|
|
<i-frame [height]="300" [url]="downloadsFrameUrl" [addClass]="false"
|
|
|
|
|
customContainerClass="uk-background-default" customIframeClass="uk-blend-multiply uk-height-1-1"></i-frame>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="metricsClicked && viewsFrameUrl && totalViews" class="uk-margin-large-right">
|
|
|
|
|
<i-frame [height]="300" [url]="viewsFrameUrl" [addClass]="false"
|
|
|
|
|
customContainerClass="uk-background-default" customIframeClass="uk-blend-multiply uk-height-1-1">
|
|
|
|
|
</i-frame>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="uk-text-center uk-margin-large-top">
|
|
|
|
|
<span class="uk-text-meta">Powered by</span>
|
|
|
|
|
<img class="uk-margin-small-left uk-margin-small-right uk-width-small" src="assets/common-assets/logo-large-usage-counts.png" loading="lazy" alt="OpenAIRE UsageCounts">
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="metricsContent"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<!--Statistics-->
|
|
|
|
|
<ng-container *ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
|
|
|
|
|
<div id="statistics" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<div class="uk-text-meta uk-text-large uk-text-uppercase uk-margin-medium-bottom">Statistics</div>
|
|
|
|
|
<errorMessages [status]="[fetchPublications.searchUtils.status, fetchDatasets.searchUtils.status,
|
|
|
|
|
fetchSoftware.searchUtils.status, fetchOrps.searchUtils.status]"
|
|
|
|
|
[type]="'statistics'" tab_error_class=true></errorMessages>
|
|
|
|
|
<div *ngIf="statsClicked &&
|
|
|
|
|
(fetchPublications.searchUtils.status == errorCodes.DONE || fetchDatasets.searchUtils.status == errorCodes.DONE
|
|
|
|
|
|| fetchSoftware.searchUtils.status == errorCodes.DONE || fetchOrps.searchUtils.status == errorCodes.DONE)">
|
|
|
|
|
<statisticsTab [fetchPublications]="fetchPublications" [fetchDatasets]="fetchDatasets"
|
|
|
|
|
[fetchSoftware]="fetchSoftware" [fetchOther]="fetchOrps"
|
|
|
|
|
[datasourceId]="datasourceId">
|
|
|
|
|
</statisticsTab>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<ng-container *ngTemplateOutlet="statistics_content"></ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="uk-text-xsmall uk-hidden@m"><ng-container *ngTemplateOutlet="graph_and_feedback_template"></ng-container></div>
|
|
|
|
@ -600,6 +313,187 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Mobile view -->
|
|
|
|
|
<div *ngIf="isMobile" class="uk-hidden@m uk-position-relative landing">
|
|
|
|
|
<ng-container *ngIf="dataProviderInfo">
|
|
|
|
|
<div *ngIf="mobileContent == 'info'" class="uk-container uk-section">
|
|
|
|
|
<landing-header [properties]="properties" [title]="dataProviderInfo.title.name"
|
|
|
|
|
[subTitle]="(dataProviderInfo.officialName
|
|
|
|
|
&& dataProviderInfo.title.name !== dataProviderInfo.officialName)?dataProviderInfo.officialName:null"
|
|
|
|
|
[types]="dataProviderInfo.type ? [dataProviderInfo.type] : null"
|
|
|
|
|
[entityType]="getTypeName()"
|
|
|
|
|
[compatibility]="dataProviderInfo.compatibility"
|
|
|
|
|
[aggregationStatus]="dataProviderInfo.aggregationStatus"
|
|
|
|
|
[thematic]="dataProviderInfo.thematic" [type]="type"
|
|
|
|
|
[journal]="dataProviderInfo.journal">
|
|
|
|
|
</landing-header>
|
|
|
|
|
<div *ngIf="dataProviderInfo.title && dataProviderInfo.title.url"
|
|
|
|
|
class="uk-text-small uk-margin-small-top">
|
|
|
|
|
<span class="uk-text-meta">Web page: </span>
|
|
|
|
|
<a [href]="dataProviderInfo.title.url" target="_blank"
|
|
|
|
|
class="uk-button uk-button-text uk-text-lowercase uk-text-normal custom-external">
|
|
|
|
|
{{dataProviderInfo.title.url}}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.identifiers && dataProviderInfo.identifiers.size > 0" class="uk-margin-small-top uk-text-small">
|
|
|
|
|
<showIdentifiers [identifiers]="dataProviderInfo.identifiers" [showViewAll]="true"></showIdentifiers>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="uk-section uk-margin-top uk-text-large uk-text-empashis uk-text-bold">
|
|
|
|
|
<hr>
|
|
|
|
|
<ng-container>
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(summaryFsModal, 'Summary'); onSelectActiveTab('summary')">
|
|
|
|
|
<span>Summary</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchProjects.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(projectsFsModal, openaireEntities.PROJECTS); onSelectActiveTab('projects')">
|
|
|
|
|
<span>{{openaireEntities.PROJECTS}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchDataproviders.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(dataprovidersFsModal, openaireEntities.DATASOURCES); onSelectActiveTab('datasources')">
|
|
|
|
|
<span>{{openaireEntities.DATASOURCES}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchPublications.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(publicationsFsModal, openaireEntities.PUBLICATIONS); onSelectActiveTab('publications')">
|
|
|
|
|
<span>{{openaireEntities.PUBLICATIONS}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchDatasets.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(datasetsFsModal, openaireEntities.DATASETS); onSelectActiveTab('datasets')">
|
|
|
|
|
<span>{{openaireEntities.DATASETS}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchSoftware.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(softwareFsModal, openaireEntities.SOFTWARE); onSelectActiveTab('software')">
|
|
|
|
|
<span>{{openaireEntities.SOFTWARE}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="fetchOrps.searchUtils.totalResults > 0">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(otherFsModal, openaireEntities.OTHER); onSelectActiveTab('other')">
|
|
|
|
|
<span>{{openaireEntities.OTHER}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(relatedDatasourcesFsModal, 'Related '+openaireEntities.DATASOURCES); onSelectActiveTab('relatedDatasources')">
|
|
|
|
|
<span>Related {{openaireEntities.DATASOURCES}}</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<div class="clickable uk-flex uk-flex-middle uk-flex-between" (click)="openFsModal(statisticsFsModal, 'Statistics'); onSelectActiveTab('statistics')">
|
|
|
|
|
<span>Statistics</span>
|
|
|
|
|
<icon name="chevron_right" [ratio]="1.5" [flex]="true"></icon>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="mobileContent == 'metrics'" class="uk-container uk-section">
|
|
|
|
|
<ng-container *ngTemplateOutlet="metricsContent"></ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="mobileContent == 'actions'" class="uk-container uk-section">
|
|
|
|
|
<ng-container>
|
|
|
|
|
<div class="clickable uk-button-link uk-flex uk-flex-middle uk-h6 uk-margin-remove uk-padding-small uk-padding-remove-horizontal"
|
|
|
|
|
(click)="openFsModal(addThisFsModal, 'Share this '+openaireEntities.DATASOURCE+' in your social networks')">
|
|
|
|
|
<icon [flex]="true" name="share" visuallyHidden="share"></icon>
|
|
|
|
|
<span class="uk-margin-small-left">Share</span>
|
|
|
|
|
</div>
|
|
|
|
|
<hr class="uk-margin-remove">
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="landing-action-bar-mobile uk-background-default">
|
|
|
|
|
<div class="uk-container uk-flex-middle uk-grid uk-text-xsmall uk-text-meta" [ngClass]="hasMetrics ? 'uk-child-width-1-3' : 'uk-child-width-1-2'">
|
|
|
|
|
<div>
|
|
|
|
|
<a class="uk-flex uk-flex-column uk-flex-middle uk-flex-center uk-link-reset" (click)="mobileContent = 'info'">
|
|
|
|
|
<icon name="note_add" type="outlined" [flex]="true" [ratio]="2" [ngClass]="mobileContent == 'info' ? 'uk-text-primary': ''"></icon>
|
|
|
|
|
<span>{{openaireEntities.DATASOURCE}}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo && hasMetrics">
|
|
|
|
|
<a class="uk-flex uk-flex-column uk-flex-middle uk-flex-center uk-link-reset" (click)="mobileContent = 'metrics'">
|
|
|
|
|
<icon name="bar_chart" type="outlined" [flex]="true" [ratio]="2" [ngClass]="mobileContent == 'metrics' ? 'uk-text-primary': ''"></icon>
|
|
|
|
|
<span>Metrics</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<a class="uk-flex uk-flex-column uk-flex-middle uk-flex-center uk-link-reset" (click)="mobileContent = 'actions'">
|
|
|
|
|
<icon name="pending" type="outlined" [flex]="true" [ratio]="2" [ngClass]="mobileContent == 'actions' ? 'uk-text-primary': ''"></icon>
|
|
|
|
|
<span>Actions</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<fs-modal #summaryFsModal classTitle="uk-tile-default uk-border-bottom" (cancelEmitter)="cancelSummaryClicked()">
|
|
|
|
|
<ng-container *ngTemplateOutlet="summary_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #projectsFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchProjects.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="projects_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #dataprovidersFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchDataproviders.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="dataproviders_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #publicationsFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchPublications.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="publications_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #datasetsFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchDatasets.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="datasets_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #softwareFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchSoftware.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="software_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #otherFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="fetchOrps.searchUtils.totalResults > 0">
|
|
|
|
|
<ng-container *ngTemplateOutlet="other_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #relatedDatasourcesFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<ng-container *ngTemplateOutlet="relatedDatasources_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
<fs-modal #statisticsFsModal classTitle="uk-tile-default uk-border-bottom"
|
|
|
|
|
*ngIf="(fetchPublications.searchUtils.totalResults > 0 || fetchDatasets.searchUtils.totalResults > 0
|
|
|
|
|
|| fetchSoftware.searchUtils.totalResults > 0 || fetchOrps.searchUtils.totalResults > 0)">
|
|
|
|
|
<ng-container *ngTemplateOutlet="statistics_content"></ng-container>
|
|
|
|
|
</fs-modal>
|
|
|
|
|
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<feedback *ngIf="dataProviderInfo && properties.reCaptchaSiteKey" [dataProviderInfo]="dataProviderInfo"
|
|
|
|
|
[properties]="properties" [entityType]="getTypeName()" [fields]="feedbackFields"
|
|
|
|
|
[(showForm)]="showFeedback"></feedback>
|
|
|
|
@ -640,3 +534,333 @@
|
|
|
|
|
<modal-alert *ngIf="dataProviderInfo && dataProviderInfo.subjects" #subjectsModal>
|
|
|
|
|
<span>{{dataProviderInfo.subjects.join(", ")}}</span>
|
|
|
|
|
</modal-alert>
|
|
|
|
|
|
|
|
|
|
<ng-template #summary_content>
|
|
|
|
|
<div id="summary" class="landing-section landing-section-height-auto">
|
|
|
|
|
<div class="uk-grid uk-margin-remove-left uk-margin-medium-top uk-margin-medium-bottom" [ngClass]="isMobile ? '' : 'uk-card uk-card-default card-tab'">
|
|
|
|
|
<div *ngIf="!(hasPrimaryInfo || (!aggregationStatusIsInitialized || hasAggregationStatusInfo)) && !hasSecondaryInfo"
|
|
|
|
|
class="uk-width-expand uk-height-small uk-flex uk-flex-center uk-flex-middle">
|
|
|
|
|
<div class="uk-animation-fade uk-text-meta uk-text-large">
|
|
|
|
|
No summary information available
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="hasPrimaryInfo || (!aggregationStatusIsInitialized || hasAggregationStatusInfo)"
|
|
|
|
|
class="uk-width-expand uk-inline" [ngClass]="isMobile ? 'uk-padding-remove' : 'uk-padding'">
|
|
|
|
|
<!-- Description -->
|
|
|
|
|
<div *ngIf="dataProviderInfo.description && (!viewAllMobile || viewAllMobile == 'description')" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-justify">
|
|
|
|
|
<div *ngIf="viewAllMobile != 'description'" class="uk-text-meta uk-margin-small-bottom">Description</div>
|
|
|
|
|
<div [ngClass]="viewAllMobile == 'description' ? '' : 'multi-line-ellipsis lines-10'">
|
|
|
|
|
<div #descriptionDiv class="uk-margin-small-bottom"
|
|
|
|
|
[innerHtml]="dataProviderInfo.description"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="showViewMoreButton && viewAllMobile != 'description'" class="uk-flex uk-flex-right">
|
|
|
|
|
<a (click)="viewAllDescriptionClicked();" class="view-more-less-link">
|
|
|
|
|
View more
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- <ul *ngIf="hasJournalInfo" class="uk-list uk-margin-medium-bottom uk-margin-remove-top">
|
|
|
|
|
<showPublisher [journal]="dataProviderInfo.journal" [properties]="properties"></showPublisher>
|
|
|
|
|
</ul> -->
|
|
|
|
|
|
|
|
|
|
<ng-container *ngIf="!viewAllMobile">
|
|
|
|
|
<div *ngIf="hasAggregationStatusInfo || (dataProviderInfo.fundedContent && dataProviderInfo.fundedContent > 0)"
|
|
|
|
|
class="uk-margin-medium-bottom uk-animation-fade uk-animation-fast">
|
|
|
|
|
<span *ngIf="dataProviderInfo.aggregationStatus?.fulltexts && dataProviderInfo.aggregationStatus?.fulltexts != -1"
|
|
|
|
|
class="uk-margin-right uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Collected full-texts</div>
|
|
|
|
|
{{dataProviderInfo.aggregationStatus.fulltexts | number}}
|
|
|
|
|
</span>
|
|
|
|
|
<span *ngIf="dataProviderInfo.fundedContent && dataProviderInfo.fundedContent > 0"
|
|
|
|
|
class="uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Results with funding information</div>
|
|
|
|
|
{{dataProviderInfo.fundedContent | number}}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="!aggregationStatusIsInitialized || !dataProviderInfo.fundedContent"
|
|
|
|
|
class="uk-animation-fade uk-margin-top uk-width-1-1" role="alert">
|
|
|
|
|
<span class="loading-gif uk-align-center"></span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.countries != undefined && dataProviderInfo.countries.length > 0"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Countries</div>
|
|
|
|
|
{{dataProviderInfo.countries.join(", ")}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.jurisdiction" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Jurisdiction</div>
|
|
|
|
|
{{dataProviderInfo.jurisdiction}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.contentpolicy" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Content policy</div>
|
|
|
|
|
{{dataProviderInfo.contentpolicy}}
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<!-- Subjects -->
|
|
|
|
|
<div *ngIf="dataProviderInfo.subjects && dataProviderInfo.subjects.length > 0 && (!viewAllMobile || viewAllMobile == 'subjects')"
|
|
|
|
|
class="uk-margin-medium-bottom uk-margin-bottom">
|
|
|
|
|
<div class="uk-height-max-medium uk-overflow-auto">
|
|
|
|
|
<div *ngIf="viewAllMobile != 'subjects'" class="uk-text-meta uk-margin-small-bottom">Subjects </div>
|
|
|
|
|
<ng-container *ngIf="!viewAllMobile">
|
|
|
|
|
<span>{{dataProviderInfo.subjects.slice(0, lessBtnSubjects ? dataProviderInfo.subjects.length : thresholdSubjects).join(", ")}}</span>
|
|
|
|
|
<span *ngIf="dataProviderInfo.subjects.length > thresholdSubjects && !lessBtnSubjects"> ... </span>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-container *ngIf="viewAllMobile == 'subjects'">
|
|
|
|
|
<span>{{dataProviderInfo.subjects.join(", ")}}</span>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.subjects.length > thresholdSubjects && !lessBtnSubjects && viewAllMobile != 'subjects'"
|
|
|
|
|
class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllSubjectsClick();" class="view-more-less-link">
|
|
|
|
|
View all {{dataProviderInfo.subjects.length | number}} subjects
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="viewAllSubjects && lessBtnSubjects" class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllSubjects = !viewAllSubjects; lessBtnSubjects=false;" class="view-more-less-link">View less subjects</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="hasSecondaryInfo"
|
|
|
|
|
[class]="'uk-inline uk-padding-remove-horizontal ' + (hasPrimaryInfo?'uk-width-1-3@m': 'uk-width-expand')" [ngClass]="isMobile ? '' : 'uk-padding'">
|
|
|
|
|
<div class="uk-height-1-1" [ngClass]="isMobile ? '' : 'uk-padding uk-padding-remove-vertical'">
|
|
|
|
|
<div *ngIf="(dataProviderInfo.oaiPmhURL || dataProviderInfo.provenance?.size > 0) && !viewAllMobile"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div *ngIf="dataProviderInfo.oaiPmhURL" class="uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">OAI-PMH</div>
|
|
|
|
|
<a target="_blank" href="{{dataProviderInfo.oaiPmhURL}}" class="custom-external">
|
|
|
|
|
{{dataProviderInfo.oaiPmhURL}}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.provenance?.size > 0" class="uk-display-inline-block">
|
|
|
|
|
<div class="uk-text-meta uk-margin-small-bottom">Detailed information @ </div>
|
|
|
|
|
<span *ngFor="let provenance of getKeys(dataProviderInfo.provenance); let i=index">
|
|
|
|
|
<a *ngIf="dataProviderInfo.provenance.get(provenance).url.length == 1" class="custom-external uk-link-text"
|
|
|
|
|
target="_blank" href="{{dataProviderInfo.provenance.get(provenance).url}}">
|
|
|
|
|
{{provenance}}
|
|
|
|
|
</a>
|
|
|
|
|
<ng-container *ngIf="dataProviderInfo.provenance.get(provenance).url.length > 1">
|
|
|
|
|
<span class="custom-external">{{provenance}}</span>
|
|
|
|
|
<ng-container *ngFor="let url of dataProviderInfo.provenance.get(provenance).url; let i=index">
|
|
|
|
|
[<a target="_blank" href="{{url}}">{{i}}</a>]
|
|
|
|
|
</ng-container>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<span *ngIf="i < dataProviderInfo.provenance.size-1">, </span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="dataProviderInfo.organizations && dataProviderInfo.organizations.length > 0 && (!viewAllMobile || viewAllMobile == 'organizations')"
|
|
|
|
|
class="uk-margin-medium-bottom">
|
|
|
|
|
<div *ngIf="viewAllMobile != 'organizations'" class="uk-text-meta uk-margin-small-bottom">{{openaireEntities.ORGANIZATIONS}}</div>
|
|
|
|
|
<ng-container *ngTemplateOutlet="organizations_template; context: { threshold: (lessBtnOrganizations || viewAllMobile == 'organizations') ? dataProviderInfo.organizations.length : thresholdOrganizations }"></ng-container>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataProviderInfo.organizations.length > thresholdOrganizations && !lessBtnOrganizations && viewAllMobile != 'organizations'"
|
|
|
|
|
class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllOrganizationsClick();" class="view-more-less-link">
|
|
|
|
|
View all {{dataProviderInfo.organizations.length | number}} organizations
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="viewAllOrganizations && lessBtnOrganizations" class="uk-width-1-1 uk-text-right">
|
|
|
|
|
<a (click)="viewAllOrganizations = !viewAllOrganizations; lessBtnOrganizations=false;" class="view-more-less-link">View less organizations</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #projects_content>
|
|
|
|
|
<div id="projects" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchProjects" resultType="project"
|
|
|
|
|
[params]="getParamsForSearchLink()"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedProjects"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #dataproviders_content>
|
|
|
|
|
<div id="datasources" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchDataproviders" resultType="dataprovider"
|
|
|
|
|
[params]="getParamsForSearchLink()"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedDataProviders"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #publications_content>
|
|
|
|
|
<div id="publications" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchPublications" resultType="publication"
|
|
|
|
|
[params]="getParamsForSearchLink('publications')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #datasets_content>
|
|
|
|
|
<div id="datasets" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchDatasets" resultType="dataset"
|
|
|
|
|
[params]="getParamsForSearchLink('datasets')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #software_content>
|
|
|
|
|
<div id="software" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchSoftware" resultType="software"
|
|
|
|
|
[params]="getParamsForSearchLink('software')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #other_content>
|
|
|
|
|
<div id="other" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<search-tab [fetch]="fetchOrps" resultType="other"
|
|
|
|
|
[params]="getParamsForSearchLink('other')"
|
|
|
|
|
[searchLinkToAdvancedPage]="properties.searchLinkToAdvancedResults"
|
|
|
|
|
[properties]="properties">
|
|
|
|
|
</search-tab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #relatedDatasources_content>
|
|
|
|
|
<div id="relatedDatasources" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<relatedDatasourcesTab
|
|
|
|
|
[dataproviderId]="datasourceId"
|
|
|
|
|
[results]="dataProviderInfo.relatedDatasources"
|
|
|
|
|
[loading]="loadingRelatedDatasources"
|
|
|
|
|
[fetchResults]="fetchAggregatorsResults"
|
|
|
|
|
[collectedFromName]="dataProviderInfo.title.name"
|
|
|
|
|
[properties]=properties
|
|
|
|
|
[modal]="relatedDatasourcesModal">
|
|
|
|
|
</relatedDatasourcesTab>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #statistics_content>
|
|
|
|
|
<div id="statistics" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<div class="uk-text-meta uk-text-large uk-text-uppercase uk-margin-medium-bottom">Statistics</div>
|
|
|
|
|
<errorMessages [status]="[fetchPublications.searchUtils.status, fetchDatasets.searchUtils.status,
|
|
|
|
|
fetchSoftware.searchUtils.status, fetchOrps.searchUtils.status]"
|
|
|
|
|
[type]="'statistics'" tab_error_class=true></errorMessages>
|
|
|
|
|
<div *ngIf="statsClicked &&
|
|
|
|
|
(fetchPublications.searchUtils.status == errorCodes.DONE || fetchDatasets.searchUtils.status == errorCodes.DONE
|
|
|
|
|
|| fetchSoftware.searchUtils.status == errorCodes.DONE || fetchOrps.searchUtils.status == errorCodes.DONE)">
|
|
|
|
|
<statisticsTab [fetchPublications]="fetchPublications" [fetchDatasets]="fetchDatasets"
|
|
|
|
|
[fetchSoftware]="fetchSoftware" [fetchOther]="fetchOrps"
|
|
|
|
|
[datasourceId]="datasourceId">
|
|
|
|
|
</statisticsTab>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<ng-template #metricsContent>
|
|
|
|
|
<div id="metrics" class="landing-section uk-padding uk-padding-remove-horizontal">
|
|
|
|
|
<ul class="uk-subnav uk-subnav-pill-alt uk-margin-remove" uk-switcher>
|
|
|
|
|
<li class="uk-padding-remove">
|
|
|
|
|
<a href="#">Overview</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li *ngIf="totalDownloads ||totalViews">
|
|
|
|
|
<a href="#" (click)="clickedUsageMetrics()">Usage</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="uk-switcher uk-margin-large-top">
|
|
|
|
|
<!-- overview -->
|
|
|
|
|
<li>
|
|
|
|
|
<div *ngIf="totalDownloads || totalViews">
|
|
|
|
|
<div class="uk-grid-divider" uk-grid>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="uk-text-center uk-margin-small-bottom">
|
|
|
|
|
<img src="assets/common-assets/logo-small-usage-counts.png" loading="lazy" alt="OpenAIRE UsageCounts">
|
|
|
|
|
</div>
|
|
|
|
|
<span class="uk-text-uppercase uk-text-xsmall">Usage by</span>
|
|
|
|
|
<span class="uk-display-block uk-text-bolder">UsageCounts</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<table class="uk-table uk-table-small">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr *ngIf="totalDownloads">
|
|
|
|
|
<td class="uk-padding-remove-top">
|
|
|
|
|
<icon name="download" [flex]="true" [ratio]="1.2" customClass="uk-text-background text-usage-counts"></icon>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-top">
|
|
|
|
|
Downloads
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-top uk-text-uppercase uk-text-bolder"
|
|
|
|
|
[attr.uk-tooltip]="totalDownloads >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalDownloads | number}}">
|
|
|
|
|
{{formatNumber(totalDownloads)}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr *ngIf="totalViews">
|
|
|
|
|
<td class="uk-padding-remove-bottom">
|
|
|
|
|
<icon name="visibility" [flex]="true" [ratio]="1.2" customClass="uk-text-background text-usage-counts"></icon>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-bottom">
|
|
|
|
|
Views
|
|
|
|
|
</td>
|
|
|
|
|
<td class="uk-padding-remove-bottom uk-text-uppercase uk-text-bolder"
|
|
|
|
|
[attr.uk-tooltip]="totalViews >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalViews | number}}">
|
|
|
|
|
{{formatNumber(totalViews)}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- usage -->
|
|
|
|
|
<li *ngIf="totalDownloads || totalViews">
|
|
|
|
|
<div class="uk-flex uk-flex-center uk-flex-middle uk-flex-wrap" [class.uk-flex-column]="isMobile">
|
|
|
|
|
<div class="uk-margin-large-right uk-flex uk-flex-center uk-flex-middle uk-flex-wrap" [class.uk-flex-column]="!isMobile">
|
|
|
|
|
<div *ngIf="totalDownloads" class="uk-text-center uk-margin-medium-bottom" [class.uk-margin-medium-right]="isMobile">
|
|
|
|
|
<div class="uk-text-background uk-text-bold number metrics-number"
|
|
|
|
|
[attr.uk-tooltip]="totalDownloads >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalDownloads | number}}">{{formatNumber(totalDownloads)}}</div>
|
|
|
|
|
<div class="uk-text-bold">Downloads</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="totalViews" class="uk-text-center uk-margin-medium-bottom">
|
|
|
|
|
<div class="uk-text-background uk-text-bold number metrics-number"
|
|
|
|
|
[attr.uk-tooltip]="totalViews >= 1000 ? 'cls: uk-active' : 'cls: uk-invisible'"
|
|
|
|
|
title="{{totalViews | number}}">{{formatNumber(totalViews)}}</div>
|
|
|
|
|
<div class="uk-text-bold">Views</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngIf="viewsFrameUrl || downloadsFrameUrl">
|
|
|
|
|
<div *ngIf="metricsClicked && downloadsFrameUrl && totalDownloads" class="uk-margin-large-right">
|
|
|
|
|
<i-frame [height]="300" [url]="downloadsFrameUrl" [addClass]="false"
|
|
|
|
|
customContainerClass="uk-background-default" customIframeClass="uk-blend-multiply uk-height-1-1"></i-frame>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="metricsClicked && viewsFrameUrl && totalViews" class="uk-margin-large-right">
|
|
|
|
|
<i-frame [height]="300" [url]="viewsFrameUrl" [addClass]="false"
|
|
|
|
|
customContainerClass="uk-background-default" customIframeClass="uk-blend-multiply uk-height-1-1">
|
|
|
|
|
</i-frame>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="uk-text-center uk-margin-large-top">
|
|
|
|
|
<span class="uk-text-meta">Powered by</span>
|
|
|
|
|
<img class="uk-margin-small-left uk-margin-small-right uk-width-small" src="assets/common-assets/logo-large-usage-counts.png" loading="lazy" alt="OpenAIRE UsageCounts">
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
<fs-modal *ngIf="dataProviderInfo" #addThisFsModal classTitle="uk-tile-default uk-border-bottom" classBody="uk-flex uk-flex-center uk-flex-middle">
|
|
|
|
|
<addThis></addThis>
|
|
|
|
|
</fs-modal>
|