21 lines
536 B
TypeScript
21 lines
536 B
TypeScript
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
|
|
import { Probe, ProbeHost } from '@overflow/commons-typescript/model/probe';
|
|
|
|
@Component({
|
|
selector: 'of-probe-summary',
|
|
templateUrl: './summary.component.html',
|
|
})
|
|
export class ProbeSummaryComponent implements OnChanges {
|
|
|
|
@Input() probeHost: ProbeHost;
|
|
connectionStatus: string;
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnChanges(changes: SimpleChanges): void {
|
|
this.connectionStatus = this.probeHost.probe.connectDate ? 'Connected' : 'Not connected';
|
|
}
|
|
}
|
|
|