2020-10-23 20:19:32 +02:00
< 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">
2020-02-19 16:35:48 +01:00
< 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"
2020-08-13 13:15:10 +02:00
[selectedFields]="selectedFields" [showSwitchSearchLink]="true"
2020-04-03 18:00:19 +02:00
[fieldIdsMap]="fieldIdsMap" [fieldIds]="fieldIds" [entitiesSelection]="true" [customFilter]="customFilter"
2020-02-19 16:35:48 +01:00
>
< / advanced-search-form >
< / div >
< / div >
< / div >
< / div >
< / div >
2020-09-18 09:57:42 +02:00
< schema2jsonld * ngIf = "name && logoURL" [ URL ] = " properties . domain + properties . baseLink + ' / search / find ' "
[logoURL]="properties.domain + properties.baseLink+logoURL" type="search" [name]=name
2020-07-21 14:41:08 +02:00
description="Search for research outcomes (publications, datasets, software, other research products), projects, organizations, content providers in the OpenAIRE Research Graph. ">< / schema2jsonld >
2020-02-19 16:35:48 +01:00
< div class = "uk-container-large uk-container" >
2020-03-05 14:21:01 +01:00
< ul class = " portalTabs uk-tab uk-width-1-1 " uk-tab = "animation: uk-animation-fade" >
2020-02-19 16:35:48 +01:00
< li * ngIf = "showPublications || showDatasets || showOrps || showSoftware" ( click ) = " entityChanged ( ' result ' ) "
[class]="activeEntity == 'result'?'uk-active':''">
< a >
Research outcomes
2020-03-27 13:39:18 +01:00
< span * ngIf = " fetchPublications.searchUtils.totalResults!=null" >
2020-02-19 16:35:48 +01:00
({{fetchPublications.searchUtils.totalResults | number}})< / span >
< / a >
< / li >
< li * ngIf = "showProjects" ( click ) = " entityChanged ( ' projects ' ) " [ class ] = " activeEntity = = ' projects ' ? ' uk-active ' : ' ' " >
< a >
Projects
2020-03-27 13:39:18 +01:00
< span * ngIf = "fetchProjects.searchUtils.totalResults!=null" >
2020-02-19 16:35:48 +01:00
({{fetchProjects.searchUtils.totalResults | number}})< / span >
< / a >
< / li >
< li * ngIf = "showDataProviders" ( click ) = " entityChanged ( ' datasources ' ) "
[class]="activeEntity == 'datasources'?'uk-active':''">
< a >
Content Providers
2020-03-27 13:39:18 +01:00
< span * ngIf = "fetchDataproviders.searchUtils.totalResults!=null" >
2020-02-19 16:35:48 +01:00
({{fetchDataproviders.searchUtils.totalResults | number}})< / span >
< / a >
< / li >
< li * ngIf = "showOrganizations" ( click ) = " entityChanged ( ' organizations ' ) "
[class]="activeEntity == 'organizations'?'uk-active':''">
< a >
Organizations
2020-03-27 13:39:18 +01:00
< span * ngIf = "fetchOrganizations.searchUtils.totalResults!=null" >
2020-02-19 16:35:48 +01:00
({{fetchOrganizations.searchUtils.totalResults | number}})< / span >
< / a >
< / li >
< / ul >
2020-04-23 09:33:23 +02:00
<!-- <quick - selections *ngIf="activeEntity == 'result' && quickFilter" [resultTypes]="resultTypes"
2020-02-19 16:35:48 +01:00
(typeChange)="quickSelectionsChanged()" [isDisabled]="disableForms"
[quickFilter]="quickFilter" [QFselected]="(quickFilter)?quickFilter.selected:null"
[properties]="properties">
2020-04-23 09:33:23 +02:00
< / quick-selections > -->
2020-02-19 16:35:48 +01:00
< / div >
< search-research-results * ngIf = "activeEntity == 'result'" resultType = "result" [ includeOnlyResultsAndFilter ] = " true "
2020-08-13 13:15:10 +02:00
(searchPageUpdates)="activeEntityUpdate($event)" [showSwitchSearchLink]="false"
2020-11-18 17:06:27 +01:00
simpleSearchLink="/search/find" [customFilter]="customFilter">< / search-research-results >
2020-02-19 16:35:48 +01:00
2020-08-13 13:15:10 +02:00
< search-projects * ngIf = "activeEntity == 'projects'" [ includeOnlyResultsAndFilter ] = " true " [ showSwitchSearchLink ] = " false "
2020-02-19 16:35:48 +01:00
(searchPageUpdates)="activeEntityUpdate($event)"
2020-11-18 17:06:27 +01:00
simpleSearchLink="/search/find" [customFilter]="customFilter">
2020-02-19 16:35:48 +01:00
< / search-projects >
2020-08-13 13:15:10 +02:00
< search-organizations * ngIf = "activeEntity == 'organizations'" [ includeOnlyResultsAndFilter ] = " true " [ showSwitchSearchLink ] = " false "
2020-02-19 16:35:48 +01:00
(searchPageUpdates)="activeEntityUpdate($event)"
2020-11-18 17:06:27 +01:00
simpleSearchLink="/search/find" [customFilter]="customFilter">
2020-02-19 16:35:48 +01:00
< / search-organizations >
2020-08-13 13:15:10 +02:00
< search-dataproviders * ngIf = "activeEntity == 'datasources'" [ includeOnlyResultsAndFilter ] = " true " [ showSwitchSearchLink ] = " false "
2020-02-19 16:35:48 +01:00
(searchPageUpdates)="activeEntityUpdate($event)"
2020-11-18 17:06:27 +01:00
simpleSearchLink="/search/find" [customFilter]="customFilter">
2020-02-19 16:35:48 +01:00
< / search-dataproviders >