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

58 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-05-01 19:10:17 +02:00
import { Component, OnDestroy, OnInit } from '@angular/core';
2020-04-22 12:56:18 +02:00
import { Title } from '@angular/platform-browser';
2020-05-01 19:10:17 +02:00
import { Subscription } from 'rxjs';
2020-04-22 12:56:18 +02:00
import { environment } from '../environments/environment';
2020-04-22 12:56:18 +02:00
import { Theme } from './core/enums/theme.enum';
2020-05-01 19:10:17 +02:00
import { UserRole } from './core/enums/user-role.enum';
import { MockingService } from './core/services/mocking.service';
2020-04-22 12:56:18 +02:00
import { ThemeService } from './core/services/theme.service';
@Component({
2020-04-21 10:50:26 +02:00
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
2020-04-22 12:56:18 +02:00
export class AppComponent implements OnInit, OnDestroy {
public appTitle: string = environment.appTitle;
public themeClass: string;
2020-05-01 19:10:17 +02:00
public isSidebarOpened = false;
2020-04-22 12:56:18 +02:00
private themeSubscription: Subscription;
2020-04-21 10:50:26 +02:00
constructor(
2020-04-22 12:56:18 +02:00
private titleService: Title,
private themeService: ThemeService,
2020-05-01 19:10:17 +02:00
private mockingService: MockingService
2020-04-22 12:56:18 +02:00
) {}
ngOnInit(): void {
if (!environment.production) {
2020-05-01 19:10:17 +02:00
this.appTitle += ' [DEV]';
this.mockingService.loadUser(UserRole.REGISTERED);
2020-04-22 12:56:18 +02:00
}
this.titleService.setTitle(this.appTitle);
this.themeSubscription = this.themeService.theme.subscribe((theme: Theme) => {
switch (theme) {
case Theme.DARK:
this.themeClass = 'theme-dark-crystal';
break;
case Theme.RED:
this.themeClass = 'theme-hot-covid';
break;
default:
this.themeClass = 'theme-light-watermelon';
}
});
}
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-05-01 19:10:17 +02:00
public toggleSidebar(status: boolean): void {
this.isSidebarOpened = status === true;
2020-04-22 12:56:18 +02:00
}
}