2017-12-19 13:53:46 +01:00
< ul class = "uk-list uk-list-divider uk-margin" >
2018-06-08 13:21:42 +02:00
< li * ngFor = "let result of results" >
2018-05-10 16:36:33 +02:00
<!-- <div class = "uk - h4 {{result.title.accessMode}} {{result.title.sc39}}" [title] = result.title.accessMode >
2017-12-19 13:53:46 +01:00
< a [ queryParams ] = " routerHelper . createQueryParam ( urlParam , result . id ) " routerLinkActive = "router-link-active" routerLink = "/search/{{type}}" >
2018-03-16 15:54:44 +01:00
< span * ngIf = "result['title'].name || result.acronym" >
< span * ngIf = "result.acronym" > {{result.acronym}}< / span >
< span * ngIf = "result.acronym && result['title'].name" > -< / span >
2018-03-20 13:11:27 +01:00
< span * ngIf = "result['title'].name" [ innerHTML ] = " result [ ' title ' ] . name " > < / span >
2018-03-16 15:54:44 +01:00
< span * ngIf = "result.code" > ({{result.code}})< / span >
< / span >
< span * ngIf = "!result['title'].name && !result.acronym" >
[no title available]
< span * ngIf = "result.code" > ({{result.code}})< / span >
< / span >
2017-12-19 13:53:46 +01:00
< / a >
2018-05-10 16:36:33 +02:00
< / div > -->
< h4 [ title ] = result . title . accessMode >
< a [ queryParams ] = " routerHelper . createQueryParam ( urlParam , result . id ) " routerLinkActive = "router-link-active" routerLink = "/search/{{type}}" >
2018-06-11 11:46:59 +02:00
< p * ngIf = "result['title'].name || result.acronym" > < span * ngIf = "result.acronym" > {{result.acronym}}< / span > < span * ngIf = "result.acronym && result['title'].name" > -< / span > < span * ngIf = "result['title'].name" [ innerHTML ] = " result [ ' title ' ] . name " > < / span > < span * ngIf = "result.code" > ({{result.code}})< / span > < / p >
< p * ngIf = "!result['title'].name && !result.acronym" > [no title available]< span * ngIf = "result.code" > ({{result.code}})< / span > < / p >
2018-05-10 16:36:33 +02:00
< / a >
< / h4 >
2017-12-19 13:53:46 +01:00
< div >
2018-05-10 16:36:33 +02:00
< span * ngIf = "result['authors'] != undefined" >
< span * ngFor = "let author of result['authors'].slice(0,15)" >
{{author}};
2017-12-19 13:53:46 +01:00
< / span >
2018-05-10 16:36:33 +02:00
< span * ngIf = "result['authors'].length > 15" > ...< / span >
< / span >
< span * ngIf = "result.year != undefined && result.year != ''" >
({{result.year}})
< / span >
2017-12-19 13:53:46 +01:00
< / div >
2018-06-28 16:52:45 +02:00
< span * ngIf = "result.types && result.types.length > 0" [ class ] = " ' uk-label custom-label label-blue label- ' + result . entityType " title = "Type" > {{result.types.join(", ")}}< / span >
< span * ngIf = "result.programmingLanguages && result.programmingLanguages.length > 0" class = "uk-label custom-label label-progrLanguage " title = "Programming Language" > {{result.programmingLanguages.join(", ")}}< / span >
< span * ngIf = "result.languages && result.languages.length > 0" class = "uk-label custom-label label-language " title = "Language" > {{result.languages.join(", ")}}< / span >
< span * ngIf = "result.countriesForResults && result.countriesForResults.length > 0" class = "uk-label custom-label label-country " title = "Country" > {{result.countriesForResults.join(", ")}}< / span >
2018-05-10 16:36:33 +02:00
< span * ngIf = "result.title && result.title.accessMode" [ class ] = " ' uk-label custom-label label- ' + result . title . accessMode " title = "Access Mode" > {{result.title.accessMode}}< / span >
2018-06-11 11:46:59 +02:00
< span * ngIf = "result['funderShortname']" class = "uk-label custom-label label-funder " title = "Funder" > {{result['funderShortname']}}< / span >
2018-05-10 16:36:33 +02:00
< span * ngIf = "result.openAccessMandate != undefined && result.openAccessMandate " class = "uk-label custom-label label-openaccessmandate " title = "Open Access mandate" > Open Access mandate< / span >
< div * ngIf = "result.publisher != undefined && result.publisher != ''" > < span class = "uk-text-bold" > Publisher:< / span > {{result.publisher}}< / div >
< span * ngIf = "result['type'] != undefined && result['type'] != ''" class = "uk-label custom-label label-blue label-dataprovider" title = "Type" > {{result['type']}}< / span >
< span * ngIf = "result['compatibility'] != undefined && result['compatibility'] != ''" class = "uk-label custom-label label-compatibility" title = "Compatibility" > {{result.compatibility}}< / span >
< span * ngIf = "result.country != undefined && result.country != ''" class = "uk-label custom-label label-country" title = "Country" > {{result.country}}< / span >
2017-12-19 13:53:46 +01:00
< div * ngIf = "result['projects'] != undefined" >
2018-05-10 16:36:33 +02:00
< span > Project: < / span >
< span * ngFor = "let project of result['projects'].slice(0,15) let i=index" >
< a * ngIf = "project.id" [ queryParams ] = " { projectId: project . id } " routerLinkActive = "router-link-active" routerLink = "/search/project" >
{{project['funderShortname']?project['funderShortname']:project['funderName']}}
| {{ project['acronym']?project['acronym']:(project['title'].length>25?project['title'].substring(0,25)+'...':project['title'])}} ({{project.code}})< / a > < span
*ngIf="!project.id">{{project['funderShortname']?project['funderShortname']:project['funderName']}}< span
*ngIf="project['acronym'] || project['title']"> | {{ project['acronym']?project['acronym']:(project['title'].length>25?project['title'].substring(0,25)+'...':project['title'])}}< / span > < span
*ngIf="project.code">({{project.code}})< / span > < / span > < span
*ngIf="i < result [ ' projects ' ] . length-1 " > ,< / span >
< / span >
< span * ngIf = "result['projects'].length > 15" > ...< / span >
< / div >
< mark * ngIf = "result.embargoEndDate != undefined && result.embargoEndDate != ''" > Embargo End Date: {{result.embargoEndDate}}< / mark >
< div * ngIf = "result.startYear && result.endYear" > Start year: {{result.startYear}} - End year: {{result.endYear}}< / div >
< div * ngIf = "showOrganizations && result['organizations'] != undefined && result['organizations'].length > 0" >
< span > Organization: < / span >
< span * ngFor = "let organization of result['organizations'].slice(0,10) let i=index" >
< a * ngIf = "organization.id" [ queryParams ] = " { organizationId: organization . id } " routerLinkActive = "router-link-active" routerLink = "/search/organization" >
{{organization.name}}< / a > < span
*ngIf="!organization.id">
{{organization.name}}< / span > < span
*ngIf="(i < result [ ' organizations ' ] . length-1 ) & & ( i < 9 ) " > ,< / span >
< / span >
< span * ngIf = "result['organizations'].length > 10" > ...< / span >
< / div >
< div * ngIf = "result['countries'] && result['countries'].length > 0" >
Country: < span * ngFor = "let country of result['countries'].slice(0,10) let i = index" > {{country}}{{(i < ( result['countries'].slice(0,10).length-1))?", ":""}}{{(i == result['countries'].slice(0,10).length-1 & & result['countries'].length > 10)?"...":""}}< / span >
< / div >
< div * ngIf = "result['websiteURL'] != undefined && result['websiteURL'] != ''" >
< span > Website URL: < / span >
< span >
< a href = "{{result['websiteURL']}}" target = "_blank" class = "custom-external custom-icon" >
{{result['websiteURL']}}
< / a >
< / span >
< / div >
< div * ngIf = "result['OAIPMHURL'] != undefined && result['OAIPMHURL'] != ''" >
< span > OAI-PMH URL: < / span >
< span >
< a href = "{{result['OAIPMHURL']}}" target = "_blank" class = "custom-external custom-icon" >
{{result['OAIPMHURL']}}
< / a >
< / span >
< / div >
2017-12-19 13:53:46 +01:00
< / li >
< / ul >