[Connect|Trunk]
Community page - search form: update form placeholder when entity changes Properties: add impact factor URL git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@58629 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
bbd6d699d9
commit
8ff482028e
|
@ -11,6 +11,7 @@
|
|||
"statisticsFrameAPIURL":"https://beta.openaire.eu/stats/",
|
||||
"statisticsFrameNewAPIURL": "http://marilyn.athenarc.gr:8080/stats-api/",
|
||||
"useNewStatistisTool":false,
|
||||
"impactFactorsAPIURL" :"https://bip-api.imsi.athenarc.gr/paper/scores/batch/",
|
||||
"claimsAPIURL" : "https://beta.services.openaire.eu/claims/rest/claimsService/",
|
||||
"searchAPIURLLAst" : "https://beta.services.openaire.eu/search/v2/api/",
|
||||
"searchResourcesAPIURL" : "https://beta.services.openaire.eu/search/v2/api/resources",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"statisticsFrameAPIURL":"https://www.openaire.eu/stats/",
|
||||
"statisticsFrameNewAPIURL": "",
|
||||
"useNewStatistisTool":false,
|
||||
"impactFactorsAPIURL" :"https://bip-api.imsi.athenarc.gr/paper/scores/batch/",
|
||||
"claimsAPIURL" : "https://services.openaire.eu/claims/rest/claimsService/",
|
||||
"searchAPIURLLAst" : "https://services.openaire.eu/search/v2/api/",
|
||||
"searchResourcesAPIURL" : "https://services.openaire.eu/search/v2/api/resources",
|
||||
|
|
|
@ -213,7 +213,7 @@
|
|||
<a *ngIf="keyword.length > 0" class="uk-form-icon uk-form-icon-flip" (click)="keyword = ''"
|
||||
uk-icon="icon: close"></a>
|
||||
<input type="text" class="uk-input uk-width-xlarge@l uk-width-large@m uk-width-medium"
|
||||
placeholder="Search in OpenAIRE for scholarly works"
|
||||
[placeholder]="placeholderText"
|
||||
[(ngModel)]="keyword"
|
||||
name="keyword">
|
||||
</div>
|
||||
|
|
|
@ -94,6 +94,7 @@ export class CommunityComponent {
|
|||
selectedEntityAdvancedUrl;
|
||||
keyword:string ="";
|
||||
customFilter;
|
||||
placeholderText="Search by title, author, abstract, DOI, orcid... ";
|
||||
|
||||
constructor(
|
||||
private element: ElementRef,
|
||||
|
@ -415,7 +416,17 @@ export class CommunityComponent {
|
|||
this.selectedEntity = $event.entity;
|
||||
this.selectedEntitySimpleUrl = $event.simpleUrl;
|
||||
this.selectedEntityAdvancedUrl = $event.advancedUrl;
|
||||
if(this.selectedEntity == 'result'){
|
||||
this.placeholderText ="Search by title, author, abstract, DOI, orcid... ";
|
||||
}else if(this.selectedEntity == 'project') {
|
||||
this.placeholderText = "Search by project title, grant id, funder...";
|
||||
}else if(this.selectedEntity == 'dataprovider') {
|
||||
this.placeholderText = "Search by name...";
|
||||
}else{
|
||||
this.placeholderText = "Search community content";
|
||||
}
|
||||
}
|
||||
|
||||
goTo(simple:boolean){
|
||||
let url = (simple)?this.selectedEntitySimpleUrl:this.selectedEntityAdvancedUrl;
|
||||
let parameterNames = [];
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"statisticsFrameAPIURL":"https://beta.openaire.eu/stats/",
|
||||
"statisticsFrameNewAPIURL": "http://marilyn.athenarc.gr:8080/stats-api/",
|
||||
"useNewStatistisTool":false,
|
||||
"impactFactorsAPIURL" :"https://bip-api.imsi.athenarc.gr/paper/scores/batch/",
|
||||
"claimsAPIURL" : "http://dl170.madgik.di.uoa.gr:8180/dnet-claims-service-2.0.0-SNAPSHOT/rest/claimsService/",
|
||||
"searchAPIURLLAst" : "https://beta.services.openaire.eu/search/v2/api/",
|
||||
"searchResourcesAPIURL" : "https://beta.services.openaire.eu/search/v2/api/resources",
|
||||
|
|
Loading…
Reference in New Issue