2021-11-16 16:16:30 +01:00
|
|
|
import { AfterViewInit, Component, Inject, OnDestroy, OnInit } from '@angular/core';
|
2020-10-17 11:12:53 +02:00
|
|
|
import { Title } from '@angular/platform-browser';
|
|
|
|
import { Subscription } from 'rxjs';
|
2020-04-22 12:56:18 +02:00
|
|
|
|
2020-10-17 11:12:53 +02:00
|
|
|
import { environment } from '../environments/environment';
|
|
|
|
import { Theme } from './core/enums/theme.enum';
|
|
|
|
import { LanguageService } from './core/services/language.service';
|
|
|
|
import { ThemeService } from './core/services/theme.service';
|
2021-06-10 10:52:32 +02:00
|
|
|
import { NavigationEnd, Route, Router, RouterOutlet } from '@angular/router';
|
2021-05-18 11:21:40 +02:00
|
|
|
import { slideInAnimation } from './shared/animations/main';
|
2021-05-18 13:34:28 +02:00
|
|
|
import { FramaKeyboardShortcuts } from './shared/shortcuts/main';
|
2021-05-18 15:19:11 +02:00
|
|
|
import { ShortcutEventOutput, ShortcutInput } from 'ng-keyboard-shortcuts';
|
2021-09-09 09:59:02 +02:00
|
|
|
import { PollService } from './core/services/poll.service';
|
2021-11-07 15:21:27 +01:00
|
|
|
import { Poll } from './core/models/poll.model';
|
2021-11-08 09:32:50 +01:00
|
|
|
import { PollDTO } from './core/models/poll.DTO.model';
|
2021-11-08 10:26:16 +01:00
|
|
|
import { PrimeNGConfig } from 'primeng/api';
|
|
|
|
import { Language } from './core/enums/language.enum';
|
2021-11-16 16:16:30 +01:00
|
|
|
import { ApiService } from './core/services/api.service';
|
|
|
|
import { DOCUMENT } from '@angular/common';
|
2019-08-09 13:38:51 +02:00
|
|
|
|
|
|
|
@Component({
|
2020-04-21 10:50:26 +02:00
|
|
|
selector: 'app-root',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: ['./app.component.scss'],
|
2021-05-18 11:21:40 +02:00
|
|
|
animations: [slideInAnimation],
|
2019-08-09 13:38:51 +02:00
|
|
|
})
|
2021-05-18 13:34:28 +02:00
|
|
|
export class AppComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
|
shortcuts: ShortcutInput[] = FramaKeyboardShortcuts;
|
|
|
|
|
2020-04-22 12:56:18 +02:00
|
|
|
public appTitle: string = environment.appTitle;
|
2020-08-12 16:00:20 +02:00
|
|
|
public appLogo: string = environment.appLogo;
|
2020-04-22 12:56:18 +02:00
|
|
|
public themeClass: string;
|
2020-05-01 19:10:17 +02:00
|
|
|
public isSidebarOpened = false;
|
2020-10-21 17:02:01 +02:00
|
|
|
public devModeEnabled = !environment.production;
|
2020-04-22 12:56:18 +02:00
|
|
|
private themeSubscription: Subscription;
|
|
|
|
|
2021-05-01 23:10:00 +02:00
|
|
|
public environment = environment;
|
2021-11-18 14:57:07 +01:00
|
|
|
public onHomePage = false;
|
2021-05-01 23:10:00 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
constructor(
|
2021-04-25 11:58:58 +02:00
|
|
|
private router: Router,
|
2020-04-22 12:56:18 +02:00
|
|
|
private titleService: Title,
|
|
|
|
private themeService: ThemeService,
|
2021-09-09 09:59:02 +02:00
|
|
|
private pollService: PollService,
|
2021-11-16 16:16:30 +01:00
|
|
|
private apiService: ApiService,
|
2021-11-08 10:26:16 +01:00
|
|
|
private config: PrimeNGConfig,
|
2021-11-16 16:16:30 +01:00
|
|
|
@Inject(DOCUMENT) private document: any,
|
2020-10-21 17:02:01 +02:00
|
|
|
private languageService: LanguageService // private mockingService: MockingService
|
|
|
|
) {}
|
2020-04-22 12:56:18 +02:00
|
|
|
|
2021-06-10 10:52:32 +02:00
|
|
|
printpath(parent: string, config: Route[]) {
|
|
|
|
for (let i = 0; i < config.length; i++) {
|
|
|
|
const route = config[i];
|
|
|
|
if (route.children) {
|
|
|
|
const currentPath = route.path ? parent + '/' + route.path : parent;
|
|
|
|
this.printpath(currentPath, route.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 12:56:18 +02:00
|
|
|
ngOnInit(): void {
|
2021-11-08 10:26:16 +01:00
|
|
|
this.languageService.getPrimeNgStrings().subscribe((resp) => {
|
|
|
|
this.config.setTranslation(resp);
|
|
|
|
});
|
|
|
|
|
2021-06-10 10:52:32 +02:00
|
|
|
this.printpath('', this.router.config);
|
2021-04-25 11:58:58 +02:00
|
|
|
this.router.events.subscribe((evt) => {
|
|
|
|
if (!(evt instanceof NavigationEnd)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-11-18 14:57:07 +01:00
|
|
|
console.log('evt', evt);
|
|
|
|
|
|
|
|
this.onHomePage = evt.url === '/';
|
2021-11-16 16:16:30 +01:00
|
|
|
|
2021-11-29 13:00:01 +01:00
|
|
|
let mainelem = this.document.querySelector('#big_container');
|
2021-11-16 16:16:30 +01:00
|
|
|
console.log('mainelem', mainelem);
|
|
|
|
window.scrollTo(0, mainelem.offsetTop);
|
2021-04-25 11:58:58 +02:00
|
|
|
});
|
|
|
|
|
2020-04-22 12:56:18 +02:00
|
|
|
if (!environment.production) {
|
2020-05-01 19:10:17 +02:00
|
|
|
this.appTitle += ' [DEV]';
|
2020-04-22 12:56:18 +02:00
|
|
|
}
|
2021-09-09 09:59:02 +02:00
|
|
|
|
2021-11-07 15:21:27 +01:00
|
|
|
let loadedPoll;
|
|
|
|
if (this.pollService.poll) {
|
|
|
|
loadedPoll = this.pollService.poll;
|
|
|
|
}
|
2021-09-09 09:59:02 +02:00
|
|
|
|
|
|
|
this.titleService.setTitle(this.appTitle + ' - ' + loadedPoll.title);
|
2020-05-05 18:17:12 +02:00
|
|
|
this.languageService.configureAndInitTranslations();
|
2020-04-22 12:56:18 +02:00
|
|
|
this.themeSubscription = this.themeService.theme.subscribe((theme: Theme) => {
|
|
|
|
switch (theme) {
|
|
|
|
case Theme.DARK:
|
|
|
|
this.themeClass = 'theme-dark-crystal';
|
|
|
|
break;
|
2020-06-25 22:42:26 +02:00
|
|
|
case Theme.CONTRAST:
|
2020-04-22 12:56:18 +02:00
|
|
|
this.themeClass = 'theme-hot-covid';
|
|
|
|
break;
|
2020-09-14 16:07:09 +02:00
|
|
|
case Theme.RED:
|
|
|
|
this.themeClass = 'theme-hot-covid';
|
|
|
|
break;
|
2020-04-22 12:56:18 +02:00
|
|
|
default:
|
|
|
|
this.themeClass = 'theme-light-watermelon';
|
|
|
|
}
|
|
|
|
});
|
2021-11-16 16:16:30 +01:00
|
|
|
|
|
|
|
// debug cors
|
2021-11-17 15:06:36 +01:00
|
|
|
// this.apiService.getAllAvailablePolls();
|
2020-04-22 12:56:18 +02:00
|
|
|
}
|
2021-11-07 15:21:27 +01:00
|
|
|
|
2021-05-18 15:19:11 +02:00
|
|
|
ngAfterViewInit(): void {
|
|
|
|
this.shortcuts.push(
|
|
|
|
{
|
|
|
|
key: '?',
|
|
|
|
label: 'Help',
|
|
|
|
description: 'Question mark',
|
|
|
|
command: (e) => console.log('question mark clicked', { e }),
|
|
|
|
preventDefault: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: ['up up down down left right left right b a enter'],
|
|
|
|
label: 'Sequences',
|
|
|
|
description: 'Konami code!',
|
|
|
|
command: (output: ShortcutEventOutput) => console.log('Konami code!!!', output),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: ['cmd + b'],
|
|
|
|
label: 'Help',
|
|
|
|
description: 'Cmd + b',
|
|
|
|
command: (e) => console.log(e),
|
|
|
|
preventDefault: true,
|
|
|
|
}
|
|
|
|
);
|
2021-05-18 13:34:28 +02:00
|
|
|
}
|
2020-01-16 11:02:57 +01:00
|
|
|
|
2020-04-22 12:56:18 +02:00
|
|
|
ngOnDestroy(): void {
|
|
|
|
if (this.themeSubscription) {
|
|
|
|
this.themeSubscription.unsubscribe();
|
|
|
|
}
|
2020-04-21 10:50:26 +02:00
|
|
|
}
|
2020-01-16 11:02:57 +01:00
|
|
|
|
2021-11-18 14:37:22 +01:00
|
|
|
prepareRoute(outlet: any) {
|
2021-05-18 11:21:40 +02:00
|
|
|
return outlet && outlet.activatedRouteData && outlet.activatedRouteData.animation;
|
|
|
|
}
|
2019-08-09 13:38:51 +02:00
|
|
|
}
|