1 |
675bbb8c
|
hlavja
|
<app-nav-bar></app-nav-bar>
|
2 |
|
|
|
3 |
4b69e185
|
hlavja
|
<div class="container dashboard">
|
4 |
278f83f2
|
Lukáš Moučka
|
<!-- <div class="row">-->
|
5 |
|
|
<!-- <div class="col-md-6"></div>-->
|
6 |
|
|
<!-- <div class="col-md-6 text-right">-->
|
7 |
|
|
<!-- <p-button label="Add unit" icon="pi pi-cog" (onClick)="insertUnitPopup()"></p-button>-->
|
8 |
|
|
<!-- </div>-->
|
9 |
|
|
<!-- </div>-->
|
10 |
bb7795cd
|
hlavja
|
<p-accordion>
|
11 |
|
|
<p-accordionTab *ngFor="let unit of units">
|
12 |
9d2007f1
|
lmoucka@students.zcu.cz
|
<p-header [className]="'dashboard-unit-wrapper'">
|
13 |
|
|
<div [className]="'row dashboard-unit'">
|
14 |
278f83f2
|
Lukáš Moučka
|
<div class="col-md-8"><h3>{{ unit.unit.description}}</h3></div>
|
15 |
|
|
<div class="col-md-4 text-right">
|
16 |
41dca01f
|
hlavja
|
<p-button label="Sensors graph" icon="pi pi-chart-line" [routerLink]="['/dashboard/unit', unit.unit.unitId]"></p-button>
|
17 |
f39f16d4
|
hlavja
|
<p-splitButton *ngIf="loggedUser?.userInfo?.rightsId == 0 || loggedUser?.userInfo?.rightsId == 1" label="Add sensor" (onClick)="insertSensorPopup($event, unit.unit)" icon="pi pi-plus-circle" (onDropdownClick)="showItems($event, unit.unit)" [model]="items" styleClass="p-button-success"></p-splitButton>
|
18 |
bb7795cd
|
hlavja
|
</div>
|
19 |
|
|
</div>
|
20 |
|
|
</p-header>
|
21 |
|
|
<div>
|
22 |
278f83f2
|
Lukáš Moučka
|
<app-sensors *ngFor="let sensor of unit.sensors" [sensor]="sensor" [unitId]="unit.unit.unitId" [phenomenons]="phenomenons" [loggedUser]="loggedUser"></app-sensors>
|
23 |
bb7795cd
|
hlavja
|
</div>
|
24 |
|
|
</p-accordionTab>
|
25 |
|
|
</p-accordion>
|
26 |
675bbb8c
|
hlavja
|
</div>
|
27 |
|
|
|
28 |
a3ae1cab
|
hlavja
|
<app-unit-popup *ngIf="editedUnit" [(isVisible)]="showEditUnitPopup" [unit]="editedUnit"></app-unit-popup>
|
29 |
533869de
|
hlavja
|
<app-sensor-insert-popup *ngIf="editedUnit" [unit]="editedUnit" [(isVisible)]="showInsertSensorPopup" [phenomenons]="phenomenons"></app-sensor-insert-popup>
|
30 |
ea0e5344
|
hlavja
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
<p-confirmDialog [style]="{width: '50vw'}" key="positionDialog" [position]="position" [baseZIndex]="10000" rejectButtonStyleClass="p-button-outlined"></p-confirmDialog>
|