member_webapp/@overflow/target/component/target-detail.component.ts

201 lines
4.6 KiB
TypeScript
Raw Permalink Normal View History

2018-06-21 11:10:18 +00:00
import { Component, OnInit, Input } from '@angular/core';
2018-05-02 08:25:38 +00:00
import { Target } from '@overflow/commons-typescript/model/target';
2018-06-21 11:10:18 +00:00
import {TargetService} from '../service/target.service';
2018-06-11 09:16:12 +00:00
import {
Observable,
of
} from 'rxjs';
import { Store } from '@ngrx/store';
import {
catchError,
map,
tap,
take
} from 'rxjs/operators';
2018-04-30 08:12:31 +00:00
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
@Component({
selector: 'of-target-detail',
2018-06-21 11:10:18 +00:00
templateUrl: './target-detail.component.html',
2018-04-16 08:28:39 +00:00
})
2018-06-21 11:10:18 +00:00
export class TargetDetailComponent implements OnInit {
2018-06-11 09:16:12 +00:00
@Input() targetID: number;
2018-04-06 11:02:18 +00:00
2018-06-11 09:16:12 +00:00
target: Target;
pending$: Observable<boolean>;
error$: Observable<any>;
2018-04-30 08:53:15 +00:00
2018-04-30 08:12:31 +00:00
constructor(
2018-06-11 09:16:12 +00:00
private store: Store<any>,
private targetService: TargetService,
2018-04-30 08:12:31 +00:00
) { }
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
ngOnInit() {
2018-06-11 09:16:12 +00:00
this.targetService.read(this.targetID)
.pipe(
tap(() => {
this.pending$ = of(true);
}),
map((target: Target) => {
this.target = target;
}),
catchError(err => {
console.log(err);
return err;
}),
tap(() => {
this.pending$ = of(false);
}),
take(1),
).subscribe();
2018-04-16 08:28:39 +00:00
}
2018-04-06 11:02:18 +00:00
2018-06-11 09:16:12 +00:00
onDisplayNameChangeKeypress(event, value) {
2018-04-30 08:12:31 +00:00
2018-04-30 10:59:32 +00:00
}
2018-06-11 09:16:12 +00:00
onDisplayNameChange(value) {
2018-04-30 10:59:32 +00:00
}
2018-04-16 08:28:39 +00:00
}
2018-06-11 09:16:12 +00:00
//
// export class DetailComponent implements OnInit {
//
// @Input() targetID: number;
//
// target: Target;
//
// // infra$: Observable<Infra>;
// // infraSubscription$: Subscription;
// // sensorsSubscription$: Subscription;
// // // sensors$ = this.sensorListStore.pipe(select(sensorListSelector.select('page')));
// // target$: Observable<Target>;
// //
// // infraId = null;
// // infra: Infra;
// // sensors: Sensor[];
// // sensorsCount = 0;
// // sensorSettingDisplay = false;
// //
// // pageSize = '10';
// // totalLength = 0;
// // currPage = 0;
//
// constructor(
// private store: Store<any>,
// private targetService: TargetService,
// ) { }
//
// ngOnInit() {
// this.tar
// // this.infraSubscription$ = this.infra$.subscribe(
// // (infra: Infra) => {
// // this.infra = infra;
// // },
// // (error: RPCClientError) => {
// // console.log(error.response.message);
// // }
// // );
// // this.sensorsSubscription$ = this.sensors$.subscribe(
// // (page: Page) => {
// // if (page) {
// // this.sensorsCount = page.totalElements;
// // this.sensors = page.content;
// // }
// // },
// // (error: RPCClientError) => {
// // console.log(error.response.message);
// // }
// // );
// }
//
// ngAfterContentInit() {
// // this.infraId = this.route.snapshot.paramMap.get('id');
// // this.getInfra();
// // this.getSensors(this.currPage);
// }
//
// ngOnDestroy() {
// // if (this.infraSubscription$) {
// // this.infraSubscription$.unsubscribe();
// // }
// }
//
// getInfra() {
// // this.infraDetailStore.dispatch(
// // new InfraDetailStore.Read(
// // { id: this.infraId }
// // )
// // );
// }
//
// getSensors(pageIndex) {
// // const pageParams: PageParams = {
// // pageNo: pageIndex + '',
// // countPerPage: this.pageSize,
// // sortCol: 'id',
// // sortDirection: 'descending'
// // };
// // this.sensorListStore.dispatch(
// // new SensorListStore.ReadAllByInfra(
// // { id: this.infraId, pageParams: pageParams }
// // )
// // );
// }
//
// onAddSensor() {
// // this.sensorSettingDisplay = true;
// }
//
// onSensorSettingClose() {
// // this.sensorSettingDisplay = false;
// }
//
// onPaging(e) {
// // this.getSensors(e.page);
// }
//
// onRowSelect(event) {
// // this.router.navigate(['sensor', event.data.id, 'info']);
// }
//
// onTraceroute() {
// // alert('지원 예정');
// }
//
//
// onDisplayNameChange(value: string) {
// // if (value === this.infra.target.displayName) {
// // return;
// // }
// // const target = this.infra.target;
// // target.displayName = value;
// // this.targetModifyStore.dispatch(
// // new TargetModifyStore.Modify(target)
// // );
//
// // const modifySuccessSubscription$: Subscription = this.target$.subscribe(
// // (t: Target) => {
// // if (t) {
// // }
// // if (modifySuccessSubscription$) {
// // modifySuccessSubscription$.unsubscribe();
// // }
// // },
// // (error: RPCClientError) => {
// // console.log(error);
// // }
// // );
// }
//
// onDisplayNameChangeKeypress(event, value) {
// // if (event.key === 'Enter') {
// // this.onDisplayNameChange(value);
// // }
// }
//
// }