mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-24 21:09:40 +00:00
69 lines
3.4 KiB
HTML
69 lines
3.4 KiB
HTML
<div class="summaryWrapper" *ngIf="projectsStatistics">
|
|
<div class="summaryHeader">
|
|
<button class="titleButton" [ngClass]="{ marked: isTopologyVisible }" (click)="toogleTopologyVisibility(true)" mat-button>Map topology</button>
|
|
<button class="titleButton" [ngClass]="{ marked: !isTopologyVisible }" (click)=toogleTopologyVisibility(false) mat-button>Servers</button>
|
|
<mat-icon (click)="close()" class="closeButton">close</mat-icon>
|
|
</div>
|
|
<div [ngClass]="{ notvisible: !isTopologyVisible }">
|
|
<mat-divider class="divider"></mat-divider>
|
|
<div class="summaryFilters">
|
|
Filter by status <br/>
|
|
<div class="filterBox">
|
|
<mat-checkbox (change)="applyStatusFilter($event.checked, 'started')">started</mat-checkbox>
|
|
<mat-checkbox (change)="applyStatusFilter($event.checked, 'suspended')">suspended</mat-checkbox>
|
|
<mat-checkbox (change)="applyStatusFilter($event.checked, 'stopped')">stopped</mat-checkbox>
|
|
</div>
|
|
Show devices with <br/>
|
|
<div class="filterBox">
|
|
<mat-checkbox (change)="applyCaptureFilter($event.checked, 'capture')">active capture(s)</mat-checkbox>
|
|
<mat-checkbox (change)="applyCaptureFilter($event.checked, 'packet')">active packet filters</mat-checkbox>
|
|
</div>
|
|
</div>
|
|
<div class="summarySorting">
|
|
Sorting <br/>
|
|
<div class="radio-group-wrapper">
|
|
<mat-radio-group class="radio-group" aria-label="Sorting">
|
|
<mat-radio-button value="1" (click)="setSortingOrder('asc')" checked>By name ascending</mat-radio-button>
|
|
<mat-radio-button value="2" (click)="setSortingOrder('desc')">By name descending</mat-radio-button>
|
|
</mat-radio-group>
|
|
</div>
|
|
</div>
|
|
<mat-divider class="divider"></mat-divider>
|
|
<div class="summaryContent">
|
|
<div class="nodeRow" *ngFor="let node of filteredNodes">
|
|
<div>
|
|
<svg *ngIf="node.status==='started'" width="10" height="10">
|
|
<rect class="status_started" x="0" y="0" width="10" height="10" fill="green"></rect>
|
|
</svg>
|
|
<svg *ngIf="node.status==='stopped'" width="10" height="10">
|
|
<rect class="status_stopped" x="0" y="0" width="10" height="10" fill="red"></rect>
|
|
</svg>
|
|
{{node.name}}
|
|
</div>
|
|
<div *ngIf="node.console!=null && node.console!=undefined && node.console_type!='none'">
|
|
{{node.console_type}} {{node.console_host}}:{{node.console}}
|
|
</div>
|
|
<div *ngIf="node.console===null || node.console===undefined || node.console_type==='none'">
|
|
none
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div [ngClass]="{ notvisible: isTopologyVisible }">
|
|
<mat-divider class="divider"></mat-divider>
|
|
<div class="summaryContentServers">
|
|
<div class="nodeRow" *ngFor="let compute of computes">
|
|
<div>
|
|
{{compute.name}}
|
|
</div>
|
|
<div>
|
|
{{compute.host}}
|
|
</div>
|
|
<div>
|
|
{{server.location}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|