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
[Monitor Dashboard & Library | new-theme]: Renaming entity types using OpenaireEntities.
Files updated: develop.component.ts, methodology.component.ts, claimEntitiesSelection.component.ts, directLinking.component.ts, linkingGeneric.component.html, linkingGeneric.component.ts, approved.component.ts, searchDataprovidersToDeposit.component.ts, errorPage.component.ts, dataProvider.component.html, dataProvider.component.ts, dataProvider.service.ts, relatedDatasourcesTab.component.ts, project.component.ts, myOrcidLinks.component.ts, searchMyOrcidResults.component.html, searchMyOrcidResults.component.ts, searchAll.component.html, searchAll.component.ts, advancedSearchForm.component.html, advancedSearchForm.component.ts, searchDataProviders.component.ts, searchResearchResults.service.ts, numbers.component.ts, other-portals.component.html, other-portals.component.ts, fetchDataproviders.class.ts, fetchResearchResults.class.ts, searchFields.ts, result-preview.component.ts
2022-05-09 12:13:44 +02:00
description="Search for {{openaireEntities.RESULTS}} ({{openaireEntities.PUBLICATIONS}}, {{openaireEntities.DATASETS}}, {{openaireEntities.SOFTWARE}}, {{openaireEntities.OTHER}}), {{openaireEntities.PROJECTS}}, {{openaireEntities.ORGANIZATIONS}}, {{openaireEntities.DATASOURCES}} 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 >
2022-05-13 14:57:31 +02:00
< li * ngIf = "showServices" ( click ) = " entityChanged ( ' services ' ) "
[class]="activeEntity == 'services'?'uk-active':''">
< a class = "uk-text-uppercase" >
{{servicesName}}
< span * ngIf = "fetchServices.searchUtils.totalResults!=null" >
({{fetchServices.searchUtils.totalResults | number}})< / span >
< / a >
< / li >
2020-02-19 16:35:48 +01:00
< 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 >
2022-05-13 14:57:31 +02:00
< search-dataproviders * ngIf = "activeEntity == 'services'" [ includeOnlyResultsAndFilter ] = " true " [ showSwitchSearchLink ] = " false "
(searchPageUpdates)="activeEntityUpdate($event)"
simpleSearchLink="/search/find" [customFilter]="customFilter"
type="services" entityType="service" [typeName]="openaireEntities.SERVICES">
< / search-dataproviders >