Fixed webapp build error in prod mode
[src/xds/xds-agent.git] / webapp / src / app / pages / build / settings / sdk-select-dropdown.component.ts
1 /**
2 * @license
3 * Copyright (C) 2017-2018 "IoT.bzh"
4 * Author Sebastien Douheret <sebastien@iot.bzh>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 import { Component, OnInit, Input } from '@angular/core';
20
21 import { ISdk, SdkService, StatusType } from '../../../@core-xds/services/sdk.service';
22
23 @Component({
24   selector: 'xds-sdk-select-dropdown',
25   template: `
26       <div class="form-group">
27       <label>SDK</label>
28       <select class="form-control" [(ngModel)]="curSdk" (click)="select()">
29         <option *ngFor="let sdk of sdks" [ngValue]="sdk">{{sdk.name}}</option>
30       </select>
31     </div>
32     `,
33 })
34 export class SdkSelectDropdownComponent implements OnInit {
35
36   sdks: ISdk[];
37   curSdk: ISdk;
38
39   constructor(private sdkSvr: SdkService) { }
40
41   ngOnInit() {
42     this.curSdk = this.sdkSvr.getCurrent();
43     this.sdkSvr.Sdks$.subscribe((s) => {
44       if (s) {
45         // Only list installed SDKs
46         this.sdks = s.filter(ss => ss.status === StatusType.INSTALLED);
47         if (this.curSdk === null || s.indexOf(this.curSdk) === -1) {
48           this.sdkSvr.setCurrent(this.curSdk = this.sdks.length ? this.sdks[0] : null);
49           this.curSdk = this.sdkSvr.getCurrent();
50         }
51       }
52     });
53   }
54
55   select() {
56     if (this.curSdk) {
57       this.sdkSvr.setCurrent(this.curSdk);
58     }
59   }
60 }
61
62