add slider for stakeholders list - 6 per slide
This commit is contained in:
parent
02206c27c7
commit
98bbd3625c
|
@ -74,7 +74,7 @@
|
|||
href="https://explore.openaire.eu/search/find/research-outcomes?type=publications" target="_blank">
|
||||
<div class="uk-height-small uk-width-small uk-flex uk-flex-center uk-flex-column">
|
||||
<div class="uk-text-center">
|
||||
<h3 class="uk-text-primary-gradient uk-margin-remove-bottom">{{(publicationsSize.number|number) + publicationsSize.size}}</h3>
|
||||
<h4 class="uk-text-primary-gradient uk-margin-remove-bottom">{{(publicationsSize.number|number) + publicationsSize.size}}</h4>
|
||||
<div class="uk-margin-small uk-text-large">Publications</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -200,37 +200,93 @@
|
|||
</a>
|
||||
<div class="uk-margin-large-top uk-margin-large-bottom">
|
||||
<!-- Tabs -->
|
||||
<div class="uk-width-3-5">
|
||||
<my-tabs>
|
||||
<my-tab [tabTitle]="'All'" [tabId]="'all'" class="uk-active">
|
||||
<ng-container *ngTemplateOutlet="all"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Funders'" [tabId]="'funders'">
|
||||
<ng-container *ngTemplateOutlet="funders"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Research Initiatives'" [tabId]="'researchInitiatives'">
|
||||
<ng-container *ngTemplateOutlet="researchInitiatives"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Research Institutions'" [tabId]="'researchInstitutions'">
|
||||
<ng-container *ngTemplateOutlet="researchInstitutions"></ng-container>
|
||||
</my-tab>
|
||||
</my-tabs>
|
||||
</div>
|
||||
<my-tabs>
|
||||
<my-tab [tabTitle]="'All'" [tabId]="'all'" class="uk-active">
|
||||
<ng-container *ngTemplateOutlet="allContainer"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Funders'" [tabId]="'funders'">
|
||||
<ng-container *ngTemplateOutlet="fundersContainer"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Research Initiatives'" [tabId]="'researchInitiatives'">
|
||||
<ng-container *ngTemplateOutlet="researchInitiativesContainer"></ng-container>
|
||||
</my-tab>
|
||||
<my-tab [tabTitle]="'Research Institutions'" [tabId]="'researchInstitutions'">
|
||||
<ng-container *ngTemplateOutlet="researchInstitutionsContainer"></ng-container>
|
||||
</my-tab>
|
||||
</my-tabs>
|
||||
<!-- Tab content -->
|
||||
<div>
|
||||
<ng-template #all>
|
||||
all
|
||||
</ng-template>
|
||||
<ng-template #funders>
|
||||
funders
|
||||
</ng-template>
|
||||
<ng-template #researchInitiatives>
|
||||
researchInitiatives
|
||||
</ng-template>
|
||||
<ng-template #researchInstitutions>
|
||||
researchInstitutions
|
||||
</ng-template>
|
||||
</div>
|
||||
<ng-template #allContainer>
|
||||
<div uk-slider class="uk-margin-large-top">
|
||||
<ul class="uk-slider-items" uk-height-match="target: .uk-card; row: false">
|
||||
<li *ngFor="let slide of sliderize(stakeholders)" class="uk-width-1-1">
|
||||
<div class="uk-padding">
|
||||
<div uk-grid class="uk-grid uk-child-width-1-3@l uk-child-width-1-2@m">
|
||||
<div *ngFor="let stakeholder of slide">
|
||||
<div class="uk-card uk-card-default uk-card-body uk-card-hover">
|
||||
{{stakeholder.name}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template #fundersContainer>
|
||||
<div uk-slider class="uk-margin-large-top">
|
||||
<ul class="uk-slider-items" uk-height-match="target: .uk-card; row: false">
|
||||
<li *ngFor="let slide of sliderize(funders)" class="uk-width-1-1">
|
||||
<div class="uk-padding">
|
||||
<div uk-grid class="uk-grid uk-child-width-1-3@l uk-child-width-1-2@m">
|
||||
<div *ngFor="let stakeholder of slide">
|
||||
<div class="uk-card uk-card-default uk-card-body uk-card-hover">
|
||||
{{stakeholder.name}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template #researchInitiativesContainer>
|
||||
<div uk-slider class="uk-margin-large-top">
|
||||
<ul class="uk-slider-items" uk-height-match="target: .uk-card; row: false">
|
||||
<li *ngFor="let slide of sliderize(researchInitiatives)" class="uk-width-1-1">
|
||||
<div class="uk-padding">
|
||||
<div uk-grid class="uk-grid uk-child-width-1-3@l uk-child-width-1-2@m">
|
||||
<div *ngFor="let stakeholder of slide">
|
||||
<div class="uk-card uk-card-default uk-card-body uk-card-hover">
|
||||
{{stakeholder.name}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul>
|
||||
</div>
|
||||
</ng-template>
|
||||
<ng-template #researchInstitutionsContainer>
|
||||
<div uk-slider class="uk-margin-large-top">
|
||||
<ul class="uk-slider-items" uk-height-match="target: .uk-card; row: false">
|
||||
<li *ngFor="let slide of sliderize(researchInstitutions)" class="uk-width-1-1">
|
||||
<div class="uk-padding">
|
||||
<div uk-grid class="uk-grid uk-child-width-1-3@l uk-child-width-1-2@m">
|
||||
<div *ngFor="let stakeholder of slide">
|
||||
<div class="uk-card uk-card-default uk-card-body uk-card-hover">
|
||||
{{stakeholder.name}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="uk-slider-nav uk-dotnav uk-flex-center uk-margin"></ul>
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
<div class="uk-section uk-container uk-container-large uk-margin-large-bottom uk-text-center">
|
||||
|
|
|
@ -215,8 +215,37 @@ export class HomeComponent {
|
|||
));
|
||||
}
|
||||
|
||||
public sliderize(stakeholders: Stakeholder[]): Stakeholder[][] {
|
||||
let slider: Stakeholder[][] = [];
|
||||
let size = 6;
|
||||
for(let i = 0; i < (stakeholders.length/size); i++) {
|
||||
slider.push(stakeholders.slice(i*size, ((i+1)*size)));
|
||||
}
|
||||
return slider;
|
||||
}
|
||||
|
||||
get funders(): Stakeholder[] {
|
||||
return this.stakeholders.filter(stakeholder => stakeholder.type === "funder");
|
||||
if(this.stakeholders) {
|
||||
return this.stakeholders.filter(stakeholder => stakeholder.type === "funder");
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
get researchInitiatives(): Stakeholder[] {
|
||||
if(this.stakeholders) {
|
||||
return this.stakeholders.filter(stakeholder => stakeholder.type === "ri");
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
get researchInstitutions(): Stakeholder[] {
|
||||
if(this.stakeholders) {
|
||||
return this.stakeholders.filter(stakeholder => stakeholder.type === "organization");
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
private isManager(stakeholder: Stakeholder) {
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit cf6ab4a03b4aea7a5c14f6c086e531642f5f1a27
|
||||
Subproject commit f15b8ef8fcdae5053c1c385a5f3126a2a7b327f7
|
Loading…
Reference in New Issue