Added target and terminal support in Dashboard
[src/xds/xds-agent.git] / webapp / src / app / pages / targets / targets.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 } from '@angular/core';
20 import { Observable } from 'rxjs/Observable';
21 import { Subject } from 'rxjs/Subject';
22
23 import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
24 import { TargetAddModalComponent } from './target-add-modal/target-add-modal.component';
25
26 import { TargetService, ITarget } from '../../@core-xds/services/target.service';
27 import { AlertService } from '../../@core-xds/services/alert.service';
28
29 @Component({
30   selector: 'xds-targets',
31   styleUrls: ['./targets.component.scss'],
32   templateUrl: './targets.component.html',
33 })
34 export class TargetsComponent implements OnInit {
35
36   public targets$: Observable<ITarget[]>;
37
38   protected curTargetID: string;
39
40   constructor(
41     private modalService: NgbModal,
42     private targetSvr: TargetService,
43     private alert: AlertService,
44   ) {
45     this.curTargetID = '';
46   }
47
48   ngOnInit() {
49     this.targets$ = this.targetSvr.targets$;
50   }
51
52   add() {
53     const activeModal = this.modalService.open(TargetAddModalComponent, {
54       size: 'lg',
55       windowClass: 'modal-xxl',
56       container: 'nb-layout',
57     });
58   }
59
60 }