1 |
b5525aef
|
hlavja
|
<app-nav-bar (emitNewUnit)="addUnit($event)"></app-nav-bar>
|
2 |
675bbb8c
|
hlavja
|
|
3 |
4b69e185
|
hlavja
|
<div class="container dashboard">
|
4 |
b5525aef
|
hlavja
|
<p-accordion>
|
5 |
|
|
<p-accordionTab *ngFor="let unit of units">
|
6 |
|
|
<p-header [className]="'dashboard-unit-wrapper'">
|
7 |
|
|
<div [className]="'row dashboard-unit'">
|
8 |
|
|
<div class="col-md-8"><h3>{{ unit.unit.description}}</h3></div>
|
9 |
|
|
<div class="col-md-4 text-right">
|
10 |
|
|
<p-button label="Sensors graph" icon="pi pi-chart-line" [routerLink]="['/dashboard/unit', unit.unit.unitId]"></p-button>
|
11 |
|
|
<p-splitButton *ngIf="loggedUser?.userInfo?.rightsId == 0 || loggedUser?.userInfo?.rightsId == 1" label="Add sensor" (onClick)="insertSensorPopup($event, unit.unit)"
|
12 |
|
|
icon="pi pi-plus-circle" (onDropdownClick)="showItems($event, unit.unit)" [model]="items" styleClass="p-button-success"></p-splitButton>
|
13 |
|
|
</div>
|
14 |
bb7795cd
|
hlavja
|
</div>
|
15 |
b5525aef
|
hlavja
|
</p-header>
|
16 |
|
|
<div>
|
17 |
|
|
<ng-container *ngFor="let sensor of unit.sensors">
|
18 |
|
|
<app-sensors *ngIf="sensor" [sensor]="sensor" [unitId]="unit.unit.unitId" [phenomenons]="phenomenons" [loggedUser]="loggedUser" (emitSensorDeletion)="deleteSensor(unit.unit.unitId, $event)"></app-sensors>
|
19 |
|
|
</ng-container>
|
20 |
bb7795cd
|
hlavja
|
</div>
|
21 |
b5525aef
|
hlavja
|
</p-accordionTab>
|
22 |
|
|
</p-accordion>
|
23 |
675bbb8c
|
hlavja
|
</div>
|
24 |
|
|
|
25 |
b5525aef
|
hlavja
|
<app-unit-popup *ngIf="showEditUnitPopup" [(isVisible)]="showEditUnitPopup" [unit]="editedUnit"></app-unit-popup>
|
26 |
|
|
<app-sensor-insert-popup *ngIf="showInsertSensorPopup" [unit]="editedUnit" [(isVisible)]="showInsertSensorPopup" [phenomenons]="phenomenons" [sensorTypes]="sensorTypes" (emitNewSensor)="addSensors($event)"></app-sensor-insert-popup>
|
27 |
|
|
<app-position-insert-popup *ngIf="showInsertPositionPopup" [unitId]="editedUnit.unitId" [(isVisible)]="showInsertPositionPopup"></app-position-insert-popup>
|
28 |
ea0e5344
|
hlavja
|
|
29 |
|
|
|
30 |
|
|
<p-confirmDialog [style]="{width: '50vw'}" key="positionDialog" [position]="position" [baseZIndex]="10000" rejectButtonStyleClass="p-button-outlined"></p-confirmDialog>
|