argos/dmp-frontend/src/app/ui/navbar/navbar.component.ts

321 lines
9.6 KiB
TypeScript
Raw Normal View History

import { Location } from '@angular/common';
2020-08-24 09:56:49 +02:00
import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core';
2024-01-09 14:52:07 +01:00
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
2023-10-06 10:10:53 +02:00
import { MatMenuTrigger } from '@angular/material/menu';
2019-04-24 11:26:53 +02:00
import { Router } from '@angular/router';
import { AppRole } from '@app/core/common/enum/app-role';
2023-12-29 16:04:16 +01:00
import { User } from '@app/core/model/user/user';
import { AuthService } from '@app/core/services/auth/auth.service';
2023-02-11 13:38:13 +01:00
import { LanguageService } from '@app/core/services/language/language.service';
import { MatomoService } from '@app/core/services/matomo/matomo-service';
import { ProgressIndicationService } from '@app/core/services/progress-indication/progress-indication-service';
2023-02-11 13:38:13 +01:00
import { SideNavService } from '@app/core/services/sidenav/side-nav.sevice';
import { BaseComponent } from '@common/base/base.component';
2019-04-30 17:59:19 +02:00
import { takeUntil } from 'rxjs/operators';
2023-12-28 16:18:49 +01:00
import { StartNewDmpDialogComponent } from '../dmp/new/start-new-dmp-dialogue/start-new-dmp-dialog.component';
2023-02-11 13:38:13 +01:00
import { FaqDialogComponent } from '../faq/dialog/faq-dialog.component';
2023-12-29 16:04:16 +01:00
import { UserDialogComponent } from './user-dialog/user-dialog.component';
import { DATASETS_ROUTES, DMP_ROUTES, GENERAL_ROUTES } from '../sidebar/sidebar.component';
2024-01-10 13:24:32 +01:00
import { MineInAppNotificationListingDialogComponent } from '../inapp-notification/listing-dialog/mine-inapp-notification-listing-dialog.component';
2024-01-09 14:52:07 +01:00
import { InAppNotificationService } from '@app/core/services/inapp-notification/inapp-notification.service';
import { timer } from 'rxjs';
import { ConfigurationService } from '@app/core/services/configuration/configuration.service';
2023-12-29 16:04:16 +01:00
2019-04-24 11:26:53 +02:00
@Component({
2019-04-30 17:59:19 +02:00
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css', './navbar.component.scss']
2019-04-24 11:26:53 +02:00
})
2019-04-30 17:59:19 +02:00
export class NavbarComponent extends BaseComponent implements OnInit {
progressIndication = false;
private listTitles: any[];
location: Location;
mobile_menu_visible: any = 0;
private toggleButton: any;
private sidebarVisible: boolean;
2023-02-11 13:38:13 +01:00
languages = [];
2020-01-27 17:38:24 +01:00
currentRoute: string;
2022-10-11 17:52:08 +02:00
selectedLanguage: string;
2023-12-29 16:04:16 +01:00
private user: User;
2024-01-10 13:24:32 +01:00
inAppNotificationDialog: MatDialogRef<MineInAppNotificationListingDialogComponent> = null;
2024-01-09 14:52:07 +01:00
inAppNotificationCount = 0;
@Output() sidebarToggled: EventEmitter<any> = new EventEmitter();
2021-09-24 20:52:14 +02:00
@ViewChild(MatMenuTrigger) trigger: MatMenuTrigger;
2019-04-30 17:59:19 +02:00
constructor(location: Location,
private element: ElementRef,
private router: Router,
2024-01-09 14:52:07 +01:00
public authentication: AuthService,
2019-04-30 17:59:19 +02:00
private dialog: MatDialog,
private progressIndicationService: ProgressIndicationService,
2020-07-14 11:47:57 +02:00
private languageService: LanguageService,
private matomoService: MatomoService,
2022-10-11 17:52:08 +02:00
private sidenavService: SideNavService,
2024-01-09 14:52:07 +01:00
private inappNotificationService: InAppNotificationService,
private configurationService: ConfigurationService
2019-04-30 17:59:19 +02:00
) {
super();
this.location = location;
this.sidebarVisible = false;
2023-11-29 14:26:40 +01:00
this.languages = this.languageService.getAvailableLanguagesCodes();
this.selectedLanguage = this.languageService.getDefaultLanguagesCode();
2019-04-30 17:59:19 +02:00
}
ngOnInit() {
this.matomoService.trackPageView('Navbar');
2020-01-27 17:38:24 +01:00
this.currentRoute = this.router.url;
2019-04-30 17:59:19 +02:00
this.listTitles = GENERAL_ROUTES.filter(listTitle => listTitle);
this.listTitles.push(DMP_ROUTES.filter(listTitle => listTitle));
// this.listTitles.push(HISTORY_ROUTES.filter(listTitle => listTitle));
this.listTitles.push(DATASETS_ROUTES.filter(listTitle => listTitle));
// const navbar: HTMLElement = this.element.nativeElement;
// this.toggleButton = navbar.getElementsByClassName('navbar-toggler')[0];
// this.router.events.subscribe((event) => {
// this.sidebarClose();
// var $layer: any = document.getElementsByClassName('close-layer')[0];
// this.currentRoute = this.router.url;
// if ($layer) {
// $layer.remove();
// this.mobile_menu_visible = 0;
// }
// });
2019-04-30 17:59:19 +02:00
this.progressIndicationService.getProgressIndicationObservable().pipe(takeUntil(this._destroyed)).subscribe(x => {
setTimeout(() => { this.progressIndication = x; });
});
2024-01-09 14:52:07 +01:00
timer(2000, this.configurationService.inAppNotificationsCountInterval * 1000)
.pipe(takeUntil(this._destroyed))
.subscribe(x => {
this.countUnreadInappNotifications();
});
}
private countUnreadInappNotifications() {
if (this.isAuthenticated()) {
this.inappNotificationService.countUnread()
.pipe(takeUntil(this._destroyed))
.subscribe(
data => {
this.inAppNotificationCount = data;
},
);
}
2019-04-24 11:26:53 +02:00
}
public isAuthenticated(): boolean {
2023-10-11 16:53:12 +02:00
return this.authentication.currentAccountIsAuthenticated();
2019-04-24 11:26:53 +02:00
}
public onInvalidUrl(): boolean {
return this.currentRoute === '/language-editor' || this.currentRoute === '/profile';
2020-01-27 17:38:24 +01:00
}
2020-08-24 09:56:49 +02:00
openMyMenu() {
this.trigger.openMenu();
}
2020-08-24 09:56:49 +02:00
closeMyMenu() {
this.trigger.closeMenu();
}
2020-08-24 09:56:49 +02:00
2019-04-30 17:59:19 +02:00
sidebarOpen() {
const toggleButton = this.toggleButton;
const body = document.getElementsByTagName('body')[0];
setTimeout(function () {
toggleButton.classList.add('toggled');
}, 500);
body.classList.add('nav-open');
this.sidebarVisible = true;
};
sidebarClose() {
const body = document.getElementsByTagName('body')[0];
this.toggleButton.classList.remove('toggled');
this.sidebarVisible = false;
body.classList.remove('nav-open');
};
sidebarToggle() {
// const toggleButton = this.toggleButton;
// const body = document.getElementsByTagName('body')[0];
var $toggle = document.getElementsByClassName('navbar-toggler')[0];
if (this.sidebarVisible === false) {
this.sidebarOpen();
} else {
this.sidebarClose();
}
const body = document.getElementsByTagName('body')[0];
if (this.mobile_menu_visible == 1) {
// $('html').removeClass('nav-open');
body.classList.remove('nav-open');
if ($layer) {
$layer.remove();
}
setTimeout(function () {
$toggle.classList.remove('toggled');
}, 400);
this.mobile_menu_visible = 0;
} else {
setTimeout(function () {
$toggle.classList.add('toggled');
}, 430);
var $layer = document.createElement('div');
$layer.setAttribute('class', 'close-layer');
if (body.querySelectorAll('.main-panel')) {
document.getElementsByClassName('main-panel')[0].appendChild($layer);
} else if (body.classList.contains('off-canvas-sidebar')) {
document.getElementsByClassName('wrapper-full-page')[0].appendChild($layer);
}
setTimeout(function () {
$layer.classList.add('visible');
}, 100);
$layer.onclick = function () { //asign a function
body.classList.remove('nav-open');
this.mobile_menu_visible = 0;
$layer.classList.remove('visible');
setTimeout(function () {
$layer.remove();
$toggle.classList.remove('toggled');
}, 400);
}.bind(this);
body.classList.add('nav-open');
this.mobile_menu_visible = 1;
}
};
getTitle() {
var titlee = this.location.prepareExternalUrl(this.location.path());
if (titlee.charAt(0) === '#') {
titlee = titlee.slice(2);
}
titlee = titlee.split('/').pop();
for (var item = 0; item < this.listTitles.length; item++) {
if (this.listTitles[item].path === titlee) {
return this.listTitles[item].title;
}
}
return 'Dashboard';
2019-04-24 11:26:53 +02:00
}
public getCurrentLanguage(): any {
const lang = this.languages.find(lang => lang.value === this.languageService.getCurrentLanguage());
return lang;
}
public getPrincipalName(): string {
2023-10-11 16:53:12 +02:00
return this.authentication.getPrincipalName();
}
2019-04-24 11:26:53 +02:00
public principalHasAvatar(): boolean {
2023-10-11 16:53:12 +02:00
return this.authentication.getUserProfileAvatarUrl() != null && this.authentication.getUserProfileAvatarUrl().length > 0;
2019-04-24 11:26:53 +02:00
}
public getPrincipalAvatar(): string {
2023-10-11 16:53:12 +02:00
return this.authentication.getUserProfileAvatarUrl();
2019-04-24 11:26:53 +02:00
}
2019-11-22 17:28:20 +01:00
public getDefaultAvatar(): string {
return 'assets/images/profile-placeholder.png';
}
public applyFallbackAvatar(ev: Event) {
(ev.target as HTMLImageElement).src = this.getDefaultAvatar();
}
2019-04-25 11:03:22 +02:00
public isAdmin(): boolean {
2023-10-11 16:53:12 +02:00
return this.authentication.hasRole(AppRole.Admin);
2019-04-25 11:03:22 +02:00
}
2019-04-24 11:26:53 +02:00
openProfile() {
const dialogRef = this.dialog.open(UserDialogComponent, {
hasBackdrop: true,
autoFocus: false,
closeOnNavigation: true,
disableClose: false,
2024-03-14 13:03:02 +01:00
position: { top: '71px', right: '1em' },
panelClass: 'custom-userbox'
2019-04-24 11:26:53 +02:00
});
}
openFaqDialog() {
if (this.dialog.openDialogs.length > 0) {
this.dialog.closeAll();
}
else {
const dialogRef = this.dialog.open(FaqDialogComponent, {
disableClose: true,
data: {
isDialog: true
},
width: '100%'
});
}
}
getLanguage(selectedLanguage: string) {
this.selectedLanguage = selectedLanguage;
}
toggleNavbar(event) {
document.getElementById('hamburger').classList.toggle("change");
}
sidebarToggleOutput(event) {
this.sidebarToggled.emit(event);
}
2023-02-11 13:38:13 +01:00
toggleMyNav(event) {
this.sidenavService.toggle();
}
openNewDmpDialog() {
if (this.dialog.openDialogs.length > 0) {
this.dialog.closeAll();
} else if (!this.isAuthenticated()) {
this.router.navigate(['/login']);
} else {
const dialogRef = this.dialog.open(StartNewDmpDialogComponent, {
disableClose: false,
data: {
isDialog: true
}
});
}
}
logout() {
2023-10-11 16:53:12 +02:00
this.router.navigate(['/logout']);
}
2024-01-09 14:52:07 +01:00
toggleInAppNotifications() {
if (this.inAppNotificationDialog != null) {
this.inAppNotificationDialog.close();
} else {
this.countUnreadInappNotifications();
2024-01-10 13:24:32 +01:00
this.inAppNotificationDialog = this.dialog.open(MineInAppNotificationListingDialogComponent, {
2024-03-19 16:25:37 +01:00
hasBackdrop: true,
autoFocus: false,
closeOnNavigation: true,
disableClose: false,
position: { top: '71px', right: '4.8em' },
2024-01-09 14:52:07 +01:00
});
this.inAppNotificationDialog.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => {
this.countUnreadInappNotifications();
this.inAppNotificationDialog = null;
});
}
}
2019-04-24 11:26:53 +02:00
}