298 lines
19 KiB
HTML
298 lines
19 KiB
HTML
<ng-template #filters_column>
|
|
<div *ngIf="filters.length > 0" class=" search-filters ">
|
|
<div *ngIf="filters.length > 0">
|
|
<div class="uk-grid uk-flex uk-flex-bottom">
|
|
<h5 class="uk-text-bold">Filters</h5>
|
|
<a *ngIf="countFilters()>1" (click)="clearFilters()"
|
|
[class]="((disableForms)?'uk-disabled uk-link-muted':'')+' portal-link ' + 'uk-width-1-2'">
|
|
Clear All
|
|
</a>
|
|
</div>
|
|
<div *ngIf="countFilters()>0" class="uk-grid uk-grid-small uk-text-small uk-margin-medium-bottom" uk-grid>
|
|
<ng-container *ngFor="let filter of filters " >
|
|
<ng-container *ngIf = "filter.countSelectedValues > 0">
|
|
<span *ngFor="let value of getSelectedValues(filter); let i = index; let end = last; "
|
|
[title]="'Remove '+value.name" (click) = "removeFilter(value, filter) " >
|
|
<!-- if no grid on the div above, remove it and move class 'selectedFilterLabel' on top span -->
|
|
<span class="selectedFilterLabel ">
|
|
<a [class]="((disableForms)?' uk-disabled':' ')+' uk-link-text '">
|
|
<span class=" clickable" aria-hidden="true">
|
|
<span class="uk-icon">
|
|
<svg width="16" height="16" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="close" ratio="0.8"><path fill="none" stroke="#000" stroke-width="1.6" d="M16,16 L4,4"></path><path fill="none" stroke="#000" stroke-width="1.6" d="M16,4 L4,16"></path></svg>
|
|
</span>
|
|
</span>
|
|
<span class="uk-margin-small-left" [innerHtml]="(value.name.length > 34)?value.name.substring(0,34)+'...':value.name"></span>
|
|
</a>
|
|
</span>
|
|
</span>
|
|
</ng-container>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="uk-margin-top">
|
|
<search-filter *ngFor="let filter of filters " [isDisabled]="disableForms" [filter]="filter" [showResultCount]=showResultCount (change)="filterChanged($event)" (toggleModal)="toggleModal($event)"></search-filter>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
<ng-template #paging>
|
|
<div *ngIf="searchUtils.totalResults > 0" >
|
|
|
|
<div class= "paging-hr searchPaging uk-margin-small-bottom"
|
|
*ngIf="(results && searchUtils.totalResults > 0) || (searchUtils.status == errorCodes.LOADING)">
|
|
<div class="uk-panel uk-margin-small-top uk-grid uk-flex uk-flex-middle">
|
|
<div class="uk-width-1-1@s uk-width-1-2@m uk-text-uppercase"
|
|
*ngIf="results && searchUtils.totalResults > 0">
|
|
{{searchUtils.totalResults|number}}
|
|
<span class="uk-text-muted uk-text-uppercase"> {{type}}, page </span>
|
|
{{searchUtils.page | number}}
|
|
<span class="uk-text-muted uk-text-uppercase"> of </span>
|
|
{{(totalPages()|number)}}
|
|
</div>
|
|
<div class="float-children-right-at-medium margin-small-top-at-small uk-width-expand" *ngIf=" searchUtils.status != errorCodes.LOADING">
|
|
<paging-no-load [currentPage]="searchUtils.page" [totalResults]="searchUtils.totalResults" [size]="searchUtils.size" (pageChange)="goTo($event.value)"></paging-no-load>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
|
|
<div *ngIf="!includeOnlyResultsAndFilter"
|
|
[class]=" (!customFilter || customFilter.queryFieldName != 'communityId') ?
|
|
' image-front-topbar uk-section-default uk-position-relative ' :
|
|
(' uk-padding-remove-bottom uk-padding-remove-top ')"
|
|
class="image-front-topbar uk-section-default uk-position-relative"
|
|
uk-scrollspy="{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}" tm-header-transparent="light">
|
|
<div style=" min-height: 220px; "
|
|
[class]="' uk-background-norepeat uk-background-cover uk-background-bottom-center uk-padding-remove-bottom uk-flex uk-flex-middle uk-background-fixed '+searchFormClass">
|
|
|
|
<div [class]="(!customFilter || customFilter.queryFieldName != 'communityId')?'uk-position-cover':''" ></div>
|
|
<div class="uk-width-1-1">
|
|
<breadcrumbs *ngIf="showBreadcrumb && !includeOnlyResultsAndFilter"
|
|
addClass=" uk-margin-large-left uk-margin-remove-bottom uk-margin-small-top" [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
|
<div class="uk-position-relative">
|
|
|
|
|
|
<div class="uk-container ">
|
|
<div class="uk-width-1-1">
|
|
|
|
<!-- <search-form [isDisabled]="disableForms" [(keyword)]="searchUtils.keyword" (keywordChange)="keywordChanged($event)" [placeholderText]="formPlaceholderText"></search-form>-->
|
|
<form class=" uk-margin uk-margin-top ">
|
|
<div class="uk-grid uk-margin-small-left">
|
|
<div *ngIf="enableEntitySelection" class="uk-margin-small-top uk-padding-remove-left">
|
|
<entities-selection [simpleView]="true" [currentEntity]="entityType"
|
|
[properties]="properties" [onChangeNavigate]="true" [customFilter]="customFilter"
|
|
|
|
></entities-selection>
|
|
</div>
|
|
<div class=" uk-padding-remove-left uk-margin-small-top" >
|
|
<div class="uk-inline">
|
|
<a *ngIf="searchUtils.keyword.length > 0" class="uk-form-icon uk-form-icon-flip"
|
|
(click)="searchUtils.keyword = ''; goTo(1);"
|
|
uk-icon="icon: close"></a>
|
|
<input type="text" class="uk-input uk-width-xlarge@l uk-width-large@m uk-width-medium"
|
|
[placeholder]="formPlaceholderText"
|
|
[(ngModel)]="searchUtils.keyword"
|
|
name="keyword">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="uk-padding-remove-left uk-margin-small-top">
|
|
|
|
<button (click)="goTo(1)" type="submit"
|
|
class="uk-button portal-button uk-text-bold uk-padding uk-padding-remove-vertical uk-margin-small-left">
|
|
Search
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<schema2jsonld *ngIf="url" [URL]="url" type="search" [name]=pageTitle [searchAction]=false></schema2jsonld>
|
|
|
|
<div id="tm-main" class=" uk-section uk-padding-remove-top tm-middle " >
|
|
<div uk-grid>
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
<breadcrumbs *ngIf="showBreadcrumb && includeOnlyResultsAndFilter"
|
|
addClass="uk-margin-large-left uk-margin-remove-bottom uk-margin-small-top" [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
|
<div class="uk-container uk-container-large">
|
|
<helper *ngIf="pageContents && pageContents['top'] && pageContents['top'].length > 0" [texts]="pageContents['top']"></helper>
|
|
<div class="uk-width-2-3@m uk-width-2-3@l uk-width-1-1@s">
|
|
<div *ngIf="filters.length > 0" class="uk-offcanvas-content uk-hidden@m">
|
|
<a href="#offcanvas-usage" uk-toggle>
|
|
<span class="uk-icon uk-margin-small-right uk-margin-small-left">
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" data-svg="settings">
|
|
<ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15"></ellipse>
|
|
<ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15"></ellipse>
|
|
<circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15"></circle>
|
|
<rect x="1" y="3" width="3" height="1"></rect>
|
|
<rect x="10" y="3" width="8" height="1"></rect>
|
|
<rect x="1" y="9" width="8" height="1"></rect>
|
|
<rect x="15" y="9" width="3" height="1"></rect>
|
|
<rect x="1" y="15" width="3" height="1"></rect>
|
|
<rect x="10" y="15" width="8" height="1"></rect>
|
|
</svg>
|
|
</span>
|
|
<span>Filters <span *ngIf="countFilters()>1">({{(countFilters())}})</span></span>
|
|
|
|
</a>
|
|
<div id="offcanvas-usage" uk-offcanvas overlay style="z-index:10000;">
|
|
<div class="uk-offcanvas-bar offcanvas-white">
|
|
<button class="uk-offcanvas-close" type="button" uk-close></button>
|
|
<ng-container *ngTemplateOutlet="filters_column; context: {}"></ng-container>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="uk-grid uk-width-1-1 uk-margin-top">
|
|
<div *ngIf="filters.length > 0" class="uk-width-1-5@m search-filters uk-visible@m ">
|
|
<ng-container *ngTemplateOutlet="filters_column; context: {}" class=""></ng-container>
|
|
</div>
|
|
|
|
<div class="uk-width-expand@m uk-width-1-1@s uk-first-column custom-dataTable-content" >
|
|
<div *ngIf="openaireLink && (searchUtils.totalResults > 0 || !disableForms )">
|
|
<a class="uk-button uk-button-text" [href]=openaireLink target="_blank">Results in OpenAIRE</a>
|
|
</div>
|
|
<div *ngIf="searchUtils.totalResults > 0" class="uk-align-center uk-margin-remove-bottom ">
|
|
<div class="uk-grid">
|
|
<div class="uk-width-expand@m uk-grid uk-grid-medium uk-margin-small-bottom">
|
|
<search-results-per-page class="uk-width-1-1" [(size)]="searchUtils.size" (sizeChange)="sizeChanged($event)"></search-results-per-page>
|
|
</div>
|
|
<div class="uk-flex uk-flex-middle uk-width-auto@m uk-margin-small-bottom">
|
|
<span *ngIf="searchViewLink" class="uk-width-expand">
|
|
<a uk-tooltip="title: List view" routerLinkActive="router-link-active" [class]="((disableForms
|
|
&& !enableSearchView)?'uk-disabled uk-link-muted':'') +'uk-link-text'"
|
|
[routerLink]=searchViewLink >
|
|
<span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="table" ratio="1"><rect x="1" y="3" width="18" height="1"></rect><rect x="1" y="7" width="18" height="1"></rect><rect x="1" y="11" width="18" height="1"></rect><rect x="1" y="15" width="18" height="1"></rect></svg></span>
|
|
List view
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<ng-container *ngTemplateOutlet="paging; context: {}"></ng-container>
|
|
</div>
|
|
|
|
<!-- <div *ngIf="searchViewLink" class="uk-width-1-1@s uk-hidden@m">
|
|
<p>
|
|
<span class="uk-margin-small-right uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ratio="1"><rect x="2" y="2" width="3" height="3"></rect><rect x="8" y="2" width="3" height="3"></rect><rect x="14" y="2" width="3" height="3"></rect><rect x="2" y="8" width="3" height="3"></rect><rect x="8" y="8" width="3" height="3"></rect><rect x="14" y="8" width="3" height="3"></rect><rect x="2" y="14" width="3" height="3"></rect><rect x="8" y="14" width="3" height="3"></rect><rect x="14" y="14" width="3" height="3"></rect></svg></span>
|
|
|
|
<a routerLinkActive="router-link-active" [class]="(disableForms && !enableSearchView)?'uk-disabled uk-link-muted':''" [routerLink]=searchViewLink >
|
|
<span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="table" ratio="1"><rect x="1" y="3" width="18" height="1"></rect><rect x="1" y="7" width="18" height="1"></rect><rect x="1" y="11" width="18" height="1"></rect><rect x="1" y="15" width="18" height="1"></rect></svg></span>
|
|
</a>
|
|
</p>
|
|
</div> -->
|
|
|
|
<div *ngIf="searchUtils.totalResults <= 0" class="errors-in-searchTableView">
|
|
<errorMessages [status]="[searchUtils.status]" [type]="'results'"></errorMessages>
|
|
</div>
|
|
|
|
<div *ngIf="searchUtils.status == errorCodes.LOADING || searchUtils.status == errorCodes.DONE" class="uk-overflow-auto">
|
|
<!-- #mf="mfDataTable" [mfRowsOnPage]="rowsOnPage"
|
|
[mfData]="results | contentProvidersDatatable : [searchUtils, filters, triggerPipe, cd]"
|
|
|
|
-->
|
|
<table datatable class="uk-table uk-table-striped divider-table" [dtOptions]="dtOptions" id="dpTable" [dtTrigger]="dtTrigger" dtInstance="dtInstanceCallback">
|
|
<thead >
|
|
<tr>
|
|
<th *ngFor="let column of columnNames" class="uk-text-center">{{column}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="uk-table-middle" *ngFor="let result of results">
|
|
<td *ngIf="result.hasOwnProperty('title')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<a [queryParams]="{datasourceId: result.id}" routerLinkActive="router-link-active" routerLink="/search/dataprovider">
|
|
<span *ngIf="result.title.name"
|
|
[innerHTML]="result.title.name">
|
|
</span>
|
|
<span *ngIf="!result.title.name">
|
|
[no title available]
|
|
</span>
|
|
</a>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('type')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngIf="result.type">{{result.type}}</span>
|
|
<span *ngIf="!result.type">-</span>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('countries')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngFor="let country of result['countries'].slice(0,5) let i = index">{{country}}{{(i < ( result['countries'].slice(0,5).length-1))?", ":""}}{{(i == result['countries'].slice(0,5).length-1 && result['countries'].length > 5)?"...":""}}</span>
|
|
<span *ngIf="result.countries.length == 0">-</span>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('organizations')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngFor="let org of result['organizations'].slice(0,5) let i = index">
|
|
<a *ngIf="org.id" [queryParams]="{organizationId: org.id}" routerLinkActive="router-link-active" routerLink="/search/organization">{{org.name}}</a><span *ngIf="!org.id">{{org.name}}</span>{{(i < ( result['organizations'].slice(0,5).length-1))?", ":""}}{{(i == result['organizations'].slice(0,5).length-1 && result['organizations'].length > 5)?"...":""}}
|
|
</span>
|
|
<span *ngIf="result.organizations.length == 0">-</span>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('compatibility')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngIf="result.compatibility">{{result.compatibility}}</span>
|
|
<span *ngIf="!result.compatibility">-</span>
|
|
</td>
|
|
|
|
<!--Community Projects-->
|
|
<td *ngIf="result.hasOwnProperty('acronym') && result.hasOwnProperty('name')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<a [queryParams]="(result.openaireId) ? {projectId: result.openaireId} : {grantId: encode(result.grantId), funder: encode(result.funder)}"
|
|
routerLinkActive="router-link-active" routerLink="/search/project">
|
|
<span *ngIf="result.name">{{result.name}}</span>
|
|
<span *ngIf="result.name && result.acronym">(</span
|
|
><span *ngIf="result.acronym">{{result.acronym}}</span
|
|
><span *ngIf="result.name && result.acronym">)</span>
|
|
<span *ngIf="!result.name && !result.acronym">[no title available]</span>
|
|
</a>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('grantId')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngIf="result.grantId">{{result.grantId}}</span>
|
|
<span *ngIf="!result.grantId">-</span>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('funder')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngIf="result.funder">{{result.funder}}</span>
|
|
<span *ngIf="!result.funder">-</span>
|
|
</td>
|
|
|
|
<!--Community Content Providers-->
|
|
<td *ngIf="!result.hasOwnProperty('acronym') && result.hasOwnProperty('name')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<a [queryParams]="{datasourceId: result.openaireId}" routerLinkActive="router-link-active" routerLink="/search/dataprovider">
|
|
<span *ngIf="result.name">{{result.name}}</span>
|
|
<span *ngIf="!result.name">[no name available]</span>
|
|
</a>
|
|
</td>
|
|
<td *ngIf="result.hasOwnProperty('officialname')" [class]="'uk-text-center uk-width-1-'+columnNames.length">
|
|
<span *ngIf="result.officialname">{{result.officialname}}</span>
|
|
<span *ngIf="!result.officialname">-</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<!-- <thead *ngIf="searchUtils.totalResults > 0">
|
|
<tr><td colspan="5" class="uk-padding-remove-horizontal">
|
|
<span class="uk-h6">
|
|
{{searchUtils.totalResults}} content providers, page {{searchUtils.page}} of {{(totalPages())}}
|
|
</span>
|
|
<paging-no-load class="uk-float-right" [currentPage]="searchUtils.page" [totalResults]="searchUtils.totalResults" [size]="rowsOnPage" (pageChange)="goTo($event.value, false)"></paging-no-load>
|
|
</td></tr>
|
|
</thead> -->
|
|
</table>
|
|
</div>
|
|
|
|
<div *ngIf="searchUtils.totalResults > 0" class="uk-align-center uk-margin-remove-bottom">
|
|
<ng-container *ngTemplateOutlet="paging; context: {}"></ng-container>
|
|
</div>
|
|
<a *ngIf="properties.showLastIndexInformationLink" class="last_index_info uk-button-text uk-button"
|
|
[href]="properties.lastIndexInformationLink" target="_blank">
|
|
Last index information
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<modal-search-filter [filter]="currentFilter" [showResultCount]=showResultCount (modalChange)="filterChanged($event)"></modal-search-filter>
|
|
</div>
|
|
</div>
|
|
</div>
|