2017-09-20 12:54:26 +03:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
import { NbThemeService } from '@nebular/theme';
|
|
|
|
|
import { NbJSThemeOptions } from '@nebular/theme/services/js-themes/theme.options';
|
2017-09-20 15:48:30 +03:00
|
|
|
import { AnalyticsService } from '../../../@core/utils/analytics.service';
|
2017-09-20 12:54:26 +03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'ngx-theme-switcher',
|
|
|
|
|
styleUrls: ['./theme-switcher.component.scss'],
|
|
|
|
|
template: `
|
|
|
|
|
<label class="theme-switch">
|
|
|
|
|
<span class="light">Light</span>
|
|
|
|
|
<div class="switch">
|
|
|
|
|
<input type="checkbox" [checked]="currentBoolTheme()" (change)="toggleTheme(theme.checked)" #theme>
|
|
|
|
|
<span class="slider"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="cosmic">Cosmic</span>
|
|
|
|
|
</label>
|
|
|
|
|
`,
|
|
|
|
|
})
|
|
|
|
|
export class ThemeSwitcherComponent implements OnInit {
|
|
|
|
|
theme: NbJSThemeOptions;
|
|
|
|
|
|
2017-09-20 15:48:30 +03:00
|
|
|
constructor(private themeService: NbThemeService, private analyticsService: AnalyticsService) {
|
2017-09-20 12:54:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
this.themeService.getJsTheme()
|
|
|
|
|
.subscribe((theme: NbJSThemeOptions) => this.theme = theme);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toggleTheme(theme: boolean) {
|
|
|
|
|
const boolTheme = this.boolToTheme(theme);
|
|
|
|
|
this.themeService.changeTheme(boolTheme);
|
2017-09-20 15:48:30 +03:00
|
|
|
this.analyticsService.trackEvent('switchTheme');
|
2017-09-20 12:54:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
currentBoolTheme() {
|
|
|
|
|
return this.themeToBool(this.theme);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private themeToBool(theme: NbJSThemeOptions) {
|
|
|
|
|
return theme.name === 'cosmic';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolToTheme(theme: boolean) {
|
|
|
|
|
return theme ? 'cosmic' : 'default';
|
|
|
|
|
}
|
|
|
|
|
}
|