member_webapp/@overflow/discovery/component/discovery.component.ts
2018-05-31 20:53:11 +09:00

89 lines
2.4 KiB
TypeScript

import {
Component, Input, Output, EventEmitter,
} from '@angular/core';
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
import { Anim } from './animation';
import { Store, select } from '@ngrx/store';
import { Observable, of, Subscription } from 'rxjs';
import { DiscoveryService } from '../service/discovery.service';
import { DiscoveryNotify } from '../core/discovery-subject';
import { catchError, exhaustMap, map, tap } from 'rxjs/operators';
import { DiscoverZone, Zone, Host, Port, Service } from '@overflow/commons-typescript/model/discovery';
@Component({
selector: 'of-discovery',
templateUrl: './discovery.component.html',
animations: Anim
})
export class DiscoveryComponent {
@Input() probeHostID;
pending$: Observable<boolean>;
error$: Observable<any>;
discoverySubscription: Subscription;
selectedProbe: ProbeHost;
requested: boolean;
constructor(
private discoveryService: DiscoveryService,
private store: Store<any>
) {
}
onRequestDiscovery(dz: DiscoverZone) {
this.requested = true;
this.requested = true;
this.discoverySubscription = this.discoveryService.discoverZone(this.selectedProbe.probe.probeKey, dz).pipe(
map((discoveryNotify: DiscoveryNotify) => {
switch (discoveryNotify.method) {
case 'DiscoveryService.discoveryStart': {
const startDate = discoveryNotify.params as Date;
break;
}
case 'DiscoveryService.discoveryStop': {
const stopDate = discoveryNotify.params as Date;
this.discoverySubscription.unsubscribe();
break;
}
case 'DiscoveryService.discoveredZone': {
const zone = discoveryNotify.params as Zone;
break;
}
case 'DiscoveryService.discoveredHost': {
const host = discoveryNotify.params as Host;
break;
}
case 'DiscoveryService.discoveredPort': {
const port = discoveryNotify.params as Port;
break;
}
case 'DiscoveryService.discoveredService': {
const service = discoveryNotify.params as Service;
break;
}
default: {
break;
}
}
}),
catchError(error => {
return of();
}),
).subscribe();
}
onRequestDiscoveryStop() {
this.requested = false;
}
}