58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit } from '@angular/core';
|
||
|
import { Subscription } from 'rxjs';
|
||
|
import { StateService } from '../../services/state.service';
|
||
|
import { BlockExtended } from '../../interfaces/node-api.interface';
|
||
|
import { WebsocketService } from '../../services/websocket.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-clock-a',
|
||
|
templateUrl: './clock-a.component.html',
|
||
|
styleUrls: ['./clock.component.scss'],
|
||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
})
|
||
|
export class ClockAComponent implements OnInit {
|
||
|
blocksSubscription: Subscription;
|
||
|
block: BlockExtended;
|
||
|
blockStyle;
|
||
|
|
||
|
gradientColors = {
|
||
|
'': ['#9339f4', '#105fb0'],
|
||
|
bisq: ['#9339f4', '#105fb0'],
|
||
|
liquid: ['#116761', '#183550'],
|
||
|
'liquidtestnet': ['#494a4a', '#272e46'],
|
||
|
testnet: ['#1d486f', '#183550'],
|
||
|
signet: ['#6f1d5d', '#471850'],
|
||
|
};
|
||
|
|
||
|
constructor(
|
||
|
public stateService: StateService,
|
||
|
private websocketService: WebsocketService,
|
||
|
private cd: ChangeDetectorRef,
|
||
|
) {}
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.websocketService.want(['blocks']);
|
||
|
this.blocksSubscription = this.stateService.blocks$
|
||
|
.subscribe(([block]) => {
|
||
|
if (block) {
|
||
|
this.block = block;
|
||
|
this.blockStyle = this.getStyleForBlock(this.block);
|
||
|
this.cd.markForCheck();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
getStyleForBlock(block: BlockExtended) {
|
||
|
const greenBackgroundHeight = 100 - (block.weight / this.stateService.env.BLOCK_WEIGHT_UNITS) * 100;
|
||
|
|
||
|
return {
|
||
|
background: `repeating-linear-gradient(
|
||
|
#2d3348,
|
||
|
#2d3348 ${greenBackgroundHeight}%,
|
||
|
${this.gradientColors[''][0]} ${Math.max(greenBackgroundHeight, 0)}%,
|
||
|
${this.gradientColors[''][1]} 100%
|
||
|
)`,
|
||
|
};
|
||
|
}
|
||
|
}
|