2018-09-11 02:53:50 +09:00
|
|
|
<div class="ui-g">
|
|
|
|
<div class="detail-img">
|
2018-09-11 12:59:02 +09:00
|
|
|
<svg width="200" height="200" viewBox="20 40 140 100">
|
|
|
|
<image x="-40" y="-20" width="260" height="260" preserveAspectRatio="xMidYMid slice" xlink:href="../../assets/image/logo/logo_tomcat.svg" />
|
|
|
|
</svg>
|
2018-09-11 02:53:50 +09:00
|
|
|
</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>
|