2018-05-24 10:50:43 +00:00
|
|
|
<!-- <div [style.height.px]="height">
|
2018-05-04 04:11:59 +00:00
|
|
|
<div dir="rtl">
|
2018-05-03 13:27:11 +00:00
|
|
|
<p-button (onClick)="onCancel()" icon="fa fa-fw fa-close"></p-button>
|
2018-05-04 04:11:59 +00:00
|
|
|
</div>
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-10 12:21:20 +00:00
|
|
|
<div>
|
2018-05-14 06:53:16 +00:00
|
|
|
<of-probe-selector [hidden]="requestStart" #probeSelectorComponent [preProbe]="probe" (probeSelected)="onProbeSelect($event)"></of-probe-selector>
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-04 04:11:59 +00:00
|
|
|
<p-blockUI [target]="df" [blocked]="!selectedProbe && !probe"></p-blockUI>
|
|
|
|
<p-panel #df [showHeader]="false">
|
2018-05-14 06:53:16 +00:00
|
|
|
<div [@discoveryFilter]="!requestStart ? 'full' : 'summary'">
|
|
|
|
<div [hidden]="requestStart">
|
2018-05-10 12:21:20 +00:00
|
|
|
<of-discovery-filter #filterComponent [probe]="selectedProbe" [requestStart]="requestStart" (discoveryRequested)="onDiscoveryStart($event)"></of-discovery-filter>
|
|
|
|
</div>
|
2018-05-14 06:53:16 +00:00
|
|
|
<div [hidden]="!requestStart">
|
2018-05-10 12:21:20 +00:00
|
|
|
<of-discovery-filter-summary [data]="filterData" (click)="onSummaryClick($event)"></of-discovery-filter-summary>
|
2018-05-14 06:53:16 +00:00
|
|
|
</div>
|
2018-05-10 12:21:20 +00:00
|
|
|
</div>
|
2018-05-04 04:11:59 +00:00
|
|
|
</p-panel>
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-14 06:53:16 +00:00
|
|
|
<div dir="rtl" *ngIf="!requestStart">
|
2018-05-04 04:11:59 +00:00
|
|
|
<button [disabled]="!selectedProbe && !probe" pButton type="button" label="Start" icon="fa-check" class="ui-button-width-fit"
|
|
|
|
(click)="requestStart = true"></button>
|
|
|
|
<button pButton type="button" label="Cancel" icon="fa-close" class="ui-button-secondary ui-button-width-fit" (click)="onCancel()"></button>
|
|
|
|
</div>
|
2018-05-03 11:45:49 +00:00
|
|
|
</div>
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-14 06:53:16 +00:00
|
|
|
<div *ngIf="requestStart" [@result]="!requestStart ? 'hidden' : 'show'">
|
|
|
|
<of-discovery-result (close)="onCancel()" [started]="started"></of-discovery-result>
|
2018-05-04 04:11:59 +00:00
|
|
|
<div dir="rtl">
|
2018-05-10 12:21:20 +00:00
|
|
|
<button [disabled]="!selectedProbe && !probe" pButton type="button" label="Save" icon="fa-check" class="ui-button-width-fit"
|
2018-05-04 04:11:59 +00:00
|
|
|
(click)="onSave()"></button>
|
2018-05-10 12:21:20 +00:00
|
|
|
<button pButton type="button" label="Stop" icon="fa-close" class="ui-button-secondary ui-button-width-fit" (click)="onStop()"></button>
|
2018-05-04 04:11:59 +00:00
|
|
|
</div>
|
2018-05-10 12:21:20 +00:00
|
|
|
</div>
|
2018-05-24 10:50:43 +00:00
|
|
|
</div> -->
|