X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=webapp%2Fsrc%2Fapp%2F%40core-xds%2Fservices%2Fconfig.service.ts;fp=webapp%2Fsrc%2Fapp%2F%40core-xds%2Fservices%2Fconfig.service.ts;h=168b278e258e6d109899897b098fcbe10a54496c;hb=38e0baedab9da4516cdc97b526392cbc2c7da67e;hp=cc4d2375e6fd453accfc4dbb54d5c2e91d4805b4;hpb=bb9af073f62551fd295a9cf236b00e6376ead1ae;p=src%2Fxds%2Fxds-agent.git diff --git a/webapp/src/app/@core-xds/services/config.service.ts b/webapp/src/app/@core-xds/services/config.service.ts index cc4d237..168b278 100644 --- a/webapp/src/app/@core-xds/services/config.service.ts +++ b/webapp/src/app/@core-xds/services/config.service.ts @@ -18,62 +18,65 @@ import { Injectable } from '@angular/core'; import { CookieService } from 'ngx-cookie'; +import { NbThemeService } from '@nebular/theme'; + import { Observable } from 'rxjs/Observable'; import { BehaviorSubject } from 'rxjs/BehaviorSubject'; -import { AlertService, IAlert } from '../services/alert.service'; - export interface IConfig { - language: string; - projectsRootDir: string; + language: string; + theme: string; } @Injectable() export class ConfigService { - public Conf$: Observable; + public Conf$: Observable; - private confSubject: BehaviorSubject; - private confStore: IConfig; + private confSubject: BehaviorSubject; + private confStore: IConfig; - constructor( - private cookie: CookieService, - private alert: AlertService, - ) { - this.load(); - this.confSubject = >new BehaviorSubject(this.confStore); - this.Conf$ = this.confSubject.asObservable(); - } + constructor( + private cookie: CookieService, + private themeService: NbThemeService, + ) { + this.confSubject = >new BehaviorSubject(this.confStore); + this.Conf$ = this.confSubject.asObservable(); - // Load config - load() { - // Try to retrieve previous config from cookie - const cookConf = this.cookie.getObject('xds-config'); - if (cookConf != null) { - this.confStore = cookConf; - } else { - // Set default config - this.confStore = { - language: 'ENG', - projectsRootDir: '', - // projects: [] - }; - } - } + // Load initial config and apply it + this.load(); + this.themeService.changeTheme(this.confStore.theme); - // Save config into cookie - save() { - // Notify subscribers - this.confSubject.next(Object.assign({}, this.confStore)); + // Save selected theme in cookie + this.themeService.onThemeChange().subscribe(tm => { + if (tm.name !== this.confStore.theme) { + this.confStore.theme = tm.name; + this.save(); + } + }); + } - // Don't save projects in cookies (too big!) - const cfg = Object.assign({}, this.confStore); - this.cookie.putObject('xds-config', cfg); + // Load config + load() { + // Try to retrieve previous config from cookie + const cookConf = this.cookie.getObject('xds-config'); + if (cookConf != null) { + this.confStore = cookConf; + } else { + // Set default config + this.confStore = { + language: 'ENG', + theme: 'default', + }; } + } - set projectsRootDir(p: string) { - this.confStore.projectsRootDir = p; - this.save(); - } + // Save config into cookie + save() { + // Notify subscribers + this.confSubject.next(Object.assign({}, this.confStore)); + + this.cookie.putObject('xds-config', this.confStore); + } }