funky-framadate-front/src/app/ui/selectors/theme-selector/theme-selector.component.ts

26 lines
706 B
TypeScript
Raw Normal View History

2020-04-22 12:56:18 +02:00
import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { Theme } from '../../../core/enums/theme.enum';
import { ThemeService } from '../../../core/services/theme.service';
@Component({
selector: 'app-theme-selector',
templateUrl: './theme-selector.component.html',
styleUrls: ['./theme-selector.component.scss'],
})
export class ThemeSelectorComponent implements OnInit {
public themeEnum = Theme;
public currentTheme: Observable<Theme>;
constructor(private themeService: ThemeService) {}
ngOnInit(): void {
this.currentTheme = this.themeService.theme;
}
public selectTheme(theme: string): void {
this.themeService.selectTheme(theme as Theme);
}
}