From 98cae9dcb828fdbe40c900a381ce86973982356b Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Mon, 15 May 2023 17:28:33 +0300 Subject: [PATCH] [Library & Explore | explore-redesign]: Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph" | Fixed duplicate queries in search all | Updated paper in FoS page | Improvements in sticky tabs (search all & landing). 1. Deleted assers/explore-assets/home/graph.svg - Replaced by assets/common-assets/common/graph-nodes.svg. 2. home.component.html: a. Updated graph image. b. Added in
: [searchInputClass]="'inner background'". c. Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph". 3. claimResultSearchForm.component.html & searchDataprovidersToDeposit.component.ts: Added in
: [searchInputClass]="'inner background'". 4. searchAll.component.html: a. Updated margins/paddings for sticky tabs. b. Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph". 5. searchAll.component.ts: a. [Bug fix] In method ngOnInit(), moved loadAll() call inside check - avoid duplicate calls to search for each tab with count query. b. Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph". 6. fos.component.html: a. Updated paper of SciNoBo - replaced the old one with the newest. b. Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph". 7. fos.component.ts: Renamed "OpenAIRE Research Graph" to "OpenAIRE Graph". 8. resultLanding.component.html & project.component.html & organization.component.html & dataProvider.component.html: [Improvement] Updated check and class for when sticky - make it invisible, when not sticky - solved flickering and change of content position. 9. showTitle.component.ts: Added @Input() isSticky: boolean = false; and when sticky, show only 1 line of the title (class lines-1). 10. landing-header.component.ts: Show only title when sticky and pass isSticky to . --- claims/claim-utils/claimResultSearchForm.component.html | 2 +- deposit/searchDataprovidersToDeposit.component.ts | 3 ++- fos/fos.component.html | 4 ++-- fos/fos.component.ts | 2 +- landingPages/dataProvider/dataProvider.component.html | 2 +- .../landing-header/landing-header.component.ts | 6 +++--- landingPages/landing-utils/showTitle.component.ts | 3 ++- landingPages/organization/organization.component.html | 2 +- landingPages/project/project.component.html | 2 +- landingPages/result/resultLanding.component.html | 2 +- searchPages/find/searchAll.component.html | 6 +++--- searchPages/find/searchAll.component.ts | 4 ++-- 12 files changed, 20 insertions(+), 18 deletions(-) diff --git a/claims/claim-utils/claimResultSearchForm.component.html b/claims/claim-utils/claimResultSearchForm.component.html index eeee102f..b2e66b11 100644 --- a/claims/claim-utils/claimResultSearchForm.component.html +++ b/claims/claim-utils/claimResultSearchForm.component.html @@ -8,7 +8,7 @@
+ [searchInputClass]="'inner background'" (searchEmitter)="search(true)">
diff --git a/deposit/searchDataprovidersToDeposit.component.ts b/deposit/searchDataprovidersToDeposit.component.ts index 5f1fd039..6269c412 100644 --- a/deposit/searchDataprovidersToDeposit.component.ts +++ b/deposit/searchDataprovidersToDeposit.component.ts @@ -29,7 +29,8 @@ import {SearchForm} from "../searchPages/searchUtils/newSearchPage.component";
-
+
diff --git a/fos/fos.component.html b/fos/fos.component.html index 8f707fec..70b3e068 100644 --- a/fos/fos.component.html +++ b/fos/fos.component.html @@ -15,10 +15,10 @@ Fields of Science .
- We have integrated a Field-of-Science (FoS) taxonomy into our dataset to organize and discover research more effectively. Using the full capabilities of the OpenAIRE Research Graph (full-texts, citations, references, venues) we apply AI and bring forward any multidisciplinarity potential. + We have integrated a Field-of-Science (FoS) taxonomy into our dataset to organize and discover research more effectively. Using the full capabilities of the OpenAIRE Graph (full-texts, citations, references, venues) we apply AI and bring forward any multidisciplinarity potential.
- Our work is based on the work from our partner Athena Research Center: SciNoBo : A Hierarchical Multi-Label Classifier of Scientific Publications - https://doi.org/10.1145/3487553.3524677 + Our work is based on the work from our partner Athena Research Center: SciNoBo : a novel system classifying scholarly communication in a dynamically constructed hierarchical Field-of-Science taxonomy - https://doi.org/10.3389/frma.2023.1149834
- diff --git a/landingPages/project/project.component.html b/landingPages/project/project.component.html index 85b6be3f..4add8ba6 100644 --- a/landingPages/project/project.component.html +++ b/landingPages/project/project.component.html @@ -366,7 +366,7 @@ uk-sticky="bottom: true; media: @m" [attr.offset]="offset">
-
- -
-
+
+
diff --git a/searchPages/find/searchAll.component.ts b/searchPages/find/searchAll.component.ts index 6ba0e7f7..261d36bf 100644 --- a/searchPages/find/searchAll.component.ts +++ b/searchPages/find/searchAll.component.ts @@ -143,7 +143,7 @@ export class SearchAllComponent { public ngOnInit() { - var description = "Search for "+OpenaireEntities.RESULTS+" ("+OpenaireEntities.PUBLICATIONS+", "+OpenaireEntities.DATASETS+", "+OpenaireEntities.SOFTWARE+", "+OpenaireEntities.OTHER+"), "+OpenaireEntities.PROJECTS+", "+OpenaireEntities.ORGANIZATIONS+", "+OpenaireEntities.DATASOURCES+" in the OpenAIRE Research Graph. "; + var description = "Search for "+OpenaireEntities.RESULTS+" ("+OpenaireEntities.PUBLICATIONS+", "+OpenaireEntities.DATASETS+", "+OpenaireEntities.SOFTWARE+", "+OpenaireEntities.OTHER+"), "+OpenaireEntities.PROJECTS+", "+OpenaireEntities.ORGANIZATIONS+", "+OpenaireEntities.DATASOURCES+" in the OpenAIRE Graph. "; var title = "OpenAIRE |Search for "+OpenaireEntities.RESULTS+", "+OpenaireEntities.PROJECTS+", "+OpenaireEntities.DATASOURCES+" & "+OpenaireEntities.ORGANIZATIONS; this.properties = properties; var url = this.properties.domain + this.properties.baseLink + this._router.url; @@ -196,8 +196,8 @@ export class SearchAllComponent { this.showDataProviders = true; this.showServices = false; } + this.loadAll(); } - this.loadAll(); }