From db2c02a9bfd709c662872fccc86d011136e9d8d1 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Thu, 18 May 2017 15:36:21 +0200 Subject: [PATCH] Fix SDKs init when no sdk found in Webapp. --- webapp/src/app/common/sdk.service.ts | 4 ++++ webapp/src/app/sdks/sdkSelectDropdown.component.ts | 12 ++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/webapp/src/app/common/sdk.service.ts b/webapp/src/app/common/sdk.service.ts index 3f2f32a..19c49d9 100644 --- a/webapp/src/app/common/sdk.service.ts +++ b/webapp/src/app/common/sdk.service.ts @@ -34,6 +34,10 @@ export class SdkService { this.current = s; } + public getCurrent(): ISdk { + return this.current; + } + public getCurrentId(): string { if (this.current && this.current.id) { return this.current.id; diff --git a/webapp/src/app/sdks/sdkSelectDropdown.component.ts b/webapp/src/app/sdks/sdkSelectDropdown.component.ts index 5122cd2..f213db0 100644 --- a/webapp/src/app/sdks/sdkSelectDropdown.component.ts +++ b/webapp/src/app/sdks/sdkSelectDropdown.component.ts @@ -29,15 +29,19 @@ export class SdkSelectDropdownComponent { constructor(private sdkSvr: SdkService) { } ngOnInit() { + this.curSdk = this.sdkSvr.getCurrent(); this.sdkSvr.Sdks$.subscribe((s) => { - this.sdks = s; - this.curSdk = this.sdks.length ? this.sdks[0] : null; - this.sdkSvr.setCurrent(this.curSdk); + if (s) { + this.sdks = s; + if (this.curSdk === null || s.indexOf(this.curSdk) === -1) { + this.sdkSvr.setCurrent(this.curSdk = s.length ? s[0] : null); + } + } }); } select(s) { - this.sdkSvr.setCurrent(this.curSdk = s); + this.sdkSvr.setCurrent(this.curSdk = s); } } -- 2.16.6