98 lines
2.7 KiB
TypeScript
98 lines
2.7 KiB
TypeScript
import { Component, OnInit, AfterContentInit, OnDestroy } from '@angular/core';
|
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
import { Infra } from '@overflow/commons-typescript/model/infra';
|
|
import { Probe } from '@overflow/commons-typescript/model/probe';
|
|
import { Target } from '@overflow/commons-typescript/model/target';
|
|
|
|
import { Observable, of, Subscription } from 'rxjs';
|
|
import { Store, select } from '@ngrx/store';
|
|
|
|
@Component({
|
|
selector: 'of-target-list',
|
|
templateUrl: './list.component.html',
|
|
})
|
|
export class ListComponent implements OnInit, AfterContentInit, OnDestroy {
|
|
|
|
// infrasSubscription$: Subscription;
|
|
// infras$: Observable<Infra[]>;
|
|
// infras: Infra[];
|
|
// probe: Probe;
|
|
// target: Target = null;
|
|
// sensorSettingDisplay = false;
|
|
|
|
pageSize = '10';
|
|
totalLength = 0;
|
|
currPage = 0;
|
|
|
|
constructor(
|
|
// private route: ActivatedRoute,
|
|
// private router: Router,
|
|
// private store: Store<any>,
|
|
) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
// this.infrasSubscription$ = this.infras$.subscribe(
|
|
// (page: Page) => {
|
|
// if (!page) {
|
|
// return;
|
|
// }
|
|
// this.totalLength = page.totalElements;
|
|
// this.infras = page.content;
|
|
// },
|
|
// (error: RPCClientError) => {
|
|
// console.log(error);
|
|
// }
|
|
// );
|
|
console.log('ddddddddddddddddddddd');
|
|
}
|
|
|
|
ngAfterContentInit() {
|
|
// this.route.params.subscribe((params: any) => {
|
|
// this.probe = {
|
|
// id: params['id'],
|
|
// };
|
|
// this.getInfras(0);
|
|
// });
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
// if (this.infrasSubscription$) {
|
|
// this.infrasSubscription$.unsubscribe();
|
|
// }
|
|
}
|
|
|
|
getInfras(pageNo) {
|
|
// const pageParams: PageParams = {
|
|
// pageNo: pageNo + '',
|
|
// countPerPage: this.pageSize,
|
|
// sortCol: 'id',
|
|
// sortDirection: 'descending'
|
|
// };
|
|
// this.infraListStore.dispatch(
|
|
// new InfraListStore.ReadAllByProbe(
|
|
// { probe: this.probe, pageParams: pageParams }
|
|
// )
|
|
// );
|
|
}
|
|
|
|
onRowSelect(event) {
|
|
// this.router.navigate(['target'], { queryParams: { target: event.data.id } });
|
|
// this.router.navigate(['target', event.data.id, 'info']);
|
|
}
|
|
|
|
onAddSensor(target: Target) {
|
|
// this.target = target;
|
|
// this.sensorSettingDisplay = true;
|
|
}
|
|
|
|
onSensorSettingClose() {
|
|
// this.sensorSettingDisplay = false;
|
|
}
|
|
|
|
onPaging(e) {
|
|
// this.getInfras(e.page);
|
|
}
|
|
|
|
}
|