38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { Component, OnInit, Input, AfterViewInit, Output, EventEmitter } from '@angular/core';
|
|
import { Observable } from 'rxjs';
|
|
import { ProbeHost, Probe } from '@overflow/commons-typescript/model/probe';
|
|
import { Store, select } from '@ngrx/store';
|
|
import * as ProbeStore from '../store/entity/probe';
|
|
import { ProbeSelector } from '../store';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'of-probe-detail-container',
|
|
templateUrl: './probe-detail-container.html',
|
|
})
|
|
export class ProbeDetailContainerComponent implements OnInit {
|
|
|
|
@Input() probeHostID;
|
|
@Output() discovery = new EventEmitter<number>();
|
|
probeHosts$: Observable<ProbeHost[]>;
|
|
|
|
constructor(
|
|
private store: Store<ProbeStore.State>,
|
|
private route: ActivatedRoute,
|
|
) {
|
|
this.probeHosts$ = store.pipe(select(ProbeSelector.select('probeHosts')));
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.store.dispatch(new ProbeStore.Read(this.probeHostID));
|
|
}
|
|
|
|
onModify(probeHost: ProbeHost) {
|
|
this.store.dispatch(new ProbeStore.Modify(probeHost.probe));
|
|
}
|
|
|
|
onDiscovery(probeHostID: number) {
|
|
this.discovery.emit(probeHostID);
|
|
}
|
|
}
|