TV view button. Updated stats bar. Removed tx/second graph. CSS fixes.

This commit is contained in:
Simon Lindh
2019-08-15 14:50:05 +03:00
parent 4f6a9f035d
commit dabbe402ac
10 changed files with 36 additions and 50 deletions

View File

@@ -14,6 +14,10 @@
bottom: 150px;
}
.chart-holder {
height: calc(100% - 220px);
}
#divider {
width: 3px;
height: 175px;
@@ -30,6 +34,12 @@
top: -28px;
}
.chart-holder {
height: calc(100% - 220px);
}
@media (min-width: 1920px) {
.position-container {
transform: scale(1.3);
bottom: 190px;
}
.chart-holder {
height: calc(100% - 280px);
}
}

View File

@@ -1,4 +1,4 @@
import { Component, OnInit, LOCALE_ID, Inject } from '@angular/core';
import { Component, OnInit, LOCALE_ID, Inject, Renderer2 } from '@angular/core';
import { ApiService } from '../services/api.service';
import { formatDate } from '@angular/common';
import { BytesPipe } from '../shared/pipes/bytes-pipe/bytes.pipe';
@@ -24,11 +24,14 @@ export class TelevisionComponent implements OnInit {
@Inject(LOCALE_ID) private locale: string,
private bytesPipe: BytesPipe,
private memPoolService: MemPoolService,
private renderer: Renderer2,
) { }
ngOnInit() {
this.apiService.webSocketWant(['projected-blocks', 'live-2h-chart']);
this.renderer.addClass(document.body, 'disable-scroll');
const labelInterpolationFnc = (value: any, index: any) => {
return index % 6 === 0 ? formatDate(value, 'HH:mm', this.locale) : null;
};