2019-10-29 14:18:26 +01:00
|
|
|
<!--disable_transitions -->
|
2019-11-28 17:27:49 +01:00
|
|
|
<div class="double-header stakeholderPage">
|
2019-12-09 11:41:58 +01:00
|
|
|
<div class="">
|
|
|
|
<div id="header_menu" class="uk-width-1-1">
|
|
|
|
<nav class="uk-navbar">
|
2019-12-04 18:01:55 +01:00
|
|
|
|
2019-12-09 11:41:58 +01:00
|
|
|
<div class="uk-navbar-left">
|
2020-05-15 14:26:59 +02:00
|
|
|
<img class="badge"
|
2019-12-09 11:41:58 +01:00
|
|
|
src="assets/theme-assets/prototype_flag.svg"
|
|
|
|
alt="BETA">
|
|
|
|
<a *ngIf="stakeholder"
|
|
|
|
class="uk-logo uk-navbar-item ng-star-inserted uk-link uk-margin-small-top uk-margin-medium-left"
|
|
|
|
routerlink="/"
|
2020-01-09 15:31:55 +01:00
|
|
|
routerlinkactive="uk-link">
|
2019-12-09 11:41:58 +01:00
|
|
|
<img *ngIf="stakeholder.logoUrl" [src]="stakeholder.logoUrl" class="uk-responsive-height">
|
|
|
|
<div *ngIf="!stakeholder.logoUrl">
|
|
|
|
{{stakeholder.index_name}}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
<div class="uk-margin-large-left uk-width-medium ng-star-inserted">
|
|
|
|
<div class="">
|
|
|
|
<!-- <div dashboard-input label="Search for..." [formInput]="keyword"></div>-->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-28 17:27:49 +01:00
|
|
|
|
2019-12-09 11:41:58 +01:00
|
|
|
<div *ngIf="stakeholder && status === errorCodes.DONE && activeTopic" class="uk-navbar-right uk-margin-right">
|
2019-12-13 16:48:24 +01:00
|
|
|
<ul class="uk-navbar-nav user_actions uk-padding uk-padding-remove-vertical">
|
|
|
|
<li>
|
|
|
|
<user-mini *ngIf="properties"
|
2020-01-14 20:48:13 +01:00
|
|
|
[user]="user" [dashboard]="true"
|
2020-01-08 12:00:50 +01:00
|
|
|
[logInUrl]=properties.loginUrl [logOutUrl]=properties.logoutUrl
|
|
|
|
[cookieDomain]=properties.cookieDomain
|
2019-12-13 16:48:24 +01:00
|
|
|
[userMenuItems]=userMenuItems>
|
|
|
|
</user-mini>
|
2019-12-09 11:41:58 +01:00
|
|
|
</li>
|
2019-12-13 16:48:24 +01:00
|
|
|
</ul>
|
2019-11-28 17:27:49 +01:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</nav>
|
2019-11-28 17:27:49 +01:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
|
|
|
<div class="sidebar_main_swipe header_full" [class.sidebar_main_active]="open">
|
|
|
|
<div id="header_main">
|
2020-01-09 15:31:55 +01:00
|
|
|
<nav class="uk-light uk-navbar">
|
2020-02-06 14:45:11 +01:00
|
|
|
<!--<div class="main_logo_top">
|
2020-01-09 15:31:55 +01:00
|
|
|
<div *ngIf="stakeholder && stakeholder.index_name" class=" uk-margin-small-top">
|
2019-12-09 11:41:58 +01:00
|
|
|
<div class="uk-text-bold uk-h4 uk-margin-remove-bottom">{{stakeholder.index_name}}</div>
|
|
|
|
<div class="uk-h5 uk-margin-remove">Monitor Dashboard</div>
|
|
|
|
</div>
|
2020-02-06 14:45:11 +01:00
|
|
|
</div>-->
|
2020-01-09 15:31:55 +01:00
|
|
|
<div *ngIf="stakeholder && status === errorCodes.DONE && activeTopic" class="uk-navbar-center">
|
2019-12-09 11:41:58 +01:00
|
|
|
<ul class="uk-navbar-nav">
|
|
|
|
<ng-template ngFor [ngForOf]="stakeholder.topics" let-topic let-i="index">
|
2020-05-13 10:23:19 +02:00
|
|
|
<li *ngIf="isPublicOrIsMember(topic.isPublic) && topic.isActive"
|
2019-12-09 11:41:58 +01:00
|
|
|
[ngClass]="(topic.alias === activeTopic.alias)?'uk-active':''">
|
|
|
|
<a (click)="navigateTo(stakeholder.alias, topic.alias)" class="uk-margin-remove-bottom uk-h4"
|
|
|
|
><span>{{topic.name}}</span></a>
|
|
|
|
</li>
|
|
|
|
</ng-template>
|
|
|
|
</ul>
|
2019-11-28 17:27:49 +01:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</nav>
|
|
|
|
</div>
|
2019-12-23 14:54:37 +01:00
|
|
|
<dashboard-sidebar *ngIf="sideBarItems.length > 0 && stakeholder" [items]="sideBarItems"
|
2019-12-09 11:41:58 +01:00
|
|
|
[activeItem]="activeCategory?activeCategory.alias:null"
|
|
|
|
[activeSubItem]="activeSubCategory?activeSubCategory.alias:null" [showHeader]=false
|
|
|
|
></dashboard-sidebar>
|
2020-05-13 12:00:12 +02:00
|
|
|
<!-- *ngIf="activeSubCategory"-->
|
|
|
|
<div id="page_content">
|
2019-12-09 11:41:58 +01:00
|
|
|
<div id="page_content_inner">
|
|
|
|
<!-- <div>
|
|
|
|
Filters
|
|
|
|
<input class="uk-input uk-form-width-medium" placeholder="Funding Stream" type="text" name="fund_level_0"
|
|
|
|
[(ngModel)]="fundingL0">
|
2019-12-04 18:01:55 +01:00
|
|
|
|
2019-12-09 11:41:58 +01:00
|
|
|
<input class="uk-input uk-form-width-medium" placeholder="Start year" type="text" name="start_year"
|
|
|
|
[(ngModel)]="startYear">
|
|
|
|
<input class="uk-input uk-form-width-medium" placeholder="End year" type="text" name="end_year"
|
|
|
|
[(ngModel)]="endYear">
|
|
|
|
<button class="uk-button uk-button-primary" (click)="setIndicators()">Apply</button>
|
|
|
|
</div>-->
|
2020-05-13 12:00:12 +02:00
|
|
|
<div
|
|
|
|
*ngIf="(activeSubCategory && (activeSubCategory.charts.length == 0 ||
|
|
|
|
(activeSubCategory.charts.length == 1 && activeSubCategory.charts[0].indicators.length == 0)))
|
|
|
|
&& ((activeSubCategory &&
|
|
|
|
activeSubCategory.description &&
|
|
|
|
activeSubCategory.description.length > 0) ||
|
|
|
|
(activeCategory && activeCategory.description && activeCategory.description.length > 0) ||
|
|
|
|
(activeTopic && activeTopic.description && activeTopic.description.length > 0))"
|
|
|
|
class="">
|
|
|
|
<div class="">
|
|
|
|
<div class="uk-h5">
|
|
|
|
{{activeSubCategory && activeSubCategory.description && activeSubCategory.description.length > 0 ? activeSubCategory.description
|
|
|
|
: (activeCategory && activeCategory.description && activeCategory.description.length > 0 ? activeCategory.description :
|
|
|
|
(activeTopic.description && activeTopic.description.length > 0 ? activeTopic.description : ""))}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="!loading &&
|
|
|
|
(!activeSubCategory ||
|
|
|
|
(
|
|
|
|
(activeSubCategory.numbers.length == 0 || (activeSubCategory.numbers.length == 1 && activeSubCategory.numbers[0].indicators.length == 0))
|
|
|
|
&&
|
|
|
|
(activeSubCategory.charts.length == 0 || (activeSubCategory.charts.length == 1 && activeSubCategory.charts[0].indicators.length == 0))
|
|
|
|
))">
|
2019-12-09 11:41:58 +01:00
|
|
|
<div class="">
|
|
|
|
<div class="uk-h3">
|
|
|
|
No indicators available yet. Stay tuned!
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-06 14:45:11 +01:00
|
|
|
<div *ngIf="activeSubCategory" class="uk-grid uk-grid-medium uk-margin-bottom uk-margin-top"
|
2020-01-08 12:00:50 +01:00
|
|
|
uk-height-match="target: div.md-card">
|
2019-12-09 11:41:58 +01:00
|
|
|
<ng-template ngFor [ngForOf]="activeSubCategory.numbers" let-number let-i="index">
|
2020-01-08 12:00:50 +01:00
|
|
|
<h4 class="uk-width-1-1">{{number.title}}</h4>
|
|
|
|
<ng-template ngFor [ngForOf]="number.indicators" let-indicator let-j="index">
|
2020-05-13 10:23:19 +02:00
|
|
|
<div *ngIf="indicator.isActive && isPublicOrIsMember(indicator.isPublic)"
|
2020-01-08 12:00:50 +01:00
|
|
|
[class.uk-width-1-3@m]="indicator.width === 'small'"
|
|
|
|
[class.uk-width-1-2@m]="indicator.width === 'medium'"
|
|
|
|
[class.uk-width-1-1]="indicator.width === 'large'">
|
|
|
|
<div class="md-card" [attr.uk-tooltip]="indicator.description">
|
|
|
|
<div class="md-card-content">
|
|
|
|
<span class="uk-text-muted uk-margin-bottom uk-h5">{{indicator.name}}</span>
|
|
|
|
<h2 *ngIf="numberResults.get(i + '-' + j)" class="uk-margin-remove">
|
|
|
|
<span>{{numberResults.get(i + '-' + j) | number}}</span>
|
|
|
|
</h2>
|
|
|
|
</div>
|
2019-12-06 14:52:26 +01:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
2020-01-08 12:00:50 +01:00
|
|
|
</ng-template>
|
2019-12-09 11:41:58 +01:00
|
|
|
</ng-template>
|
|
|
|
</div>
|
2020-01-10 14:31:53 +01:00
|
|
|
<div *ngIf="activeSubCategory"
|
|
|
|
>
|
|
|
|
<div *ngFor="let chart of activeSubCategory.charts; let i = index;" class="uk-grid uk-grid-medium uk-margin-bottom uk-flex uk-flex-bottom "
|
|
|
|
uk-height-match="target: div > div > .chartTitle">
|
|
|
|
|
|
|
|
<h3 *ngIf="chart.title && chart.title.length > 0" class="uk-width-1-1 uk-margin-top">{{chart.title}}</h3>
|
2020-01-08 12:00:50 +01:00
|
|
|
<ng-template ngFor [ngForOf]="chart.indicators" let-indicator let-j="index">
|
2020-05-13 10:23:19 +02:00
|
|
|
<div *ngIf="indicator.isActive && isPublicOrIsMember(indicator.isPublic) && chartsActiveType.get(i + '-' + j)"
|
2020-01-08 12:00:50 +01:00
|
|
|
[class.uk-width-1-3@m]="indicator.width === 'small'"
|
|
|
|
[class.uk-width-1-2@m]="indicator.width === 'medium'"
|
|
|
|
[class.uk-width-1-1]="indicator.width === 'large'">
|
|
|
|
<div class="indicatorBox">
|
2020-01-10 14:31:53 +01:00
|
|
|
<h4 class="uk-margin-bottom chartTitle uk-flex uk-flex-bottom ">
|
2020-01-08 12:00:50 +01:00
|
|
|
<div>{{indicator.name + " "}}</div>
|
|
|
|
</h4>
|
|
|
|
<div class="md-card" [attr.uk-tooltip]="indicator.description">
|
|
|
|
<div class="md-card-content uk-text-center">
|
|
|
|
<div *ngIf="indicator.indicatorPaths.length > 1" class="uk-button-group">
|
|
|
|
<button *ngFor="let indicatorPath of indicator.indicatorPaths;"
|
|
|
|
class="uk-button"
|
|
|
|
(click)="setActiveChart(i, j, indicatorPath.type)"
|
|
|
|
[class.uk-button-secondary]="chartsActiveType.get(i + '-' + j).url === indicatorPath.url">
|
|
|
|
{{indicatorPath.type}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<iframe *ngIf="chartsActiveType.get(i + '-' + j).source !== 'image'"
|
|
|
|
[src]="chartsActiveType.get(i + '-' + j).safeResourceUrl"
|
|
|
|
class="uk-width-1-1 uk-height-medium"></iframe>
|
|
|
|
<!-- {{chartsActiveType.get(i).safeResourceUrl}}-->
|
|
|
|
<!-- <a [href]="chartsActiveType.get(i).safeResourceUrl" target="_blank" > ChartuURL</a>-->
|
|
|
|
<img *ngIf="chartsActiveType.get(i + '-' + j).source === 'image'"
|
|
|
|
[src]="chartsActiveType.get(i + '-' + j).safeResourceUrl"
|
|
|
|
class="uk-width-1-1 uk-height-medium">
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-25 15:19:54 +02:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
2020-01-08 12:00:50 +01:00
|
|
|
</ng-template>
|
2020-01-10 14:31:53 +01:00
|
|
|
</div>
|
2019-11-28 17:27:49 +01:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
2019-10-24 09:44:29 +02:00
|
|
|
</div>
|
2019-12-09 11:41:58 +01:00
|
|
|
</div>
|
2020-05-19 18:38:01 +02:00
|
|
|
<a *ngIf="stakeholder && isLoggedIn()" id="style_switcher" class="" routerLinkActive="active"
|
2019-12-09 11:41:58 +01:00
|
|
|
[routerLink]="['/admin', this.stakeholder.alias]">
|
|
|
|
<div id="style_switcher_toggle"><i class="material-icons">settings</i></div>
|
|
|
|
</a>
|
2019-10-24 09:44:29 +02:00
|
|
|
</div>
|
2019-12-04 18:01:55 +01:00
|
|
|
|
|
|
|
|