member_webapp/@overflow/sensor/component/sensor-detail.component.ts
crusader 0fe54aaa86 ing
2018-06-04 14:19:55 +09:00

84 lines
2.0 KiB
TypeScript

import { Component, OnInit, Inject, AfterContentInit, OnDestroy, Input } from '@angular/core';
import { Store, select } from '@ngrx/store';
import { Observable, of, Subscription } from 'rxjs';
import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
import { ConfirmationService } from 'primeng/primeng';
import { RPCClientError } from '@loafer/ng-rpc';
import { Sensor } from '@overflow/commons-typescript/model/sensor';
import { SensorService } from '../service/sensor.service';
@Component({
selector: 'of-sensor-detail',
templateUrl: './sensor-detail.component.html',
providers: [ConfirmationService]
})
export class SensorDetailComponent implements OnInit, OnDestroy {
@Input() sensorID: number;
sensor: Sensor;
sensorSettingDisplay: boolean;
pending$: Observable<boolean>;
error$: Observable<any>;
constructor(
private confirmationService: ConfirmationService,
private store: Store<any>,
private sensorService: SensorService,
) {
this.sensorSettingDisplay = false;
}
ngOnInit() {
this.sensorService.read(this.sensorID)
.pipe(
tap(() => {
this.pending$ = of(true);
}),
map((sensor: Sensor) => {
this.sensor = sensor;
}),
catchError(error => {
this.error$ = of(error);
return of();
}),
tap(() => {
this.pending$ = of(false);
}),
).take(1).subscribe();
}
ngOnDestroy() {
}
onStartOrStop() { }
onEdit() {
this.sensorSettingDisplay = true;
}
onRemove() {
this.confirmationService.confirm({
header: 'Are you sure to remove this Sensor?',
icon: 'fa fa-trash',
message: 'All the related data will be deleted. ',
accept: () => {
alert('으앙 안돼 지우지마ㅠㅠ');
},
reject: () => {
}
});
}
onTargetClick(target) {
// this.router.navigate(['sensors'], { queryParams: { target: target.id } });
// this.router.navigate(['target', target.id, 'info']);
}
}