funky-framadate-front/src/app/app.component.ts

142 lines
4.1 KiB
TypeScript
Raw Normal View History

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';
import { FramaKeyboardShortcuts } from './shared/shortcuts/main';
2021-05-18 15:19:11 +02:00
import { ShortcutEventOutput, ShortcutInput } from 'ng-keyboard-shortcuts';
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';
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';
@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],
})
export class AppComponent implements OnInit, OnDestroy, AfterViewInit {
shortcuts: ShortcutInput[] = FramaKeyboardShortcuts;
2020-04-22 12:56:18 +02:00
public appTitle: string = environment.appTitle;
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;
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;
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,
private pollService: PollService,
2021-11-16 16:16:30 +01:00
private apiService: ApiService,
private config: PrimeNGConfig,
2021-11-16 16:16:30 +01:00
@Inject(DOCUMENT) private document: any,
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 {
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-16 16:16:30 +01:00
let mainelem = this.document.querySelector('#big_container main');
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-11-07 15:21:27 +01:00
let loadedPoll;
if (this.pollService.poll) {
loadedPoll = this.pollService.poll;
}
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;
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,
}
);
}
2020-04-22 12:56:18 +02:00
ngOnDestroy(): void {
if (this.themeSubscription) {
this.themeSubscription.unsubscribe();
}
2020-04-21 10:50:26 +02: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;
}
}