2018-04-25 11:23:30 +00:00
|
|
|
import { Component, OnInit, AfterContentInit, Input, OnChanges } from '@angular/core';
|
2018-05-02 07:23:35 +00:00
|
|
|
import { InfraHost } from '@overflow/commons-typescript/model/infra';
|
2018-04-25 11:23:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'of-host-summary',
|
|
|
|
templateUrl: './host-summary.component.html',
|
|
|
|
})
|
|
|
|
export class HostSummaryComponent implements OnInit, AfterContentInit, OnChanges {
|
|
|
|
|
|
|
|
@Input() host: InfraHost;
|
|
|
|
@Input() visible: boolean;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
) { }
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ngAfterContentInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnChanges() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|