You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
import { Component, OnDestroy, OnInit } from '@angular/core'; |
|
import { Title } from '@angular/platform-browser'; |
|
import { Subscription } from 'rxjs'; |
|
|
|
import { environment } from '../environments/environment'; |
|
import { Theme } from './core/enums/theme.enum'; |
|
import { UserRole } from './core/enums/user-role.enum'; |
|
import { User } from './core/models/user.model'; |
|
import { LanguageService } from './core/services/language.service'; |
|
import { MockingService } from './core/services/mocking.service'; |
|
import { ThemeService } from './core/services/theme.service'; |
|
|
|
@Component({ |
|
selector: 'app-root', |
|
templateUrl: './app.component.html', |
|
styleUrls: ['./app.component.scss'], |
|
}) |
|
export class AppComponent implements OnInit, OnDestroy { |
|
public appTitle: string = environment.appTitle; |
|
public themeClass: string; |
|
public isSidebarOpened = false; |
|
private themeSubscription: Subscription; |
|
|
|
constructor( |
|
private titleService: Title, |
|
private themeService: ThemeService, |
|
private languageService: LanguageService, |
|
private mockingService: MockingService |
|
) {} |
|
|
|
ngOnInit(): void { |
|
if (!environment.production) { |
|
this.appTitle += ' [DEV]'; |
|
// TODO: to be removed |
|
this.mockingService.loadUser(new User('TOTO', 'toto@gafam.com', UserRole.REGISTERED)); |
|
} |
|
this.titleService.setTitle(this.appTitle); |
|
this.languageService.configureAndInitTranslations(); |
|
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'; |
|
} |
|
}); |
|
} |
|
|
|
ngOnDestroy(): void { |
|
if (this.themeSubscription) { |
|
this.themeSubscription.unsubscribe(); |
|
} |
|
} |
|
|
|
public toggleSidebar(status: boolean): void { |
|
this.isSidebarOpened = status === true; |
|
} |
|
}
|
|
|