2018-09-11 02:53:50 +09: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 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
<ng-container [ngSwitch]="node.group">
|
2018-09-09 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
<ng-container *ngSwitchCase="'zone'">
|
|
|
|
<app-zone-detail [zone]=""></app-zone-detail>
|
|
|
|
</ng-container>
|
2018-09-09 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
<ng-container *ngSwitchCase="'host'">
|
|
|
|
<app-host-detail [host]="node.target"></app-host-detail>
|
|
|
|
</ng-container>
|
2018-09-09 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
<ng-container *ngSwitchCase="'service'">
|
|
|
|
<app-service-detail [service]="node.target"></app-service-detail>
|
|
|
|
</ng-container>
|
2018-09-09 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
<ng-container *ngSwitchDefault>
|
|
|
|
</ng-container>
|
2018-09-09 19:20:21 +09:00
|
|
|
|
2018-09-11 02:53:50 +09:00
|
|
|
</ng-container>
|
|
|
|
</div>
|
|
|
|
</div>
|