2020-10-14 11:54:21 +02:00
|
|
|
import {Component, Input, OnChanges, OnDestroy, OnInit, SimpleChanges} from '@angular/core';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {ActivatedRoute, Router} from '@angular/router';
|
2019-09-13 09:01:19 +02:00
|
|
|
import {Session, User} from '../login/utils/helper.class';
|
2019-07-01 16:22:11 +02:00
|
|
|
import {ConfigurationService} from '../utils/configuration/configuration.service';
|
|
|
|
import {MenuItem, RootMenuItem} from './menu';
|
|
|
|
import {EnvProperties} from '../utils/properties/env-properties';
|
2020-10-14 11:54:21 +02:00
|
|
|
import {Stakeholder} from '../monitor/entities/stakeholder';
|
|
|
|
import {Subscription} from 'rxjs';
|
|
|
|
|
|
|
|
export interface Header {
|
|
|
|
route?: string,
|
|
|
|
url?: string,
|
|
|
|
title: string,
|
|
|
|
logoUrl: string,
|
|
|
|
logoSmallUrl: string,
|
|
|
|
position: 'left' | 'center' | 'right',
|
|
|
|
badge: boolean
|
2020-10-30 15:01:44 +01:00
|
|
|
stickyAnimation?:boolean
|
2020-10-14 11:54:21 +02:00
|
|
|
}
|
2019-07-01 16:22:11 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'navbar',
|
|
|
|
templateUrl: 'navigationBar.component.html'
|
|
|
|
})
|
2020-10-14 11:54:21 +02:00
|
|
|
export class NavigationBarComponent implements OnInit, OnDestroy{
|
|
|
|
@Input() portal: string = 'connect';
|
2020-08-05 15:27:13 +02:00
|
|
|
@Input() dark: boolean = false;
|
2019-09-13 09:01:19 +02:00
|
|
|
@Input() onlyTop: boolean;
|
2020-10-14 11:54:21 +02:00
|
|
|
@Input() logoPath: string = 'assets/common-assets/';
|
2019-09-13 09:01:19 +02:00
|
|
|
@Input() userMenu: boolean = true;
|
|
|
|
@Input() showHomeMenuItem: boolean = false;
|
2018-02-05 14:14:59 +01:00
|
|
|
@Input() communityId;
|
2020-06-29 15:15:52 +02:00
|
|
|
@Input() stakeholder: Stakeholder;
|
2019-09-13 09:01:19 +02:00
|
|
|
@Input() showCommunityName: boolean = false;
|
|
|
|
@Input() userMenuItems: MenuItem[];
|
|
|
|
@Input() menuItems: RootMenuItem [];
|
2020-10-14 11:54:21 +02:00
|
|
|
@Input() header: Header;
|
2019-09-13 09:01:19 +02:00
|
|
|
@Input() showMenu: boolean = true;
|
|
|
|
@Input() homeurl: boolean = true;
|
|
|
|
@Input() properties: EnvProperties;
|
|
|
|
@Input() user: User;
|
|
|
|
@Input() enableSearch: boolean = false;
|
2020-10-14 11:54:21 +02:00
|
|
|
@Input() searchRoute: string = '/search/find';
|
|
|
|
@Input() searchPlaceHolder: string = 'Search for research results';
|
2020-06-16 21:59:51 +02:00
|
|
|
@Input() showLogo: boolean = true;
|
2020-10-06 10:12:14 +02:00
|
|
|
@Input() offCanvasFlip: boolean = false;
|
2020-10-14 11:54:21 +02:00
|
|
|
keyword: string = '';
|
2019-06-20 15:29:43 +02:00
|
|
|
|
2020-10-14 11:54:21 +02:00
|
|
|
logosrc: string = '';
|
|
|
|
logoUrl: string;
|
|
|
|
logoRoute: string;
|
|
|
|
logoName: string;
|
2020-04-30 14:26:25 +02:00
|
|
|
|
2018-01-11 16:20:43 +01:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
public isAuthorized: boolean = false;
|
2020-07-13 00:19:30 +02:00
|
|
|
subs: Subscription[] = [];
|
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
showEntity = {};
|
|
|
|
showPage = {};
|
|
|
|
specialAnnouncementContent: string = null;
|
2019-06-25 15:26:24 +02:00
|
|
|
activeRouteEnabled = false;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
constructor(private router: Router,
|
|
|
|
private route: ActivatedRoute,
|
|
|
|
private config: ConfigurationService) {
|
2018-02-05 14:14:59 +01:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
ngOnInit() {
|
2019-06-25 15:26:24 +02:00
|
|
|
this.activeRouteEnabled = false;
|
2020-11-11 15:43:13 +01:00
|
|
|
//this.subscriptions = this.route.queryParams.subscribe(params => {
|
2020-10-14 11:54:21 +02:00
|
|
|
//console.log("params: ",params);
|
|
|
|
this.initialize();
|
2020-06-10 13:05:59 +02:00
|
|
|
//});
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
|
|
|
|
ngOnDestroy() {
|
2020-07-13 00:19:30 +02:00
|
|
|
for (let sub of this.subs) {
|
|
|
|
sub.unsubscribe();
|
2020-06-10 13:05:59 +02:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
initialize() {
|
2020-10-14 13:36:18 +02:00
|
|
|
if ((['provide', 'develop']).indexOf(this.portal) != -1) {
|
2020-10-14 11:54:21 +02:00
|
|
|
this.header = {
|
|
|
|
route: '/',
|
|
|
|
url: null,
|
|
|
|
title: this.portal,
|
|
|
|
logoUrl: this.logoPath + 'logo-large-' + this.portal + '.png',
|
|
|
|
logoSmallUrl: this.logoPath + 'logo-small-' + this.portal + '.png',
|
|
|
|
position: 'left',
|
|
|
|
badge: true
|
|
|
|
};
|
|
|
|
} else if (this.stakeholder) {
|
|
|
|
this.header = {
|
|
|
|
route: '',
|
|
|
|
url: null,
|
|
|
|
title: this.stakeholder.name,
|
|
|
|
logoUrl: this.stakeholder.logoUrl,
|
|
|
|
logoSmallUrl: this.stakeholder.logoUrl,
|
|
|
|
position: 'left',
|
|
|
|
badge: true
|
|
|
|
};
|
2020-10-06 10:12:14 +02:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
this.activeRouteEnabled = false;
|
|
|
|
this.isAuthorized = Session.isClaimsCurator(this.user) || Session.isPortalAdministrator(this.user);
|
|
|
|
if (this.properties.adminToolsAPIURL && this.communityId) {
|
2020-07-13 00:19:30 +02:00
|
|
|
//this.config.getCommunityInformation(this.properties, this.communityId).subscribe(data => {
|
|
|
|
this.subs.push(this.config.communityInformationState.subscribe(data => {
|
2020-10-14 11:54:21 +02:00
|
|
|
if (data) {
|
|
|
|
for (var i = 0; i < data['entities'].length; i++) {
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2020-10-14 11:54:21 +02:00
|
|
|
this.showEntity['' + data['entities'][i]['pid'] + ''] = data['entities'][i]['isEnabled'];
|
|
|
|
}
|
|
|
|
for (var i = 0; i < data['pages'].length; i++) {
|
|
|
|
this.showPage[data['pages'][i]['route']] = data['pages'][i]['isEnabled'];
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2020-10-14 11:54:21 +02:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
2020-10-14 11:54:21 +02:00
|
|
|
},
|
|
|
|
error => {
|
|
|
|
this.handleError('Error getting community information (e.g. pages,entities) for community with id: ' + this.communityId, error);
|
|
|
|
}));
|
2018-02-05 16:13:55 +01:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
onClick(id: string) {
|
2019-09-13 09:01:19 +02:00
|
|
|
var el: HTMLElement = document.getElementById(id);
|
|
|
|
el.classList.remove('uk-open');
|
2018-12-07 12:07:19 +01:00
|
|
|
}
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
isEnabled(required, enabled) {
|
|
|
|
if (!required) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-05 14:14:59 +01:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
|
|
|
|
for (let requiredEntity of required) {
|
2020-10-14 11:54:21 +02:00
|
|
|
if (typeof enabled[requiredEntity] === 'undefined' || enabled[requiredEntity] == false) {
|
2019-09-13 09:01:19 +02:00
|
|
|
return false;
|
2018-02-05 14:14:59 +01:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
isAtleastOneEnabled(required, enabled) {
|
|
|
|
if (!required || required.length == 0) {
|
2018-02-05 14:14:59 +01:00
|
|
|
return true;
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
var count = required.length;
|
|
|
|
for (let requiredEntity of required) {
|
2020-10-14 11:54:21 +02:00
|
|
|
if (typeof enabled[requiredEntity] === 'undefined' || enabled[requiredEntity] == false) {
|
2019-09-13 09:01:19 +02:00
|
|
|
count--;
|
2018-12-07 12:07:19 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
return (count > 0) ? true : false;
|
|
|
|
}
|
2019-02-18 15:00:43 +01:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
private handleError(message: string, error) {
|
2020-10-14 11:54:21 +02:00
|
|
|
console.error('NavigationBar (component): ' + message, error);
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getCurrentRoute() {
|
2019-06-20 15:29:43 +02:00
|
|
|
return this.router.url.split('?')[0];
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
isTheActiveMenu(menu: RootMenuItem): boolean {
|
|
|
|
let currentRoute = this.getCurrentRoute();
|
|
|
|
if (!menu.rootItem.markAsActive) {
|
|
|
|
return false;
|
2019-06-20 15:29:43 +02:00
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
if (currentRoute == menu.rootItem.route) {
|
|
|
|
this.activeRouteEnabled = true;
|
|
|
|
return true;
|
|
|
|
} else if (menu.items.length > 0) {
|
|
|
|
for (let menuItem of menu.items) {
|
|
|
|
if (menuItem.route == currentRoute) {
|
|
|
|
this.activeRouteEnabled = true;
|
|
|
|
return true;
|
2019-06-25 15:26:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|