2018-04-12 09:06:29 +00:00
|
|
|
<div class="ui-g">
|
|
|
|
<h1>Map</h1>
|
|
|
|
<div class="ui-g-12 ui-g-nopad">
|
|
|
|
<div class="ui-g">
|
2018-04-18 14:14:41 +00:00
|
|
|
<div class="ui-g-12 ui-md-5 ui-g-nopad ui-bottom-space-10">
|
2018-06-07 06:07:45 +00:00
|
|
|
<button pButton type="button" class="ui-button-large ui-button-width-fit" icon="ui-icon-play-arrow" label="Discovery" (click)="onDiscovery()"></button>
|
2018-04-12 09:06:29 +00:00
|
|
|
</div>
|
2018-04-18 14:14:41 +00:00
|
|
|
<div class="ui-g-12 ui-md-7 ui-g-nopad">
|
2018-04-19 05:52:55 +00:00
|
|
|
<div style="float: right;">
|
|
|
|
<button pButton type="button" class="ui-button-secondary ui-button-width-fit" label="Expand all" style="margin-top: 16px;"
|
|
|
|
(click)="expandAll()"></button>
|
|
|
|
<button pButton type="button" class="ui-button-secondary ui-button-width-fit" label="Collapse all" style="margin-top: 16px;"
|
|
|
|
(click)="collapseAll()"></button>
|
|
|
|
</div>
|
|
|
|
<div style="float: right; margin: 30px 15px 0 0;">
|
|
|
|
<i class="fa ui-icon-stop ui-status-icon ui-status-success"></i>Up
|
2018-04-20 07:24:19 +00:00
|
|
|
<i class="fa ui-icon-stop ui-status-icon ui-status-fatal"></i>Down
|
2018-04-19 05:52:55 +00:00
|
|
|
<i class="fa ui-icon-stop ui-status-icon ui-status-warn"></i>Warn
|
|
|
|
<i class="fa ui-icon-stop ui-status-icon ui-status-error"></i>Error
|
|
|
|
</div>
|
2018-04-12 09:06:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-19 05:52:55 +00:00
|
|
|
|
2018-06-07 06:07:45 +00:00
|
|
|
<p-tabView (onChange)="onProbeChange($event)" [activeIndex]="probeTabIdx" class="ui-tab-bgcolor">
|
|
|
|
<p-tabPanel [header]="item.label" *ngFor="let item of tabs; let i = index" [selected]="i == 0" cache="true">
|
|
|
|
<ng-template pTemplate="content">
|
2018-04-26 12:33:37 +00:00
|
|
|
<div>
|
2018-06-07 06:07:45 +00:00
|
|
|
<of-infra-tree></of-infra-tree>
|
2018-04-06 11:02:18 +00:00
|
|
|
</div>
|
2018-06-07 06:07:45 +00:00
|
|
|
</ng-template>
|
|
|
|
</p-tabPanel>
|
|
|
|
</p-tabView>
|
2018-04-06 11:02:18 +00:00
|
|
|
</div>
|