X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=webapp%2Fsrc%2Fapp%2Fpages%2Fsdks%2Fsdk-management%2Fsdk-management.component.ts;h=051b6efc29dd4e85c1067dbc7bb669f8f0ea370b;hb=0e0e584adab9322fe6b5bb0ad61e860d04cb64ad;hp=68620a186bec682c6788e1d29189d617fe44c824;hpb=bbef877fbb1c32981e86e407afd095e24d10232a;p=src%2Fxds%2Fxds-agent.git diff --git a/webapp/src/app/pages/sdks/sdk-management/sdk-management.component.ts b/webapp/src/app/pages/sdks/sdk-management/sdk-management.component.ts index 68620a1..051b6ef 100644 --- a/webapp/src/app/pages/sdks/sdk-management/sdk-management.component.ts +++ b/webapp/src/app/pages/sdks/sdk-management/sdk-management.component.ts @@ -1,6 +1,6 @@ /** * @license -* Copyright (C) 2017 "IoT.bzh" +* Copyright (C) 2017-2018 "IoT.bzh" * Author Sebastien Douheret * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -48,7 +48,6 @@ interface ISdkMgt extends ISdk { export class SdkManagementComponent implements OnInit { - sdks$: Observable; sdks: ISdkMgt[]; source: LocalDataSource = new LocalDataSource(); @@ -68,8 +67,8 @@ export class SdkManagementComponent implements OnInit { }, columns: { name: { title: 'Name', editable: false }, - profile: { title: 'Profile', editable: false, filter: {} }, - arch: { title: 'Architecture', editable: false, filter: {} }, + profile: { title: 'Profile', editable: false, filter: { type: 'list', config: {} } }, + arch: { title: 'Architecture', editable: false, filter: { type: 'list', config: {} } }, version: { title: 'Version', editable: false }, // TODO: add status when delete supported: // status: { title: 'Status', editable: false }, @@ -84,10 +83,16 @@ export class SdkManagementComponent implements OnInit { ) { } ngOnInit() { + this.sdkSvr.Sdks$.subscribe(sdks => { const profMap = {}; const archMap = {}; this.sdks = []; + + if (sdks.length === 0) { + return; + } + sdks.forEach(s => { // only display not installed SDK if (s.status !== StatusType.NOT_INSTALLED) { @@ -105,14 +110,22 @@ export class SdkManagementComponent implements OnInit { }); + // Create new reference of settings object to trig ngOnChanges event in ng2-smart-table + // and consequently rebuild settings grid + this.settings = Object.assign({}, this.settings); + // Add text box filter for Profile and Arch columns - const profList = []; Object.keys(profMap).forEach(a => profList.push({ value: a, title: a })); + const profList = []; + Object.keys(profMap).forEach(a => profList.push({ value: a, title: a })); + this.settings.columns.profile.filter = { type: 'list', config: { selectText: 'Select...', list: profList }, }; - const archList = []; Object.keys(archMap).forEach(a => archList.push({ value: a, title: a })); + const archList = []; + Object.keys(archMap).forEach(a => archList.push({ value: a, title: a })); + this.settings.columns.arch.filter = { type: 'list', config: { selectText: 'Select...', list: archList }, @@ -141,15 +154,20 @@ export class SdkManagementComponent implements OnInit { modal.result.then(res => { if (res === 'yes') { - // Request installation - this.sdkSvr.install(sdk).subscribe(r => { }, err => this.alert.error(err)); - const modalInstall = this.modalService.open(SdkInstallComponent, { size: 'lg', backdrop: 'static', container: 'nb-layout', }); modalInstall.componentInstance.sdk = sdk; + + // Request installation + this.sdkSvr.install(sdk).subscribe( + r => { }, + err => { + modalInstall.dismiss('SDK install failure'); + this.alert.error(err); + }); } });