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

26 lines
709 B
HTML
Raw Normal View History

2018-09-10 17:53:50 +00:00
<div class="ui-g">
<div class="detail-img">
<img src="../../assets/image/icon/icon_db_maria.svg" width="100" height="100" />
</div>
<div class="detail-content">
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
<ng-container [ngSwitch]="node.group">
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
<ng-container *ngSwitchCase="'zone'">
<app-zone-detail [zone]=""></app-zone-detail>
</ng-container>
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
<ng-container *ngSwitchCase="'host'">
<app-host-detail [host]="node.target"></app-host-detail>
</ng-container>
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
<ng-container *ngSwitchCase="'service'">
<app-service-detail [service]="node.target"></app-service-detail>
</ng-container>
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
<ng-container *ngSwitchDefault>
</ng-container>
2018-09-09 10:20:21 +00:00
2018-09-10 17:53:50 +00:00
</ng-container>
</div>
</div>