Add power display widget

This commit is contained in:
2019-10-15 18:10:55 -04:00
parent fe1a66a655
commit 2ee6cb2b4a
9 changed files with 132 additions and 8 deletions

View File

@@ -40,5 +40,15 @@
</div>
</div>
</gridster-item>
<gridster-item [item]="dashboardLayout.layout[3]">
<div class="dashboard-item">
<div class="dashboard-item-header">
Power
</div>
<div class="dashboard-item-content">
<app-power></app-power>
</div>
</div>
</gridster-item>
</gridster>
</div>

View File

@@ -13,11 +13,12 @@ export class DashboardComponent implements OnInit {
public locked = true;
private defaultLayout: DashboardLayout = {
version: 3,
version: 1,
layout: [
{ cols: 3, rows: 2, y: 0, x: 0 },
{ cols: 2, rows: 2, y: 0, x: 3 },
{ cols: 3, rows: 2, y: 0, x: 5 }
{ cols: 5, rows: 4, y: 0, x: 0 },
{ cols: 3, rows: 2, y: 0, x: 5 },
{ cols: 5, rows: 4, y: 0, x: 8 },
{ cols: 3, rows: 2, y: 2, x: 5 }
]
};
@@ -34,9 +35,11 @@ export class DashboardComponent implements OnInit {
enabled: !this.locked
},
gridType: 'fixed',
fixedColWidth: 105,
fixedRowHeight: 105,
displayGrid: 'none'
fixedColWidth: 55,
fixedRowHeight: 55,
displayGrid: 'none',
minCols: 50,
minRows: 50
};
this.loadOptions();

View File

@@ -0,0 +1,25 @@
<div class="power-current">
<div *ngIf="latestStatus === null">
Loading...
</div>
<div *ngIf="latestStatus !== null">
<table>
<tr>
<td class="power-current-header">
Generation
</td>
<td>
{{ latestStatus.Generation < 0 ? 0 : latestStatus.Generation }}
</td>
</tr>
<tr>
<td class="power-current-header">
Consumption
</td>
<td>
{{ latestStatus.Consumption < 0 ? 0 : latestStatus.Consumption }}
</td>
</tr>
</table>
</div>
</div>

View File

@@ -0,0 +1,10 @@
.power-current {
font-size: 14px;
padding: 10px;
}
.power-current-header {
font-weight: 500;
text-align: right;
padding-right: 10px;
}

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PowerComponent } from './power.component';
describe('PowerComponent', () => {
let component: PowerComponent;
let fixture: ComponentFixture<PowerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [PowerComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PowerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,17 @@
import { Component, OnInit } from '@angular/core';
import { PowerService } from '../../services/power/power.service';
import { PowerStatus } from '../../models/power/power-status';
@Component({
selector: 'app-power',
templateUrl: './power.component.html',
styleUrls: ['./power.component.scss']
})
export class PowerComponent implements OnInit {
public latestStatus: PowerStatus;
constructor(private powerService: PowerService) { }
ngOnInit() {
this.powerService.getLatestStatus().subscribe(s => this.latestStatus = s);
}
}