2022-04-15 23:49:35 +02:00
< div class = "uk-background-norepeat uk-background-bottom-center uk-padding-remove-bottom
uk-flex uk-flex-middle uk-background-fixed uk-section uk-section-small" [ngClass]="searchForm.class">
2022-03-08 14:29:52 +01:00
< div class = "uk-width-1-1" >
2022-04-15 23:49:35 +02:00
< div * ngIf = "breadcrumbs.length > 0" class = "uk-container uk-container-large" [ class . uk-light ] = " searchForm . dark " >
< div class = "uk-padding-small uk-padding-remove-bottom" >
< breadcrumbs [ breadcrumbs ] = " breadcrumbs " > < / breadcrumbs >
< / div >
< / div >
< div class = "uk-position-relative" >
< div class = "uk-container uk-container-large uk-section uk-section-small uk-margin-bottom" id = "searchForm" >
< div class = "uk-grid uk-flex uk-flex-middle uk-flex-center" uk-grid >
2022-03-08 14:29:52 +01:00
< div id = "searchImage" > < / div >
2020-02-19 16:35:48 +01:00
< advanced-search-form
entityType="all"
(queryChange)="keywordChanged($event)"
[isDisabled]="disableForms"
[simpleView]="true" [formPlaceholderText]="formPlaceholderText"
2022-04-15 23:49:35 +02:00
[selectedFields]="selectedFields" [showSwitchSearchLink]="true" [dark]="searchForm.dark"
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 >
2022-04-15 23:49:35 +02:00
< / 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 >
2022-04-15 23:49:35 +02:00
< div class = "uk-container-large uk-container uk-margin-large-top uk-flex uk-flex-center" >
< ul class = "uk-tab" 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':''">
2022-04-15 23:49:35 +02:00
< a class = "uk-text-uppercase" >
{{resultsName}}
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 ' : ' ' " >
2022-04-15 23:49:35 +02:00
< a class = "uk-text-uppercase" >
{{projectName}}
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':''">
2022-04-15 23:49:35 +02:00
< a class = "uk-text-uppercase" >
{{dataSourcesName}}
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':''">
2022-04-15 23:49:35 +02:00
< a class = "uk-text-uppercase" >
{{organizationsName}}
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 >
< / 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 >