2019-07-22 16:15:23 +02:00
|
|
|
<div id="tm-main" class=" uk-section uk-padding-remove-top tm-middle" >
|
2017-12-19 13:53:46 +01:00
|
|
|
<div uk-grid uk-grid>
|
2019-07-22 11:16:50 +02:00
|
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
|
|
|
2019-07-22 16:15:23 +02:00
|
|
|
<div class="uk-container publication">
|
2019-07-22 11:16:50 +02:00
|
|
|
<div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning uk-margin-large-top"
|
|
|
|
role="alert">{{warningMessage}}</div>
|
|
|
|
<div *ngIf="errorMessage.length > 0" class="uk-alert uk-alert-danger uk-margin-large-top"
|
|
|
|
role="alert">{{errorMessage}}</div>
|
|
|
|
<div [style.display]="showLoading ? 'inline' : 'none'"
|
|
|
|
class="uk-animation-fade uk-margin-large-top uk-width-1-1" role="alert"><span
|
|
|
|
class="loading-gif uk-align-center"></span></div>
|
|
|
|
|
|
|
|
<div *ngIf="publicationInfo != null" uk-grid class="uk-grid-large">
|
|
|
|
<helper *ngIf="pageContents && pageContents['top'] && pageContents['top'].length > 0"
|
|
|
|
[texts]="pageContents['top']" styleName="uk-width-1-1"></helper>
|
|
|
|
<div class="uk-width-expand@m uk-width-1-1@s">
|
|
|
|
<schema2jsonld *ngIf="publicationInfo.record" [data]=publicationInfo.record
|
|
|
|
[URL]="properties.baseLink+'/search/publication?articleId='+articleId"></schema2jsonld>
|
|
|
|
<showTitle [titleName]="publicationInfo.title"></showTitle>
|
|
|
|
<span *ngIf="publicationInfo.types && publicationInfo.types.length > 0"
|
|
|
|
class="uk-label custom-label label-blue label-publication"
|
|
|
|
title="Type">{{publicationInfo.types.join(", ")}}</span>{{" "}}
|
|
|
|
<span *ngIf="publicationInfo.languages && publicationInfo.languages.length > 0"
|
|
|
|
class="uk-label custom-label label-language "
|
|
|
|
title="Language">{{publicationInfo.languages.join(", ")}}</span>{{" "}}
|
|
|
|
<span *ngIf="publicationInfo.countries && publicationInfo.countries.length > 0"
|
|
|
|
class="uk-label custom-label label-country "
|
|
|
|
title="Country">{{publicationInfo.countries.join(", ")}}</span>{{" "}}
|
2018-06-28 16:52:45 +02:00
|
|
|
<!-- <span *ngIf="publicationInfo.title && publicationInfo.title.accessMode" [class]="'uk-label custom-label label-'+ publicationInfo.title.accessMode ">{{publicationInfo.title.accessMode}}</span> -->
|
2019-07-22 11:16:50 +02:00
|
|
|
<span *ngIf="publicationInfo.accessMode"
|
|
|
|
[class]="'uk-label custom-label label-'+ publicationInfo.accessMode "
|
|
|
|
title="Access Mode">{{publicationInfo.accessMode}}</span>{{" "}}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<span *ngIf="publicationInfo.underCurationMessage" class="uk-label custom-label label-underCuration">
|
2017-12-19 13:53:46 +01:00
|
|
|
<span uk-tooltip="pos:right; delay:10"
|
2019-07-22 11:16:50 +02:00
|
|
|
title="{{buildCurationTooltip()}}">
|
2017-12-19 13:53:46 +01:00
|
|
|
<i>Record in preview</i>
|
|
|
|
<i class="uk-icon-info-circle"></i>
|
2019-06-06 12:02:37 +02:00
|
|
|
</span></span>{{" "}}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div class=" uk-margin-top">
|
|
|
|
<showAuthors [authors]="publicationInfo.authors"></showAuthors>
|
|
|
|
<span *ngIf="publicationInfo.date != ''">({{publicationInfo.date}})</span>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="uk-list">
|
2019-05-22 17:04:10 +02:00
|
|
|
<showPublisher [publisher]="publicationInfo.publisher"
|
2019-05-29 15:56:09 +02:00
|
|
|
[journal]="publicationInfo.journal" [properties]="properties"></showPublisher>
|
2019-07-22 11:16:50 +02:00
|
|
|
<li *ngIf="publicationInfo.embargoEndDate"><span
|
|
|
|
class="uk-text-bold">Embargo end date:</span> {{publicationInfo.embargoEndDate}}</li>
|
|
|
|
<li *ngIf="publicationInfo.identifiers && publicationInfo.identifiers.size > 0">
|
|
|
|
<showIdentifiers [identifiers]="publicationInfo.identifiers"></showIdentifiers>
|
|
|
|
</li>
|
|
|
|
<li
|
|
|
|
*ngIf="publicationInfo.subjects || publicationInfo.otherSubjects || publicationInfo.classifiedSubjects">
|
|
|
|
<showSubjects [subjects]="publicationInfo.subjects"
|
|
|
|
[otherSubjects]="publicationInfo.otherSubjects"
|
|
|
|
[classifiedSubjects]="publicationInfo.classifiedSubjects">
|
2017-12-19 13:53:46 +01:00
|
|
|
</showSubjects>
|
2019-07-22 11:16:50 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<hr *ngIf="publicationInfo.description">
|
|
|
|
<div *ngIf="publicationInfo.description"
|
|
|
|
class="uk-text-justify descriptionText uk-height-max-medium uk-overflow-auto">
|
2019-03-21 11:49:50 +01:00
|
|
|
<span>{{publicationInfo.description.substring(0, showNumDescription)}}</span
|
2019-06-13 16:14:11 +02:00
|
|
|
><!--span *ngIf="showNumDescription > thresholdDescription">
|
2019-03-21 11:49:50 +01:00
|
|
|
<a (click)="showNumDescription = thresholdDescription; scroll()">
|
|
|
|
View less
|
|
|
|
</a>
|
|
|
|
</span
|
2019-07-22 11:16:50 +02:00
|
|
|
--><span
|
|
|
|
*ngIf="showNumDescription == thresholdDescription && publicationInfo.description.length > thresholdDescription">...</span
|
|
|
|
><span
|
|
|
|
*ngIf="showNumDescription == thresholdDescription && publicationInfo.description.length > thresholdDescription"
|
|
|
|
class="uk-text-right">
|
2019-03-21 11:49:50 +01:00
|
|
|
<a (click)="showNumDescription = publicationInfo.description.length;">
|
|
|
|
View more
|
|
|
|
</a>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
<div *ngIf="publicationInfo.description && showNumDescription > thresholdDescription"
|
|
|
|
class="uk-width-1-1 uk-text-right">
|
|
|
|
<!-- scroll() -->
|
|
|
|
<a (click)="showNumDescription = thresholdDescription;">
|
|
|
|
View less
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<ul class="custom-accordion" uk-accordion>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li *ngIf="publicationInfo.references" (click)="activeTab='References'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
References
|
|
|
|
<!-- <span *ngIf="!publicationInfo.references" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.references" class="uk-badge uk-badge-notification">
|
|
|
|
{{publicationInfo.references.length | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{publicationInfo.references.length | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!publicationInfo.references" class = "uk-alert uk-alert-primary" >
|
|
|
|
No references available
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div *ngIf="publicationInfo.references"> -->
|
|
|
|
<div>
|
|
|
|
<div *ngIf="publicationInfo.references.length > pageSize" class="uk-margin-bottom">
|
|
|
|
<span class="uk-h6">{{publicationInfo.references.length | number}}
|
|
|
|
references, page {{referencesPage | number}}
|
|
|
|
of {{totalPages(publicationInfo.references.length) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="referencesPage"
|
|
|
|
[totalResults]="publicationInfo.references.length" [size]="pageSize"
|
|
|
|
(pageChange)="updateReferencesPage($event)"></paging-no-load>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div
|
|
|
|
*ngFor="let item of publicationInfo.references.slice((referencesPage-1)*pageSize, referencesPage*pageSize)">
|
|
|
|
<p *ngIf=" item && item['url']"
|
|
|
|
class="custom-external custom-icon">
|
|
|
|
<a href="{{item['url']}}" target="_blank">
|
|
|
|
{{item['name']}}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<p *ngIf="!item['url']" class="pseudo-external custom-icon">
|
|
|
|
{{item['name']}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-08 13:21:42 +02:00
|
|
|
</li>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-06-08 13:21:42 +02:00
|
|
|
<li *ngIf="publicationInfo.relatedResearchResults" (click)="activeTab='Related Research Results'">
|
2019-07-22 11:16:50 +02:00
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Related Research Results
|
|
|
|
<!-- <span *ngIf="!publicationInfo.relatedResearchResults" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.relatedResearchResults" class="uk-badge uk-badge-notification">
|
|
|
|
{{relatedResearchResultsNum | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{relatedResearchResultsNum | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!publicationInfo.relatedResearchResults" class = "uk-alert uk-alert-primary">
|
|
|
|
No related research results available
|
|
|
|
</div>
|
|
|
|
<div *ngIf="publicationInfo.relatedResearchResults"> -->
|
|
|
|
<div>
|
|
|
|
<div *ngFor="let provenanceaction of getKeys(publicationInfo.relatedResearchResults)">
|
|
|
|
<div class="uk-text-large">{{provenanceaction}}</div>
|
|
|
|
|
|
|
|
<tabTable [percentageName]="trust"
|
|
|
|
[info]="publicationInfo.relatedResearchResults.get(provenanceaction)"
|
|
|
|
[(properties)]=properties></tabTable>
|
2018-06-08 13:21:42 +02:00
|
|
|
</div>
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li *ngIf="publicationInfo.similarResearchResults" (click)="activeTab='Similar Research Results'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Similar Research Results
|
|
|
|
<!-- <span *ngIf="!publicationInfo.similarResearchResults" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.similarResearchResults" class="uk-badge uk-badge-notification">
|
|
|
|
{{publicationInfo.similarResearchResults.length | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{publicationInfo.similarResearchResults.length | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!publicationInfo.similarResearchResults" class = "uk-alert uk-alert-primary" >
|
|
|
|
No similar research results available
|
2018-06-08 13:21:42 +02:00
|
|
|
</div>
|
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div *ngIf="publicationInfo.similarResearchResults"> -->
|
|
|
|
<div>
|
|
|
|
<tabTable [percentageName]="similarity" [info]="publicationInfo.similarResearchResults"
|
|
|
|
[(properties)]=properties></tabTable>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li *ngIf="publicationInfo.organizations" (click)="activeTab='Related Organizations'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Related Organizations
|
|
|
|
<!-- <span *ngIf="!publicationInfo.organizations" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.organizations" class="uk-badge uk-badge-notification">
|
|
|
|
{{publicationInfo.organizations.length | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{publicationInfo.organizations.length | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!publicationInfo.organizations" class = "uk-alert uk-alert-primary">
|
|
|
|
No related organizations available
|
|
|
|
</div>
|
|
|
|
<div *ngIf="publicationInfo.organizations"> -->
|
|
|
|
<div>
|
|
|
|
<div *ngIf="publicationInfo.organizations.length > pageSize" class="uk-margin-bottom">
|
|
|
|
<span class="uk-text-bold">{{publicationInfo.organizations.length | number}}
|
|
|
|
organizations, page {{organizationsPage | number}}
|
|
|
|
of {{totalPages(publicationInfo.organizations.length) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="organizationsPage"
|
|
|
|
[totalResults]="publicationInfo.organizations.length" [size]="pageSize"
|
|
|
|
(pageChange)="updateOrganizationsPage($event)"></paging-no-load>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="uk-table uk-table-small uk-table-divider uk-table-middle ">
|
|
|
|
<tbody>
|
|
|
|
<tr
|
|
|
|
*ngFor="let organization of publicationInfo.organizations.slice((organizationsPage-1)*pageSize, organizationsPage*pageSize)">
|
|
|
|
<td>
|
|
|
|
<a *ngIf="(organization['id']) && ((organization['name']) || (organization['shortname']))"
|
|
|
|
[queryParams]="{organizationId: organization.id}" routerLinkActive="router-link-active"
|
|
|
|
routerLink="/search/organization">
|
|
|
|
{{organization['name']}}
|
|
|
|
<span *ngIf="organization.name && organization.shortname"> ( </span>
|
|
|
|
<span *ngIf="organization.shortname">{{organization.shortname}}</span>
|
|
|
|
<span *ngIf="organization.name && organization.shortname"> ) </span>
|
|
|
|
</a>
|
|
|
|
<p *ngIf="(!organization['id']) && ((organization['name']) || (organization['shortname']))">
|
|
|
|
{{organization['name']}}
|
|
|
|
<span *ngIf="organization.name && organization.shortname"> ( </span>
|
|
|
|
<span *ngIf="organization.shortname">{{organization.shortname}}</span>
|
|
|
|
<span *ngIf="organization.name && organization.shortname"> ) </span>
|
|
|
|
</p>
|
|
|
|
<div *ngIf="organization.country">{{organization.country}}</div>
|
|
|
|
<div *ngIf="organization.websiteUrl">Website url:
|
|
|
|
<a href="{{organization.websiteUrl}}" target="_blank">{{organization.websiteUrl}}</a>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div *ngIf="organization['trust']" title="{{organization['trust']}}%">
|
|
|
|
<div class="uk-text-center">{{organization['trust']}}%</div>
|
|
|
|
<progress class="uk-progress uk-margin-remove" value="{{organization['trust']}}"
|
|
|
|
max="100"></progress>
|
2018-06-08 13:21:42 +02:00
|
|
|
</div>
|
2019-07-22 11:16:50 +02:00
|
|
|
<div *ngIf="!organization['trust']">
|
|
|
|
<p>no trust available</p>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li *ngIf="publicationInfo.bioentities" (click)="activeTab='Bioentities'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Bioentities
|
|
|
|
<!-- <span *ngIf="!publicationInfo.bioentities" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.bioentities" class="uk-badge uk-badge-notification">
|
|
|
|
{{publicationInfo.bioentitiesNum | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{bioentitiesNum | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<div *ngIf="publicationInfo.bioentities && bioentitiesNum > pageSize" class="uk-margin-bottom">
|
|
|
|
<span class="uk-text-bold"> {{bioentitiesNum | number}}
|
|
|
|
bioentities, page {{bioentitiesPage | number}} of {{totalPages(bioentitiesNum) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="bioentitiesPage"
|
|
|
|
[totalResults]="bioentitiesNum" [size]="pageSize"
|
|
|
|
(pageChange)="updateBioentitiesPage($event)"></paging-no-load>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table id="bioentitiesTable" class="uk-table ">
|
|
|
|
<tbody>
|
|
|
|
<ng-container *ngFor="let key of getKeys(publicationInfo.bioentities) let i=index">
|
|
|
|
<tr
|
|
|
|
*ngFor="let keyIn of keysToArray(publicationInfo.bioentities.get(key)).slice((bioentitiesPage-1)*pageSize, bioentitiesPage*pageSize)">
|
|
|
|
<td class="uk-text-center" *ngIf="keyIn">
|
2018-06-08 13:21:42 +02:00
|
|
|
<span class="custom-external custom-icon">
|
|
|
|
<a href="{{publicationInfo.bioentities.get(key).get(keyIn)}}"
|
2019-07-22 11:16:50 +02:00
|
|
|
target="_blank">
|
2018-06-08 13:21:42 +02:00
|
|
|
{{keyIn}}
|
|
|
|
</a>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
</td>
|
|
|
|
<td class="uk-text-center">
|
|
|
|
{{key}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</ng-container>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li *ngIf="publicationInfo.software" (click)="activeTab='Software'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Software
|
|
|
|
<!-- <span *ngIf="!publicationInfo.software" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="publicationInfo.software" class="uk-badge uk-badge-notification">
|
|
|
|
{{publicationInfo.software.length | number}}
|
|
|
|
</span> -->
|
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{publicationInfo.software.length | number}})
|
|
|
|
<!-- </span> -->
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<div *ngIf="publicationInfo.software && publicationInfo.software.length > pageSize"
|
|
|
|
class="uk-margin-bottom">
|
|
|
|
<span class="uk-text-bold">{{publicationInfo.software.length | number}}
|
|
|
|
software results, page {{softwarePage | number}}
|
|
|
|
of {{totalPages(publicationInfo.software.length) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="softwarePage"
|
|
|
|
[totalResults]="publicationInfo.software.length" [size]="pageSize"
|
|
|
|
(pageChange)="updateSoftwarePage($event)"></paging-no-load>
|
|
|
|
</div>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<table id="softwareTable" class="uk-table ">
|
|
|
|
<tbody>
|
|
|
|
<tr
|
|
|
|
*ngFor="let item of publicationInfo.software.slice((softwarePage-1)*pageSize, softwarePage*pageSize)"
|
|
|
|
class="uk-text-center">
|
|
|
|
<td>
|
2018-06-08 13:21:42 +02:00
|
|
|
<span class="custom-external custom-icon">
|
|
|
|
<a href="{{item.url}}" target="_blank">
|
|
|
|
{{item.name}}
|
|
|
|
</a>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</li>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li (click)="activeTab='Other Citations'"
|
|
|
|
*ngIf="publicationInfo.openCitations && publicationInfo.openCitations.length > 0">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Open Citations
|
|
|
|
({{publicationInfo.openCitations.length | number}})
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<div *ngIf="publicationInfo.openCitations.length > pageSize" class="uk-margin-bottom">
|
|
|
|
<span class="uk-h6">{{publicationInfo.openCitations.length | number}}
|
|
|
|
open citations, page {{openCitationsPage | number}}
|
|
|
|
of {{totalPages(publicationInfo.openCitations.length) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="openCitationsPage"
|
|
|
|
[totalResults]="publicationInfo.openCitations.length" [size]="pageSize"
|
|
|
|
(pageChange)="updateOpenCitationsPage($event)"></paging-no-load>
|
|
|
|
</div>
|
2018-12-17 12:03:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<ul class="uk-list uk-list-divider uk-margin">
|
|
|
|
<li
|
|
|
|
*ngFor="let result of publicationInfo.openCitations.slice((openCitationsPage-1)*pageSize, openCitationsPage*pageSize)">
|
|
|
|
<!-- <h5>
|
|
|
|
<span *ngIf="result.url" class="custom-external custom-icon" >
|
|
|
|
<a target="_blank" [href]="result.url" *ngIf="result['title']" [innerHTML]="result['title']"></a>
|
|
|
|
<a target="_blank" [href]="result.url" *ngIf="!result['title']">[no title available]</a>
|
|
|
|
</span>
|
|
|
|
<p *ngIf="!result.url && result['title']"><span [innerHTML]="result['title']"></span></p>
|
|
|
|
<p *ngIf="!result.url && !result['title']">[no title available]</p>
|
|
|
|
</h5> -->
|
2018-12-17 12:03:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<h5 *ngIf="result.title">
|
|
|
|
<span *ngIf="result.url"
|
|
|
|
class="custom-external">
|
2018-12-17 12:03:46 +01:00
|
|
|
|
|
|
|
<a *ngIf="result.title" href="{{result.url}}" target="_blank"
|
2019-07-22 11:16:50 +02:00
|
|
|
[innerHTML]="result.title">
|
2018-12-17 12:03:46 +01:00
|
|
|
</a>
|
|
|
|
<a *ngIf="!result.title" href="{{result.url}}" target="_blank">
|
|
|
|
[no title available]
|
|
|
|
</a>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
<span *ngIf="result.title && !result.url" [innerHTML]="result.title"></span>
|
|
|
|
<span *ngIf="!result.title && !result.url">
|
2018-12-17 12:03:46 +01:00
|
|
|
[no title available]
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
</h5>
|
2018-12-17 12:03:46 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div>
|
2018-12-17 12:03:46 +01:00
|
|
|
<span *ngIf="result['authors']">
|
|
|
|
<span *ngFor="let author of result['authors'].slice(0,15)">
|
|
|
|
{{author}};
|
|
|
|
</span>
|
|
|
|
<span *ngIf="result['authors'].length > 15">...</span>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
<span *ngIf="result.year">
|
2018-12-17 12:03:46 +01:00
|
|
|
({{result.year}})
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
<span *ngIf="result.doi">Identifier: <a *ngIf="result.doi" target="_blank"
|
|
|
|
class="custom-external custom-icon"
|
|
|
|
href="{{doiURL}}{{result.doi}}">doi: {{result.doi}}</a></span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</li>
|
2019-03-05 10:45:42 +01:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li (click)="metricsClicked=true; activeTab='Metrics'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Metrics
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<metrics [pageViews]="pageViews"
|
|
|
|
[id]="articleId" [entityType]="'results'" [entity]="'Publication'"
|
|
|
|
(metricsResults)="metricsResults($event)" [(properties)]=properties>
|
|
|
|
</metrics>
|
|
|
|
<!--i-frame *ngIf="metricsClicked" [url]=viewsFrameUrl width="100%" height="250"></i-frame-->
|
|
|
|
<i-frame *ngIf="metricsClicked && totalViews>0"
|
|
|
|
[url]=viewsFrameUrl width="100%" height="250">
|
|
|
|
</i-frame>
|
|
|
|
<i-frame *ngIf="metricsClicked && totalDownloads>0"
|
|
|
|
[url]=downloadsFrameUrl width="100%" height="250">
|
|
|
|
</i-frame>
|
|
|
|
</div>
|
|
|
|
</li>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<li (click)="activeTab='Other Versions'"
|
|
|
|
*ngIf="properties.environment == 'development' && publicationInfo.deletedByInferenceIds">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Other Versions
|
|
|
|
({{publicationInfo.deletedByInferenceIds.length | number}})
|
|
|
|
</a>
|
|
|
|
<div *ngIf="activeTab=='Other Versions'" class="uk-accordion-content">
|
|
|
|
<deletedByInference [id]="articleId" [ids]="publicationInfo.deletedByInferenceIds"
|
|
|
|
[type]="'publications'"></deletedByInference>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
</div>
|
2019-07-22 11:16:50 +02:00
|
|
|
|
|
|
|
<div class="uk-width-large@m uk-width-1-1@s">
|
|
|
|
<div class=" uk-padding-small">
|
|
|
|
<div>
|
|
|
|
<div class="sideInfoTitle uk-margin-small-bottom">Share - Bookmark</div>
|
|
|
|
<addThis></addThis>
|
|
|
|
</div>
|
|
|
|
<altmetrics *ngIf="publicationInfo.identifiers && publicationInfo.identifiers.get('doi')"
|
|
|
|
id="{{publicationInfo.identifiers.get('doi')[0]}}" type="doi">
|
|
|
|
</altmetrics>
|
|
|
|
<ul class="uk-list uk-margin-remove-bottom">
|
2017-12-19 13:53:46 +01:00
|
|
|
<li *ngIf="publicationInfo.hostedBy_collectedFrom && publicationInfo.hostedBy_collectedFrom.length > 0">
|
2019-07-22 11:16:50 +02:00
|
|
|
<availableOn [availableOn]="publicationInfo.hostedBy_collectedFrom"></availableOn>
|
2017-12-19 13:53:46 +01:00
|
|
|
</li>
|
2019-07-22 11:16:50 +02:00
|
|
|
<li
|
|
|
|
*ngIf="publicationInfo.fundedByProjects != undefined && publicationInfo.fundedByProjects.length > 0">
|
|
|
|
<fundedBy [fundedByProjects]="publicationInfo.fundedByProjects"></fundedBy>
|
2017-12-19 13:53:46 +01:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li *ngIf="publicationInfo.contexts && publicationInfo.contexts.length >0 ">
|
2019-07-22 11:16:50 +02:00
|
|
|
<dl class="uk-description-list-line">
|
|
|
|
<dt class="sideInfoTitle">Related to</dt>
|
|
|
|
<dd class="line" *ngFor="let item of publicationInfo.contexts">
|
|
|
|
<span *ngIf="!item['inline']">
|
2017-12-19 13:53:46 +01:00
|
|
|
<span>{{item['labelContext']}}</span>
|
|
|
|
<span *ngIf="item['labelCategory']">-> {{item['labelCategory']}}</span>
|
|
|
|
<span *ngIf="item['labelConcept']">: {{item['labelConcept']}}</span>
|
|
|
|
</span>
|
2019-07-22 11:16:50 +02:00
|
|
|
<mark *ngIf="item['inline']">
|
|
|
|
<span>{{item['labelContext']}}</span>
|
|
|
|
<span *ngIf="item['labelCategory']">-> {{item['labelCategory']}}</span>
|
|
|
|
<span *ngIf="item['labelConcept']">: {{item['labelConcept']}}</span>
|
|
|
|
</mark>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
</li>
|
2018-06-08 13:21:42 +02:00
|
|
|
<li>
|
2018-07-19 12:47:21 +02:00
|
|
|
<!--metrics [pageViews]="pageViews" shortView=true
|
2018-06-08 13:21:42 +02:00
|
|
|
[id]="articleId" [entityType]="'results'" [entity]="'Publication'"
|
|
|
|
(metricsResults)="metricsResults($event)" [(properties)] = properties>
|
2018-07-19 12:47:21 +02:00
|
|
|
</metrics-->
|
2018-06-08 13:21:42 +02:00
|
|
|
</li>
|
2017-12-19 13:53:46 +01:00
|
|
|
<li>
|
2018-10-01 17:02:14 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<div class=" sideInfoTitle cite-this-button uk-width-1-1" type="button">
|
|
|
|
Cite this publication
|
|
|
|
</div>
|
|
|
|
<div class=" ">
|
|
|
|
<citeThis [result]="publicationInfo" [id]="articleId" type="publication"></citeThis>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
</li>
|
2019-07-22 11:16:50 +02:00
|
|
|
</ul>
|
2018-10-01 17:02:14 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
<button *ngIf="isRouteAvailable('participate/direct-claim') "
|
|
|
|
class=" uk-button portal-button uk-width-1-1 ">
|
2018-10-01 17:02:14 +02:00
|
|
|
<span class="uk-icon">
|
2019-07-22 11:16:50 +02:00
|
|
|
<svg icon="link" ratio="1" xmlns="http://www.w3.org/2000/svg" width="25" viewBox="0 0 20 20"
|
|
|
|
height="25"><path
|
|
|
|
d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"
|
|
|
|
fill="none" stroke="#000" stroke-width="1.1"></path><path
|
|
|
|
d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"
|
|
|
|
fill="none" stroke="#000" stroke-width="1.1"></path><path d="M7.925,11.875 L11.925,7.975"
|
|
|
|
fill="none" stroke="#000"
|
|
|
|
stroke-width="1.1"></path></svg>
|
2018-10-01 17:02:14 +02:00
|
|
|
</span> Link this publication to...
|
2019-07-22 11:16:50 +02:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<div *ngIf="isRouteAvailable('participate/direct-claim')" class=" uk-margin-remove-top uk-padding-small"
|
|
|
|
uk-dropdown="pos: bottom-left; mode:click"
|
|
|
|
style="background: transparent !important;box-shadow: none; max-width: 70px !important; min-width: 70px !important;">
|
|
|
|
<ul class="uk-iconnav uk-iconnav-vertical">
|
|
|
|
<li uk-tooltip="pos:right;" title="<div class='tooltip-custom-font-size '>Projects</div>">
|
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;"
|
|
|
|
[queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[articleId,'publication','project'])"
|
|
|
|
routerLinkActive="router-link-active" routerLink="/participate/direct-claim">
|
|
|
|
<span class="uk-icon">
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="album"
|
|
|
|
ratio="1"><rect x="5" y="2" width="10" height="1"></rect><rect x="3" y="4" width="14"
|
|
|
|
height="1"></rect><rect
|
|
|
|
fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"></rect></svg></span>
|
2018-10-01 17:02:14 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
2019-07-22 11:16:50 +02:00
|
|
|
<li uk-tooltip="pos:right;" title="<div class='tooltip-custom-font-size '>Communities</div>">
|
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;"
|
|
|
|
[queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[articleId,'publication','context'])"
|
|
|
|
routerLinkActive="router-link-active" routerLink="/participate/direct-claim">
|
|
|
|
<span class="uk-icon">
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
icon="users" ratio="1"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7"
|
|
|
|
cy="8.6" r="3.5"></circle><path fill="none" stroke="#000"
|
|
|
|
stroke-width="1.1"
|
|
|
|
d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"></path><path
|
|
|
|
fill="none" stroke="#000" stroke-width="1.1"
|
|
|
|
d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"></path></svg></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li uk-tooltip="pos:right;"
|
|
|
|
title="<div class='tooltip-custom-font-size uk-margin-small'>Other research results</div>">
|
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;"
|
|
|
|
[queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[articleId,'publication','result'])"
|
|
|
|
routerLinkActive="router-link-active" routerLink="/participate/direct-claim">
|
|
|
|
<span class="uk-icon">
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
icon="copy" ratio="1"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12"
|
|
|
|
height="16"></rect><polyline fill="none" stroke="#000"
|
|
|
|
points="5 0.5 17.5 0.5 17.5 17"></polyline></svg></span>
|
2018-10-01 17:02:14 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-01 17:02:14 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
<helper *ngIf="pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0"
|
|
|
|
[texts]="pageContents['bottom']" styleName="uk-width-1-1"></helper>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
2018-10-17 17:19:22 +02:00
|
|
|
|
2019-07-22 11:16:50 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|