app/src/commons/component/node-detail.component.html

22 lines
538 B
HTML
Raw Normal View History

2018-09-09 19:20:21 +09:00
<div>
<img src="{{node.image}}" width="100" height="100" />
</div>
<ng-container [ngSwitch]="node.group">
<ng-container *ngSwitchCase="'zone'">
<app-zone-detail [zone]=""></app-zone-detail>
</ng-container>
<ng-container *ngSwitchCase="'host'">
<app-host-detail [host]="node.host"></app-host-detail>
</ng-container>
<ng-container *ngSwitchCase="'service'">
<app-service-detail [service]="node.service"></app-service-detail>
</ng-container>
<ng-container *ngSwitchDefault>
</ng-container>
</ng-container>