92 lines
4.4 KiB
HTML
92 lines
4.4 KiB
HTML
<div uk-height-viewport="offset-top: true;offset-bottom: 60" style="box-sizing: border-box; "
|
|
class="image-front-topbar uk-background-norepeat uk-background-cover uk-background-bottom-center uk-section uk-padding-remove-bottom uk-flex uk-flex-middle uk-background-fixed generalSearchForm">
|
|
<div class="uk-container">
|
|
<div class="uk-position-relative">
|
|
|
|
|
|
<div class="uk-container">
|
|
<div class="uk-width-1-1">
|
|
|
|
<advanced-search-form
|
|
entityType="all"
|
|
|
|
(queryChange)="keywordChanged($event)"
|
|
[isDisabled]="disableForms"
|
|
[simpleView]="true" [formPlaceholderText]="formPlaceholderText"
|
|
|
|
[selectedFields]="selectedFields" [showSwitchSearchLink]="true"
|
|
[fieldIdsMap]="fieldIdsMap" [fieldIds]="fieldIds" [entitiesSelection]="true" [customFilter]="customFilter"
|
|
>
|
|
</advanced-search-form>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<schema2jsonld *ngIf="name && logoURL" [URL]="properties.domain+ properties.baseLink +'/search/find'"
|
|
[logoURL]="properties.domain + properties.baseLink+logoURL" type="search" [name]=name
|
|
description="Search for research outcomes (publications, datasets, software, other research products), projects, organizations, content providers in the OpenAIRE Research Graph. "></schema2jsonld>
|
|
<div class="uk-container-large uk-container">
|
|
|
|
<ul class=" portalTabs uk-tab uk-width-1-1 " uk-tab="animation: uk-animation-fade">
|
|
<li *ngIf="showPublications || showDatasets || showOrps || showSoftware" (click)="entityChanged('result')"
|
|
[class]="activeEntity == 'result'?'uk-active':''">
|
|
<a>
|
|
Research outcomes
|
|
<span *ngIf=" fetchPublications.searchUtils.totalResults!=null">
|
|
({{fetchPublications.searchUtils.totalResults | number}})</span>
|
|
</a>
|
|
</li>
|
|
<li *ngIf="showProjects" (click)="entityChanged('projects')" [class]="activeEntity == 'projects'?'uk-active':''">
|
|
<a>
|
|
Projects
|
|
<span *ngIf="fetchProjects.searchUtils.totalResults!=null">
|
|
({{fetchProjects.searchUtils.totalResults | number}})</span>
|
|
</a>
|
|
</li>
|
|
<li *ngIf="showDataProviders" (click)="entityChanged('datasources')"
|
|
[class]="activeEntity == 'datasources'?'uk-active':''">
|
|
<a>
|
|
Content Providers
|
|
<span *ngIf="fetchDataproviders.searchUtils.totalResults!=null">
|
|
({{fetchDataproviders.searchUtils.totalResults | number}})</span>
|
|
</a>
|
|
</li>
|
|
<li *ngIf="showOrganizations" (click)="entityChanged('organizations')"
|
|
[class]="activeEntity == 'organizations'?'uk-active':''">
|
|
<a>
|
|
Organizations
|
|
<span *ngIf="fetchOrganizations.searchUtils.totalResults!=null">
|
|
({{fetchOrganizations.searchUtils.totalResults | number}})</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<!-- <quick-selections *ngIf="activeEntity == 'result' && quickFilter" [resultTypes]="resultTypes"
|
|
(typeChange)="quickSelectionsChanged()" [isDisabled]="disableForms"
|
|
[quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
|
|
[properties]="properties">
|
|
</quick-selections>-->
|
|
|
|
</div>
|
|
|
|
<search-research-results *ngIf="activeEntity == 'result'" resultType="result" [includeOnlyResultsAndFilter]="true"
|
|
(searchPageUpdates)="activeEntityUpdate($event)" [showSwitchSearchLink]="false"
|
|
simpleSearchLink="/search/find" [customFilter]="customFilter"></search-research-results>
|
|
|
|
<search-projects *ngIf="activeEntity == 'projects'" [includeOnlyResultsAndFilter]="true" [showSwitchSearchLink]="false"
|
|
(searchPageUpdates)="activeEntityUpdate($event)"
|
|
simpleSearchLink="/search/find" [customFilter]="customFilter">
|
|
</search-projects>
|
|
|
|
<search-organizations *ngIf="activeEntity == 'organizations'" [includeOnlyResultsAndFilter]="true" [showSwitchSearchLink]="false"
|
|
(searchPageUpdates)="activeEntityUpdate($event)"
|
|
simpleSearchLink="/search/find" [customFilter]="customFilter">
|
|
</search-organizations>
|
|
|
|
<search-dataproviders *ngIf="activeEntity == 'datasources'" [includeOnlyResultsAndFilter]="true" [showSwitchSearchLink]="false"
|
|
(searchPageUpdates)="activeEntityUpdate($event)"
|
|
simpleSearchLink="/search/find" [customFilter]="customFilter">
|
|
</search-dataproviders>
|